question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Give me all the alma mater of the relatives of Samuek Moreno Rojas ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Samuel_Moreno_Rojas onto:relation ?x . ?x prop:almaMater ?uri . } | lcquad |
Which magazine's editor's official residence is Playboy Mansion? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:residence <http://dbpedia.org/resource/Playboy_Mansion> . ?uri prop:editor ?x . ?uri rdf:type onto:Magazine} | lcquad |
To which destinations does Air 2000 fly? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Air_2000 prop:destinations ?uri } | lcquad |
What is the political party to which Purnima Banerjee is a member of? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Robert_Nutting onto:knownFor ?uri } | lcquad |
To which political party does the successor of Radhabinod Koijam belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Radhabinod_Koijam prop:successor ?x . ?x prop:party ?uri . } | lcquad |
What is the ethnicity of Linda Hogan ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Linda_Hogan prop:ethnicity ?uri } | lcquad |
Name the mammals which are primate and belongs to family of ape ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:order <http://dbpedia.org/resource/Primate> . ?uri onto:family <http://dbpedia.org/resource/Ape> . ?uri rdf:type onto:Mammal} | lcquad |
Who did the person whose predecessor is Arthur Slaght, play for? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:predecessor <http://dbpedia.org/resource/Arthur_Slaght> . ?x prop:playedFor ?uri . ?x rdf:type onto:Person} | lcquad |
To what did the parliament member swore her oath to, whose has sons is Lohan Ratwatte? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:child <http://dbpedia.org/resource/Lohan_Ratwatte> . ?x prop:allegiance ?uri . ?x rdf:type onto:MemberOfParliament} | lcquad |
What are the awards won by the producer of Elizabeth: The Golden Age? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth:_The_Golden_Age_(soundtrack)> prop:producer ?x . ?x prop:awards ?uri . } | lcquad |
In which military conflict were Phm Vn ng and John McEwen commanders ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:commander <http://dbpedia.org/resource/Phạm_Văn_Đồng> . ?uri onto:commander <http://dbpedia.org/resource/John_McEwen> . ?uri rdf:type onto:MilitaryConflict} | lcquad |
What is the hometown of the volleyball player whose club is VC Lokomotiv Novosibirsk ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:club <http://dbpedia.org/resource/VC_Lokomotiv_Novosibirsk> . ?x prop:hometown ?uri . ?x rdf:type onto:VolleyballPlayer} | lcquad |
Who owns the bridge which crosses the Orange Line of MBTA? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:crosses <http://dbpedia.org/resource/Orange_Line_(MBTA)> . ?x prop:owner ?uri . ?x rdf:type onto:Bridge} | lcquad |
Is joel quenneville the main coach of Chicago Blackhawks? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Chicago_Blackhawks prop:headCoach res:Joel_Quenneville } | lcquad |
Through which label did Mel Brooks produce his movie? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:producer <http://dbpedia.org/resource/Mel_Brooks> . ?x prop:label ?uri . ?x rdf:type onto:Film} | lcquad |
Count the number of judges who've come on CTV network shows. | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:network <http://dbpedia.org/resource/CTV_Television_Network> . ?x prop:judges ?uri . } | lcquad |
Name the musical artists whose label is given by Kobalt Label Services? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:label <http://dbpedia.org/resource/Kobalt_Label_Services> . ?uri rdf:type onto:MusicalArtist} | lcquad |
Enumerate all the first teams of the GPs which were held in Watkins Glen, NY? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Watkins_Glen,_New_York> . ?x prop:firstTeam ?uri . } | lcquad |
Which operator of ganz UV is also the nationality of the Gza Horvth ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ganz_UV onto:operator ?uri. res:Géza_Horváth onto:nationality ?uri} | lcquad |
Does the AMC Gremlin use an Audi engine? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:AMC_Gremlin prop:engine res:Audi } | lcquad |
What is the death place of the Abiye Abebe and is the birthplace of the Amsale Aberra? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Abiye_Abebe prop:placeOfDeath ?uri. res:Amsale_Aberra onto:birthPlace ?uri} | lcquad |
Which official residence of Nikos Pateras is also the stadium of anionios G.S.S. season 2014-15 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:2014–15_Panionios_G.S.S._season prop:stadium ?uri. res:Nikos_Pateras onto:residence ?uri} | lcquad |
Give me a count of movies whose producer is Larry J. Franco? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:producer <http://dbpedia.org/resource/Larry_J._Franco> . ?uri rdf:type onto:Film} | lcquad |
What is the common profession of William Luther Hill and Claiborne Pell? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Luther_Hill onto:profession ?uri. res:Claiborne_Pell onto:profession ?uri . } | lcquad |
Which city near Nihoa is the place of death of jim Brady ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nihoa> prop:nearestCity ?uri. <http://dbpedia.org/resource/Jim_Brady_(quarterback)> onto:deathPlace ?uri} | lcquad |
Journals of how many fields can be found in US? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:country <http://dbpedia.org/resource/United_States> . ?x prop:discipline ?uri . } | lcquad |
How many different genres of games can I find which are compatible with the Commodore 64? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:computingPlatform <http://dbpedia.org/resource/Commodore_64> . ?x prop:genre ?uri . } | lcquad |
In which wars has Steven Palazzo fought? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Steven_Palazzo prop:battles ?uri } | lcquad |
Which fields' academic journals are found in the US? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:country res:United_States . ?x prop:discipline ?uri . } | lcquad |
Mike Shinoda is in which band? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:bandMember res:Mike_Shinoda } | lcquad |
What are the television shows whose voices is given by Mona Marshall? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:voices <http://dbpedia.org/resource/Mona_Marshall> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Name the movie whose director of photography is Gregg Toland and Bernard Herrmann was the music composer? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:cinematography <http://dbpedia.org/resource/Gregg_Toland> . ?uri onto:musicComposer <http://dbpedia.org/resource/Bernard_Herrmann> . ?uri rdf:type onto:Film} | lcquad |
Name the members of boards of Freedom of the City and Trinity House? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:board res:Freedom_of_the_City . ?uri onto:board res:Trinity_House . } | lcquad |
Name the company with product lines like Visual studio and Surface ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri onto:product <http://dbpedia.org/resource/Microsoft_Surface> . ?u... | lcquad |
How many contries surround the seas on the banks of which is the city of Cancun? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:cities <http://dbpedia.org/resource/Cancún> . ?x onto:country ?uri . } | lcquad |
Name the other wine region of the grapes whose one of the wine region is Michigan? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Michigan> . ?x onto:wineRegion ?uri . ?x rdf:type onto:Grape} | lcquad |
Which administrative region leader is Sukhumbhand Paribatra and was founded by Rama I? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:leaderName <http://dbpedia.org/resource/Sukhumbhand_Paribatra> . ?uri onto:founder <http://dbpedia.org/resource/Rama_I> . ?uri rdf:type onto:AdministrativeRegion} | lcquad |
Name the largest city of the country where the body of Amit Saigal was discovered? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Amit_Saigal> onto:bodyDiscovered ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country} | lcquad |
Who founded the city where First Church of Christ, Scientist is located? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/First_Church_of_Christ,_Scientist_(Pittsburgh)> prop:locationTown ?x . ?x onto:founder ?uri . } | lcquad |
Los Angeles Lakers is the team of which basketball players? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:team <http://dbpedia.org/resource/Los_Angeles_Lakers> . ?uri rdf:type onto:BasketballPlayer} | lcquad |
What are the movies produced by Michael Deeley? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:producer <http://dbpedia.org/resource/Michael_Deeley> . ?uri rdf:type onto:Film} | lcquad |
Where is the headquarter of Regional Transit Authority of Southeast Michigan ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Regional_Transit_Authority_of_Southeast_Michigan prop:headquarters ?uri } | lcquad |
What are the awards won by the parent of Daniel Bergmans? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Daniel_Bergman onto:parent ?x . ?x prop:awards ?uri . } | lcquad |
What is the common debut team of the Butch Metzger and Dan Otero? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Butch_Metzger onto:debutTeam ?uri. res:Dan_Otero onto:debutTeam ?uri . } | lcquad |
What place is the birthplace of Vijay Chavan where Eka Lagnachi Teesri Goshta is located as well? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Eka_Lagnachi_Teesri_Goshta prop:location ?uri. res:Vijay_Chavan prop:placeOfBirth ?uri . } | lcquad |
Collect and return a list of things in the area where Spanish language is used? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:language res:Spanish_language . ?uri onto:location ?x . } | lcquad |
Where is Hafthor Julius Bjornsson from? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Hafthór_Júlíus_Björnsson onto:stateOfOrigin ?uri } | lcquad |
What writers have nationality as Statelessness? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:nationality <http://dbpedia.org/resource/Statelessness> . ?uri rdf:type onto:Writer} | lcquad |
Music for what was made by someone who died of a cardiovascular disease? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:deathCause res:Cardiovascular_disease . ?uri prop:music ?x . } | lcquad |
What famous musicians play the remo? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:instrument <http://dbpedia.org/resource/Remo> . ?uri rdf:type onto:MusicalArtist} | lcquad |
Name the music artist which collaborated with the spouse of Jessi Colter? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:spouse <http://dbpedia.org/resource/Jessi_Colter> . ?uri onto:associatedMusicalArtist ?x . ?uri rdf:type onto:MusicalArtist} | lcquad |
Among which city where Geography Club played also had the Kenticky Cycle ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Geography_Club_(play)> prop:place ?uri. <http://dbpedia.org/resource/The_Kentucky_Cycle> prop:place ?uri . } | lcquad |
Does Lousana lie at the end of Alberta Highway 42? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Alberta_Highway_42 onto:routeEnd res:Lousana . } | lcquad |
Count the number of sports played by the universities whose one of the sports is baketball ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:athletics <http://dbpedia.org/resource/Basketball> . ?x prop:athletics ?uri } | lcquad |
Amongst the winner of Lovelace medal, who has John Robert as doctoral supervisor ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:doctoralAdvisor res:John_Robert_Woodyard . ?uri prop:prizes res:Lovelace_Medal . } | lcquad |
What things have founded place as United States and New Mexico? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?uri prop:foundation res:United_States . ?uri prop:foundation res:New_Mexico . } | lcquad |
Which television shows has sound format as 5.1 surround? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:format <http://dbpedia.org/resource/5.1_surround_sound> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Who is the producer of the single which was the subsequent work of He's a Liar? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/He's_a_Liar> onto:subsequentWork ?x . ?x onto:producer ?uri . } | lcquad |
List the people who influenced the comedian who acted in Good Hair ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Good_Hair> prop:starring ?x . ?x onto:influencedBy ?uri . ?x rdf:type onto:Comedian} | lcquad |
To what other locations does the airlines have flights, who also fly to Birmingham? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:targetAirport <http://dbpedia.org/resource/Birmingham_Airport> . ?x prop:destinations ?uri . ?x rdf:type onto:Airline} | lcquad |
Name the television show whose creator is Simon Fuller and presented by Ryan Seacrest? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:creator <http://dbpedia.org/resource/Simon_Fuller> . ?uri onto:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri rdf:type on... | lcquad |
Does the Westchester Avenue fall under the Bronx? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Westchester_Avenue prop:counties res:The_Bronx } | lcquad |
In how many places has Garbage recorded their songs? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:producer <http://dbpedia.org/resource/Garbage_(band)> . ?x onto:recordedIn ?uri . } | lcquad |
How many cars can I find related to the cars which have a V8 engine? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:engine <http://dbpedia.org/resource/V8_engine> . ?x prop:related ?uri . } | lcquad |
What products do US companies make? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:location <http://dbpedia.org/resource/United_States> . ?x onto:product ?uri . ?x rdf:type onto:Company} | lcquad |
How many characters are there in The Office? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:series <http://dbpedia.org/resource/The_Office_(U.S._TV_series)> . ?uri rdf:type onto:FictionalCharacter} | lcquad |
Name the person with opponents Ike Clanton and Tom McLaury? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:opponent <http://dbpedia.org/resource/Ike_Clanton> . ?uri onto:opponent <http://dbpedia.org/resource/Tom_McLaury> . ?uri rdf:type onto:Person} | lcquad |
Who first ascented a mountain of Mount Hoffmann ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Mount_Hoffmann onto:firstAscentPerson ?uri } | lcquad |
Which science fiction show has Steven Moffat as executive producer ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:executiveProducer <http://dbpedia.org/resource/Steven_Moffat> . ?uri prop:genre <http://dbpedia.org/resource/Science_fiction> . ?uri rd... | lcquad |
Who all play for the teams performing in the united center? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:arena res:United_Center . ?uri prop:team ?x . } | lcquad |
How many parties have come in power in elections where Y. S. Rajasekhara Reddy won? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:leader <http://dbpedia.org/resource/Y._S._Rajasekhara_Reddy> . ?x onto:affiliation ?uri . } | lcquad |
Where did Wallace Dollase die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Wallace_Dollase onto:deathPlace ?uri . } | lcquad |
In which state is Red Willow Creek? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Red_Willow_Creek onto:state ?uri } | lcquad |
Who is the founder of the trade union with whom Amalgamated Clothing Workers of America is affiliated? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Amalgamated_Clothing_Workers_of_America onto:affiliation ?x . ?x prop:founded ?uri . } | lcquad |
Who operates the railway line which begins in Minneapolis? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:routeStart <http://dbpedia.org/resource/Minneapolis> . ?x onto:operatedBy ?uri . ?x rdf:type onto:RailwayLine} | lcquad |
What is the nation of the speedway league where Ikaros Smederna played? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ikaros_Smederna> onto:league ?x . ?x onto:country ?uri . ?x rdf:type onto:SpeedwayLeague} | lcquad |
How many non fiction topics does Thud! deals with? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Thud!> onto:nonFictionSubject ?uri . } | lcquad |
Which route start of Moscow-Kazan high-speed railway is the home stadium of 2011-12 FC Spartak Moscow ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Moscow-Kazan_high-speed_railway> onto:routeStart ?uri. <http://dbpedia.org/resource/2011–12_FC_Spartak_Moscow_season> onto:homeStadium ?uri} | lcquad |
Which party of Rishang Keishing is the leader at Manendragarh ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Manendragarh onto:leaderName ?uri. res:Rishang_Keishing prop:party ?uri} | lcquad |
How many people were in a youthclub which played in the Argentine Primera Division? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:league <http://dbpedia.org/resource/Argentine_Primera_División> . ?uri prop:youthclubs ?x . } | lcquad |
What is the home town of the musician of Jack your Body ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jack_Your_Body onto:musicalArtist ?x . ?x onto:hometown ?uri . } | lcquad |
In which branch of the government does James L. McConaughy belong? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:James_L._McConaughy onto:governor ?x . ?x prop:branch ?uri . } | lcquad |
in which country does the river end which originates in Lebrsnik? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:sourcePlace res:Lebršnik . ?x onto:mouthCountry ?uri . } | lcquad |
Where did Andy Wyant die and Robert Rodi was born in? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Robert_Rodi onto:birthPlace ?uri. res:Andy_Wyant prop:placeOfDeath ?uri} | lcquad |
Which person constituency is Duboce Triangle, San Francisco and military unit is USS Kittiwake (ASR-13)? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:constituency <http://dbpedia.org/resource/Duboce_Triangle,_San_Francisco> . ?uri onto:militaryUnit <http://dbpedia.org/resource/USS_Kitt... | lcquad |
What is the occupation of the band members of The Shirelles? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist res:The_Shirelles . ?x onto:occupation ?uri . } | lcquad |
Which American football player is a former team player of Indianapolis Colts and current team is Michigan Wolverines? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:formerTeam <http://dbpedia.org/resource/Indianapolis_Colts> . ?uri prop:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> .... | lcquad |
List the mountains of the range Sierra Nevada (U.S.) located in California? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:locatedInArea <http://dbpedia.org/resource/California> . ?uri rdf:type onto:Mountain} | lcquad |
List the television shows whose distributors are located at Burbank, California. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:locationCity <http://dbpedia.org/resource/Burbank,_California> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
What is the common relegion of Miao people and the country where Guru Purnima is celebrated ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Miao_people onto:religion ?uri. res:Guru_Purnima onto:country ?uri} | lcquad |
In which university did Harlan Mathews study, where Richard Meriil Atkinson went too? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Harlan_Mathews onto:almaMater ?uri. res:Richard_Merrill_Atkinson onto:almaMater ?uri . } | lcquad |
What kind of buildings were designed by Pyusawhti? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:architect <http://dbpedia.org/resource/Pyusawhti> . ?x onto:type ?uri . ?x rdf:type onto:Building} | lcquad |
What is the owning company of the bank whose parent is Sony Financial ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:parent <http://dbpedia.org/resource/Sony_Financial> . ?x onto:owningCompany ?uri . ?x rdf:type onto:Company} | lcquad |
What are some gymnasts coached by Amanda Reddin? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:headcoach <http://dbpedia.org/resource/Amanda_Reddin> . ?uri rdf:type onto:Gymnast} | lcquad |
Katharevousa writers have been given which awards? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:movement <http://dbpedia.org/resource/Katharevousa> . ?x onto:award ?uri . ?x rdf:type onto:Writer} | lcquad |
What are some mammals whose phylum is Chordate? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri prop:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal} | lcquad |
How many developers have worked on games of the Oddworld series? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:series <http://dbpedia.org/resource/Oddworld> . ?x onto:developer ?uri . } | lcquad |
Name the home ground of 2015 Fort Lauderdale Strikers season ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:2015_Fort_Lauderdale_Strikers_season onto:ground ?uri } | lcquad |
Which video game composed by Hirokazu Tanaka can be played on virtual Console ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri prop:composer <http://dbpedia.org/resource/Hirokazu_Tanaka> . ?u... | lcquad |
What is the resting place of the engineer who was the architect of Plaza on DeWitt? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Plaza_on_DeWitt onto:architect ?x . ?x onto:restingPlace ?uri . } | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.