I've been reading about SPARQL and RDF and please correct me if my reasoning about these technologies is wrong here.
Assuming that we have a local SPARQL database called LOCAL.. and url to remote RDF file called URL_RDF. Can I write a script lets say in PHP which will do a SPARQL query like this ?
Pseudo code.
SELECT * FROM LOCAL,URL_RDF WHERE LOCAL.id=URL_RDF.id
In other words can I combine sources within SPARQL query like this (remote file + local db) ?