Dump all Provinces
prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix ndw:<http://demo.openlinksw.com/schemas/northwind#>
select ?name ?country
where
{
?sp rdf:type ndw:Province.
?sp ndw:provinceName ?name.
?sp ndw:is_province_of ?ipo .
?ipo ndw:name ?country
}
Sample Data (Live Query Results)
- Click *Here* for a live SPARQL Query (via SPARQL Protocol) against a collection of Northwind Provinces.