In some tutorial I'm reading, I see that you can specify the dataset separately from your query, like this:
Dataset field: http://dig.csail.mit.edu/2008/webdav/timbl/foaf.rdf
query:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE {
?person foaf:name ?name .
}
How do I specify the dataset from within the query?