Dump of Orders with details for customers, company name, country, employee, etc.
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix ndw:<http://demo.openlinksw.com/schemas/northwind#>
select ?cnt_name ?cmp_name ?emp_lname ?o_date ?o_freight ?s_city ?s_code
where
{
?ord a ndw:Order.
?ord ndw:has_customer ?ctr .
?ctr ndw:country ?cnt_name .
?ctr ndw:companyName ?cmp_name .
?ord ndw:has_employee ?hem .
?hem ndw:lastName ?emp_lname .
?ord ndw:orderDate ?o_date .
?ord ndw:freight ?o_freight .
?ord ndw:shipCity ?s_city .
?ord ndw:shipPostal_code ?s_code .
}
limit 200
Sample Data (Live Query Results)
- Click *Here* for a live SPARQL Query (via SPARQL Protocol) against a collection of Northwind Orders.