Indicate the Name and age of all individuals over 20 SELECT ?y FROM WHERE (?x,,?z),(?x,,?y) AND ?z>20 USING dt for , rdf for If A is friend of B and B is a friend of A report them SELECT ?x,?y FROM WHERE (?x,,?y),(?y,,?x) AND ?x != ?y USING dt for , rdf for What direct Relationship Exists between Peter and Carl SELECT ?x FROM WHERE (, ?x ,) USING dt for , rdf for Show all the members of the team: SELECT ?z FROM WHERE (?y, , ), (?y, ?x, ?z), (?q, ?w, ?y) AND ?x != "http://www.w3.org/1999/02/22-rdf-syntax-ns#type" && ?q == "http://foo.org/team" USING dt for , rdf for