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

com.bigdata.rdf.sparql.ast.eval.include_03.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 2nd).
   
   # RANGE SCAN x => {(x=Mike);(x=Bryan)}
   ?x rdf:type foaf:Person .
   
   # JOIN on (x) => {(x=Mike,y=2);(x=Bryan;y=4)} 
   INCLUDE %solutionSet1 .

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy