Glad if someone can clarify.
I always read that SQL and SPARQL are very similar. However, a lot of times i have seen sparql query without the FROM keyword. You would assume that you have to query the datasource 'FROM' somewhere in the database like how SQL behaves.
Example
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?name
WHERE
{
?person foaf:name ?name .
}
How does it know where to look for? Like in SQL, look in Database1 - table1
Cheers