All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bigdata.rdf.sparql.ast.eval.include_03a.rq Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
prefix :  
prefix rdf:  
prefix rdfs:  
prefix foaf:  

SELECT ?x ?y WHERE { 

   # Turn off the join order optimizer.
   hint:Query hint:optimizer "None" .

   # Run joins in the given order (INCLUDE is 1st).
   
   # SCAN => {(x=Mike,y=2);(x=Bryan;y=4);(x=DC,y=1)} 
   INCLUDE %solutionSet1 .

   # JOIN on (x) => {(x=Mike,y=2);(x=Bryan,y=4)}
   ?x rdf:type foaf:Person .
   
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy