question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What is the country of the Hirth Acrostar and the Cobra missile? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hirth_Acrostar> onto:origin ?uri. <http://dbpedia.org/resource/Cobra_(missile)> onto:origin ?uri . } | lcquad |
What is the Nickname of Daniel O'Regan ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Daniel_O'Regan> prop:nickname ?uri } | lcquad |
Who owns the websites for which Jimmy wales writes? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:author res:Jimmy_Wales . ?x onto:owner ?uri . } | lcquad |
What are the bridges whose 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:locatedInArea <http://dbpedia.org/resource/California> . ?uri rdf:type onto:Bridge} | lcquad |
Which settelment area is the home town of the Danny Felice and Cline Buckens? | 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/Danny_Felice> onto:hometown ?uri. <http://dbpedia.org/resource/Céline_Buckens> onto:hometown ?uri . ?uri rdf:type onto:Settlement} | lcquad |
Who were the head of government agencies working in the German occupied Europe? | 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:jurisdiction <http://dbpedia.org/resource/German-occupied_Europe> . ?x onto:leader ?uri . ?x rdf:type onto:GovernmentAgency} | lcquad |
Name the companies which are in cities under Denzil Minnan Wong? | 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:leaderName <http://dbpedia.org/resource/Denzil_Minnan-Wong> . ?uri onto:locationCity ?x . ?uri rdf:type onto:Company} | lcquad |
What is the largest city of the birthplace of Pat Kirkwood? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Pat_Kirkwood_(racing_driver)> prop:birthplace ?x . ?x onto:largestCity ?uri . } | lcquad |
Which source of Water resources management in El Salvador is also the nation of the Sierra del Merendn? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Water_resources_management_in_El_Salvador prop:sourceCountry ?uri. res:Sierra_del_Merendón onto:country ?uri} | lcquad |
What is the academic journal whose editor is Stephen Law? | 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:editor <http://dbpedia.org/resource/Stephen_Law> . ?uri rdf:type onto:AcademicJournal} | lcquad |
What awards have the alumni of Academy of Fine Arts in Lodz achieved? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:training res:Academy_of_Fine_Arts_In_Łódź . ?x onto:award ?uri . } | lcquad |
Name the members of youth clubs which have Camp Nou as their homeground. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { ?x prop:ground res:Camp_Nou . ?uri prop:youthclubs ?x . } | lcquad |
Does mumbai manage the railway line going to the daund railway junction? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Daund_Junction_railway_station onto:servingRailwayLine res:Mumbai } | lcquad |
Which musical artist associated with Tony Allen has label with Celluloid Records ? | 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:associatedMusicalArtist <http://dbpedia.org/resource/Tony_Allen_(musician)> . ?uri prop:label <http://dbpedia.org/resource/Celluloid_Rec... | lcquad |
Who are some basketball players who played for Phoenix Suns? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:team <http://dbpedia.org/resource/Phoenix_Suns> . ?uri rdf:type onto:BasketballPlayer} | lcquad |
Which relative of George Madison was the leader of United States House of Representatives elections, 1788 and 1789 ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Madison> onto:relation ?uri. <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri} | lcquad |
From how many works is the musical derived, whose lyrics are written by Sheldon Harnick? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:lyrics <http://dbpedia.org/resource/Sheldon_Harnick> . ?x onto:basedOn ?uri . } | lcquad |
Which office holder allegiance is Colony of Virginia and was has a wife named Dolley Madison ? | 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:spouse <http://dbpedia.org/resource/Dolley_Madison> . ?uri prop:allegiance <http://dbpedia.org/resource/Colony_of_Virginia> . ?uri rdf:... | lcquad |
Was Derg the anthem of Ethopia? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Derg onto:anthem res:Ethiopia } | lcquad |
Employees of Ottawa Citizen have come from which towns? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:employer res:Ottawa_Citizen . ?x prop:homeTown ?uri . } | lcquad |
How many non-fiction subject are there of the books whose one of the non-fiction subject is Ankh-Morpork City Watch ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:nonFictionSubject <http://dbpedia.org/resource/Ankh-Morpork_City_Watch> . ?x onto:nonFictionSubject ?uri } | lcquad |
Who is the licensee of EXXV-TV ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/EXXV-TV> prop:licensee ?uri } | lcquad |
Who are in the board of Jimmy Wales ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jimmy_Wales onto:board ?uri } | lcquad |
Where were some people associated with Steve Winwood employed at? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedMusicalArtist <http://dbpedia.org/resource/Steve_Winwood> . ?x onto:occupation ?uri . ?x rdf:type onto:Person} | lcquad |
What is the origin of the musical artist whose associated band is Ziggi Recado ? | 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:associatedBand <http://dbpedia.org/resource/Ziggi_Recado> . ?x prop:origin ?uri . ?x rdf:type onto:MusicalArtist} | lcquad |
Who is the nominee of Jack Ryan ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Jack_Ryan_(politician)> onto:nominee ?uri } | lcquad |
Which division of Serbia national team is also the region of Dobinsk Ice Cave ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Serbia_national_American_football_team onto:division ?uri. res:Dobšinská_Ice_Cave onto:region ?uri} | lcquad |
Name the royalty whose spouse was Cleopatra V of Egypt and one of his parent was Ptolemy XII Auletes? | 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:mother <http://dbpedia.org/resource/Cleopatra_V_of_Egypt> . ?uri onto:parent <http://dbpedia.org/resource/Ptolemy_XII_Auletes> . ?uri r... | lcquad |
List the major shrines of Jovan Vladimir? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Jovan_Vladimir prop:majorShrine ?uri } | lcquad |
Name some shows whose company is owned by the CBS Corporation? | 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:owner <http://dbpedia.org/resource/CBS_Corporation> . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Which famous person is born in Marlboro Township, New Jersey? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:homeTown <http://dbpedia.org/resource/Marlboro_Township,_New_Jersey> . } | lcquad |
In which countries have the Start + Flug aircrafts originated? | 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:manufacturer <http://dbpedia.org/resource/Start_+_Flug> . ?x prop:nationalOrigin ?uri . ?x rdf:type onto:Aircraft} | lcquad |
How many other family of the mammals exists whose family is also Hominidae ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:family <http://dbpedia.org/resource/Hominidae> . ?x onto:family ?uri } | lcquad |
What is the former team of the football player who is the coach of 2006 Oakland Raiders season ? | 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/2006_Oakland_Raiders_season> prop:coach ?x . ?x onto:formerTeam ?uri . ?x rdf:type onto:AmericanFootballPlayer} | lcquad |
How many TV shows were made by someone who was associated with Lewis Hamilton? | 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 COUNT(?uri) WHERE { ?x onto:associatedBand <http://dbpedia.org/resource/Lewis_Hamilton> . ?uri prop:creator ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
For how many other teams have the former players of Boston Bruins played? | 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 COUNT(?uri) WHERE { ?x onto:formerTeam <http://dbpedia.org/resource/Boston_Bruins> . ?x prop:playedFor ?uri . ?uri rdf:type onto:SportsTeam} | lcquad |
Which things have been made by artists who died in Midhurst? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:deathPlace res:Midhurst . ?uri onto:creator ?x . } | lcquad |
What are the TV shows whose network is also known as the CW? | 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:sisterNames <http://dbpedia.org/resource/The_CW> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
How many other important things has the painter of Sarah Jane Adventures done? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> prop:creator ?x . ?x onto:notableWork ?uri . } | lcquad |
Which founder of sea Gayle Music is also the judge of Rising Star ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sea_Gayle_Music> prop:founder ?uri. <http://dbpedia.org/resource/Rising_Star_(U.S._TV_series)> prop:judges ?uri} | lcquad |
Who owns the ford kansas assembly plant? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ford_Kansas_City_Assembly_Plant onto:owningOrganisation ?uri } | lcquad |
What is the label of I Pray on Christmas ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:I_Pray_on_Christmas prop:label ?uri } | lcquad |
List the destination of Novair International Airways ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Novair_International_Airways onto:destination ?uri } | lcquad |
Who is the spouse of Willian Menalaus? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:William_Menelaus onto:spouse ?uri } | lcquad |
Count the number of actors in Lucy Sullivan Is Getting Married. | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lucy_Sullivan_Is_Getting_Married> prop:starring ?uri . } | lcquad |
What mammals are classified into Diprotodontia ? | 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/Diprotodontia> . ?uri rdf:type onto:Mammal} | lcquad |
The Other Side has hosted how many guests? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> prop:guests ?uri . } | lcquad |
Name the river with source as Columbia Lake and river mouth is located in Clatsop Country ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth <http://dbpedia.org/resource/Clatsop_County,_Oregon> . ?uri onto:source <http://dbpedia.org/resource/Columbia_Lake> . ?uri rdf:type onto:River} | lcquad |
Is Dave Schulz a band member of Berlin? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Berlin_(band)> onto:bandMember <http://dbpedia.org/resource/Dave_Schulz_(musician)> } | lcquad |
What are the airlines whose hub airport is Los Angeles International Airport? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:hubAirport <http://dbpedia.org/resource/Los_Angeles_International_Airport> . ?uri rdf:type onto:Airline} | lcquad |
what are some famous people out of the Filipinos? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:stateOfOrigin res:Filipinos } | lcquad |
What awards were presented to the person who produced Paradise place? | 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/Paradise_Place> prop:producer ?x . ?x prop:awards ?uri . ?x rdf:type onto:Person} | lcquad |
What is the location town of Seattle Great Wheel ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Seattle_Great_Wheel prop:locationTown ?uri } | lcquad |
List all the line of Vadodara Junction railway station? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Vadodara_Junction_railway_station prop:line ?uri } | lcquad |
Name the college of Jon Curran ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Jon_Curran prop:college ?uri } | lcquad |
Which Tim Birton's movie has a screenplay by Daniel Waters ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:screenplay <http://dbpedia.org/resource/Daniel_Waters_(screenwriter)> . ?uri prop:director <http://dbpedia.org/resource/Tim_Burton> . } | lcquad |
Who produces the tv series which made Scott Haran famous? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Scott_Haran onto:knownFor ?x . ?x onto:producer ?uri . } | lcquad |
What is the place of birth of the jockey who breeded De La Rose ? | 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/De_La_Rose> onto:breeder ?x . ?x prop:birthPlace ?uri . ?x rdf:type onto:Jockey} | lcquad |
Name the Artist of Madagascar: Operation Penguin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Madagascar:_Operation_Penguin prop:artist ?uri } | lcquad |
What are some devices made by Taiwanese companies? | 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/Taiwan> . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device} | lcquad |
Harry Huston and Dick Spalding played their first match for which team? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Harry_Huston prop:debutteam ?uri. res:Dick_Spalding prop:debutteam ?uri . } | lcquad |
What is the layout of Subaru Legacy (second generation) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Subaru_Legacy_(second_generation)> onto:layout ?uri } | lcquad |
How many other wine region are there of the grapes whose one of the wine region is Michigan ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:wineRegion <http://dbpedia.org/resource/Michigan> . ?x onto:wineRegion ?uri } | lcquad |
Name the office holder whose constituency are Duboce Triangle and Haight-Ashbury ? | 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 prop:constituency <http://dbpedia.org/resource/Haight-... | lcquad |
Estimate the number of sports divisions at the universities under international association of universities. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:affiliation <http://dbpedia.org/resource/International_Association_of_Universities> . ?x onto:sport ?uri . } | lcquad |
What is the leader of the government agency which is the military unit of Erich Kempka ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Erich_Kempka onto:militaryUnit ?x . ?x onto:leader ?uri . } | lcquad |
What is the alma mater of the senator who is the successor of Warren Magnuson ? | 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/Warren_Magnuson> prop:successor ?x . ?x prop:almaMater ?uri . ?x rdf:type onto:Senator} | lcquad |
Is Eddie Bravo the trainer of Shinya Aoki? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Shinya_Aoki prop:trainer res:Eddie_Bravo } | lcquad |
List the battles in which alumni of US Army Command and General Staff College fought? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:almaMater res:United_States_Army_Command_and_General_Staff_College . ?x prop:battles ?uri . } | lcquad |
Which writer of Alan Freeman Days is also the writer of Come On over ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Alan_Freeman_Days> onto:writer ?uri. <http://dbpedia.org/resource/Come_On_Over_(Bee_Gees_song)> prop:writer ?uri} | lcquad |
Name the subsidary of Tandem Computers which was founded by Jim Harris ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary <http://dbpedia.org/resource/Tandem_Computers> . ?uri onto:foundedBy <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> . ?uri rdf:type onto:Company} | lcquad |
Count all the books written by an author buried in the Convent of Barefoot Trinitarians? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:restingPlace <http://dbpedia.org/resource/Convent_of_the_Barefoot_Trinitarians> . ?uri onto:author ?x . ?uri rdf:type onto:Book} | lcquad |
Name the city with leader as Esther Alder and neighboring municipality as Pregny-Chambsy? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mayor <http://dbpedia.org/resource/Esther_Alder> . ?uri onto:neighboringMunicipality <http://dbpedia.org/resource/Pregny-Chambésy> . ?uri rdf:type onto:Location} | lcquad |
Was Blade Runner cinematographed by JordanCronenweth? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Blade_Runner onto:cinematography res:Jordan_Cronenweth } | lcquad |
Panthera leo fossils and Liger belong to which species? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Panthera_leo_fossilis onto:species ?uri. res:Liger onto:species ?uri . } | lcquad |
Name the street address of Rhodes-Haverty Building ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rhodes-Haverty_Building> prop:address ?uri } | lcquad |
Who were the commanders during the events which took place in Sandusky County, Ohio? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:place <http://dbpedia.org/resource/Sandusky_County,_Ohio> . ?x onto:commander ?uri . ?x rdf:type onto:Event} | lcquad |
Who founded the city where Pat Vincent die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pat_Vincent onto:deathPlace ?x . ?x onto:founder ?uri . } | lcquad |
Name the kingdom with currency Solidus (coin) and administrative headquarters in Nicomedia? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:currency <http://dbpedia.org/resource/Solidus_(coin)> . ?uri onto:capital <http://dbpedia.org/resource/Nicomedia> . } | lcquad |
Which company has a product named Visual Studio and One Drive as service ? | 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:services <http://dbpedia.org/resource/OneDrive> . ?uri prop:products <http://dbpedia.org/resource/Microsoft_Visual_Studio> . ?uri rdf:t... | lcquad |
Name the river whose mouth place is Old Lyme, Connecticut? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:mouthPlace <http://dbpedia.org/resource/Old_Lyme,_Connecticut> . ?uri rdf:type onto:River} | lcquad |
Which division of the Runewaker Entertainment is also the destinations of the Airtours International Airways? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Runewaker_Entertainment onto:division ?uri. res:Airtours_International_Airways prop:destinations ?uri} | lcquad |
Which show's network is Prime time Entertainment and has Douglas Netter 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 prop:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri onto:executiveProducer <http://dbpedia.org/resource/Dougla... | lcquad |
Who was the president under which a tennis player held office before John W. Weeks? | 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:predecessor <http://dbpedia.org/resource/John_W._Weeks> . ?x prop:president ?uri . ?x rdf:type onto:TennisPlayer} | lcquad |
What are the things whose leader was a monarch of Willem-Alexander of the Netherlands? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:monarch <http://dbpedia.org/resource/Willem-Alexander_of_the_Netherlands> . ?uri onto:leader ?x . } | lcquad |
acer nigrum is used in making what? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:ingredient res:Acer_nigrum } | lcquad |
Name the prospect team of Mikhail Pashnin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri } | lcquad |
What is the predecessor of BMW M40 ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:BMW_M40 prop:predecessor ?uri } | lcquad |
Which cities are located around the sea into which the ionian flows? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ionian_Sea onto:outflow ?x . ?x prop:cities ?uri . } | lcquad |
Did Joe Namath did his highschool in Beaver Falls High School? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Joe_Namath prop:highSchool res:Beaver_Falls_High_School } | lcquad |
Where do the railroads owned by the Chicago and Northwestern Transportation company begin? | 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:system <http://dbpedia.org/resource/Chicago_and_North_Western_Transportation_Company> . ?x onto:routeStart ?uri . ?x rdf:type onto:Railw... | lcquad |
Give me a count of mammals which have their order as Primate? | 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:order <http://dbpedia.org/resource/Primate> . ?uri rdf:type onto:Mammal} | lcquad |
What television show are distributed by Broadcast syndication? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:distributor <http://dbpedia.org/resource/Broadcast_syndication> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Who was the president under which people won the United States House of Representatives elections in 1790 ? | 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/United_States_House_of_Representatives_elections,_1790> prop:leader ?x . ?x prop:president ?uri . ?x rdf:type onto:... | lcquad |
Which TV show's producer is Stephen E. Ambrose and company is DreamWorks Television? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:producer <http://dbpedia.org/resource/Stephen_E._Ambrose> . ?uri onto:company <http://dbpedia.org/resource/DreamWorks_Television> . ?uri rdf:type onto:TelevisionShow} | lcquad |
Which river originate from limerick? | 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:mouthLocation <http://dbpedia.org/resource/Limerick> . ?uri rdf:type onto:River} | lcquad |
Who is the opponent of United States House of Representatives elections in Ohio, 2010 ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections_in_Ohio,_2010> prop:opponent ?uri } | lcquad |
Laozi authored which book? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:author res:Laozi } | lcquad |
What are some other children of the father of Marvin Bush? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:child res:Marvin_Bush . ?x prop:children ?uri . } | lcquad |
Rivers from which countries flow into the Caspian? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:riverMouth <http://dbpedia.org/resource/Caspian_Sea> . ?x onto:sourceCountry ?uri . ?x rdf:type onto:River} | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.