question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What is the largest city in the country where the San Marcos River originates? | 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/San_Marcos_River> onto:sourceMountain ?x . ?x onto:largestCity ?uri . ?x rdf:type onto:Country} | lcquad |
Is David Cameron the prime minister of Nick Clegg? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Nick_Clegg onto:primeMinister res:David_Cameron } | lcquad |
Which musician was born in Harriman, NY? | 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:placeOfBirth <http://dbpedia.org/resource/Harriman,_New_York> . ?uri rdf:type onto:MusicalArtist} | lcquad |
In which areas is the radio station broadcasted which is a sister station of WXME ? | 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/WXME> prop:sisterStations ?x . ?x prop:area ?uri . ?x rdf:type onto:RadioStation} | lcquad |
What common teams do Ramiro Pea and Bruce Bochy share? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ramiro_Peña onto:team ?uri. res:Bruce_Bochy onto:team ?uri . } | lcquad |
In which continent do Air 2000 and Novair International airways operate? | 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/Air_2000> prop:destinations ?uri. <http://dbpedia.org/resource/Novair_International_Airways> prop:destinations ?uri ... | lcquad |
How many shows are aired on Comedy Central? | 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 {?uri prop:network <http://dbpedia.org/resource/Comedy_Central> . ?uri rdf:type onto:TelevisionShow} | lcquad |
List all the settlements which has a part named Seguin,Texas ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:part <http://dbpedia.org/resource/Seguin,_Texas> . ?x onto:part ?uri . ?x rdf:type onto:Settlement} | lcquad |
Which awards have Ingmar Bergman won? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Ingmar_Bergman prop:awards ?uri } | lcquad |
What are the products of the company who published Robot Wars: Metal Mayhem ? | 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/Robot_Wars:_Metal_Mayhem> onto:publisher ?x . ?x onto:product ?uri . ?x rdf:type onto:Company} | lcquad |
In which state is Colemanville Covered Bridge located ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Colemanville_Covered_Bridge onto:state ?uri } | lcquad |
Where did the partner of Teriitaria II die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Teriitaria_II prop:spouse ?x . ?x onto:deathPlace ?uri . } | lcquad |
Name the licensee of the TV station whose one of the licensee is Incorporation ? | 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:licensee <http://dbpedia.org/resource/Incorporation_(business)> . ?x prop:licensee ?uri . ?x rdf:type onto:TelevisionStation} | lcquad |
What is the company of Ford Theatre ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Ford_Theatre prop:company ?uri } | lcquad |
For all the senators who once studied in Sturm College of Law, give their burial 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 { ?x onto:almaMater <http://dbpedia.org/resource/Sturm_College_of_Law> . ?x prop:restingplace ?uri . ?x rdf:type onto:Senator} | lcquad |
Did Jim Kiick do his highschool in New Jersey? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Jim_Kiick prop:highSchool res:New_Jersey } | lcquad |
What are Monrow Carell Jr Children Hospital and Vanderbilt University Medical Center both affiliated with? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Monroe_Carell_Jr._Children's_Hospital_at_Vanderbilt> prop:affiliation ?uri. <http://dbpedia.org/resource/Vanderbilt_University_Medical_Center> prop:affiliation ?uri . } | lcquad |
Name the writer whose one of the notable work is Adventures of Huckleberry Finn and died in Redding, 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:notableWork <http://dbpedia.org/resource/Adventures_of_Huckleberry_Finn> . ?uri onto:deathPlace <http://dbpedia.org/resource/Redding,_Connecticut> . ?uri rdf:type onto:Writer} | lcquad |
Which official residence of hugh Scott is also the origin of Long Rifle ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Long_rifle prop:origin ?uri. res:Hugh_Scott onto:residence ?uri} | lcquad |
How many politicians are in the US Senate? | 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 {?uri prop:order <http://dbpedia.org/resource/United_States_Senate> . ?uri rdf:type onto:OfficeHolder} | lcquad |
What is the name of the person who has relations with Dionne Warwick and Gary Garland? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?uri onto:relation <http://dbpedia.org/resource/Dionne_Warwick> . ?uri onto:relation <http://dbpedia.org/resource/Gary_Garland> . ?uri rdf:type onto:Person} | lcquad |
What is the job of the George Arceneaux, Jr. which is also the office of the Blanche Bruce | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/George_Arceneaux,_Jr.> onto:occupation ?uri. <http://dbpedia.org/resource/Blanche_Bruce> prop:office ?uri} | lcquad |
Which moto of american Classical League is also the academic discipline of Probus ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/American_Classical_League> prop:motto ?uri. <http://dbpedia.org/resource/Probus_(journal)> onto:academicDiscipline ?uri} | lcquad |
List all the major shrines of the saints which has one of the shrines as Debre Libanos ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:majorShrine <http://dbpedia.org/resource/Debre_Libanos> . ?x onto:majorShrine ?uri . ?x rdf:type onto:Saint} | lcquad |
Name the fictional character whose relatives are Huey, Dewey, and Louie and belongs to Duck family ? | 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:relatives <http://dbpedia.org/resource/Huey,_Dewey,_and_Louie> . ?uri onto:relative <http://dbpedia.org/resource/Duck_family_(Disney)> ... | lcquad |
What is the ideology of the Union of Cambodian Democrats which is also the ideology of Palang Dharma Party ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Union_of_Cambodian_Democrats onto:ideology ?uri. res:Palang_Dharma_Party onto:ideology ?uri . } | lcquad |
How many bands are signed up with labels which were founded in Japan? | 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 prop:foundation <http://dbpedia.org/resource/Japan> . ?uri prop:label ?x . ?uri rdf:type onto:Band} | lcquad |
How many kings and queens have died in the Arabian Peninsula? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:deathPlace <http://dbpedia.org/resource/Arabian_Peninsula> . } | lcquad |
What is the bloomington viaduct built to cross? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Bloomington_Viaduct prop:crosses ?uri } | lcquad |
Which party has come in power at both Balangir and Amaravila in india? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Balangir_district onto:leaderName ?uri. res:Amaravila onto:leaderName ?uri . } | lcquad |
How many politicians reside in Cape Town? | 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 {?uri prop:residence <http://dbpedia.org/resource/Cape_Town> . ?uri rdf:type onto:OfficeHolder} | lcquad |
How many games are released for virtual consoles? | 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:computingPlatform <http://dbpedia.org/resource/Virtual_Console> . ?uri rdf:type onto:VideoGame} | lcquad |
Saores de costa built a bridge over which river? | 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:builder <http://dbpedia.org/resource/Soares_da_Costa> . ?x onto:crosses ?uri . ?x rdf:type onto:Bridge} | lcquad |
Is Lieutenant general (United States) the superintendent of United States Air Force Academy? | PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { <http://dbpedia.org/resource/United_States_Air_Force_Academy> prop:superintendent <http://dbpedia.org/resource/Lieutenant_general_(United_States)> } | lcquad |
In what movies did Akira Ifukube compose the music? | 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:music <http://dbpedia.org/resource/Akira_Ifukube> . ?uri rdf:type onto:Film} | lcquad |
Is the national endowment of arts under the jurisdiction of federal government of US? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:National_Endowment_for_the_Arts prop:jurisdiction res:Federal_government_of_the_United_States } | lcquad |
Who is the operator of Rainbow Warrior (1955) ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Rainbow_Warrior_(1955)> onto:operator ?uri } | lcquad |
List the guest of the show The Other Side (The Outer Limits)? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Other_Side_(The_Outer_Limits)> prop:guests ?uri } | lcquad |
What is the common location of tomb of the Elizabeth of Rhuddlan and Isabel of Cambridge? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Elizabeth_of_Rhuddlan> prop:placeOfBurial ?uri. <http://dbpedia.org/resource/Isabel_of_Cambridge,_Countess_of_Essex> prop:placeOfBurial ?uri . } | lcquad |
To which state eorge M. Chilcott belong ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:George_M._Chilcott prop:state ?uri } | lcquad |
What are some products of the company whose parent is BBC? | 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/BBC> . ?x prop:products ?uri . ?x rdf:type onto:Company} | lcquad |
Which producer of the Eristoff is also the distributor of Bombay Sapphire? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Eristoff prop:manufacturer ?uri. res:Bombay_Sapphire prop:distributor ?uri} | lcquad |
How many islands belong to archipelagos located in the pacific? | 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 prop:location <http://dbpedia.org/resource/Pacific_Ocean> . ?uri prop:archipelago ?x . ?uri rdf:type onto:Island} | lcquad |
Who was the chairman of Fort Lauderdale Strikers and also 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:chairman ?uri. res:Fort_Lauderdale_Strikers onto:chairman ?uri . } | lcquad |
What are some video games whose music is composed by an employ of the company Creatures? | 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:occupation <http://dbpedia.org/resource/Creatures_(company)> . ?uri prop:composer ?x . ?uri rdf:type onto:VideoGame} | lcquad |
Who were in the youth clubs that were in season of 2015 Argentine Primera Division? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:season res:2015_Argentine_Primera_División . ?uri prop:youthclubs ?x . } | lcquad |
How many units follow the US Navy Department's command structure? | 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:commandStructure <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri rdf:type onto:MilitaryUnit} | lcquad |
Name the home Stadium of Kenya national under-20 football team ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Kenya_national_under-20_football_team> prop:homeStadium ?uri } | lcquad |
Which city do both Arthur Ross and Edward Niesen come from? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Arthur_A._Ross prop:placeOfBirth ?uri. res:Edward_Niesen onto:birthPlace ?uri} | lcquad |
Which associat of Martin Pugh is also married to Alana Stewert ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Martin_Pugh prop:associatedActs ?uri. res:Alana_Stewart onto:spouse ?uri} | lcquad |
How many people played for Newell's Old Boys? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs <http://dbpedia.org/resource/Newell's_Old_Boys> . } | lcquad |
What is the common school of Chris Marve and Neria Douglass? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Chris_Marve onto:school ?uri. res:Neria_Douglass onto:almaMater ?uri} | lcquad |
Give me the count of artist in the company whose Artist is Jean- François Coté ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:artist <http://dbpedia.org/resource/Jean-François_Coté> . ?x prop:artist ?uri } | lcquad |
How many bands have members currently playing the Fender Stratocaster? | 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 prop:notableInstruments <http://dbpedia.org/resource/Fender_Stratocaster> . ?uri prop:currentMembers ?x . ?uri rdf:type onto:Band} | lcquad |
Who has built the stadiums which were rented by the Central american games of 2013? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:tenant <http://dbpedia.org/resource/2013_Central_American_Games> . ?x onto:builder ?uri . ?x rdf:type onto:Stadium} | lcquad |
What has been founded in the state that Denton county, Texas is a part of? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:part <http://dbpedia.org/resource/Denton_County,_Texas> . ?uri onto:foundationPlace ?x . } | lcquad |
Which politicians son is buried in Metairie Cementery? | 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:placeofburial <http://dbpedia.org/resource/Metairie_Cemetery> . ?uri onto:child ?x . ?uri rdf:type onto:OfficeHolder} | lcquad |
Titus software publishes which genre of games? | 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:publisher <http://dbpedia.org/resource/Titus_Software> . ?x onto:genre ?uri . ?x rdf:type onto:VideoGame} | lcquad |
Which fictional character's relative is Clan McDuck and belongs to American Pekin duck ? | 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:relatives <http://dbpedia.org/resource/Clan_McDuck> . ?uri onto:species <http://dbpedia.org/resource/American_Pekin_duck> . ?uri rdf:ty... | lcquad |
Which military people served their allegiance to Union (American Civil War)? | 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:allegiance <http://dbpedia.org/resource/Union_(American_Civil_War)> . ?uri rdf:type onto:MilitaryPerson} | lcquad |
Which border country of the Korean Peninsula is also the country of Krusty, a musical group ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Korean_Peninsula> onto:border ?uri. <http://dbpedia.org/resource/Krusty_(music_group)> onto:country ?uri} | lcquad |
Mac OS is the operating system of how many things? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:operatingSystem <http://dbpedia.org/resource/Mac_OS> . } | lcquad |
What are the television shows whose Composer is Stewart Copeland? | 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:composer <http://dbpedia.org/resource/Stewart_Copeland> . ?uri rdf:type onto:TelevisionShow} | lcquad |
List the border of the admin region which shares border with North Korea ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:border <http://dbpedia.org/resource/North_Korea> . ?x onto:border ?uri . ?x rdf:type onto:AdministrativeRegion} | lcquad |
What is the draft team of the Antoine Bibeau and also has player named Nathan Dempsey ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Antoine_Bibeau prop:draftTeam ?uri. res:Nathan_Dempsey prop:playedFor ?uri} | lcquad |
Through which important cities the does the river originating from the Duwamish, flow? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:source <http://dbpedia.org/resource/Green_River_(Duwamish_River)> . ?x onto:city ?uri . ?x rdf:type onto:River} | lcquad |
Name the TV show whose producer is Stephen E. Ambrose and company is HBO ? | 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/Stephen_E._Ambrose> . ?uri onto:company <http://dbpedia.org/resource/HBO> . ?uri rdf:type onto:Te... | lcquad |
List the broadcast area of the TV stations which also serves in Agalga ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea res:Agaléga . ?x prop:broadcastArea ?uri . } | lcquad |
Into what military organizations is the United States Department of Defense divided? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:commandStructure res:United_States_Department_of_Defense } | lcquad |
Whose deputy is Neil Brown? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:deputy <http://dbpedia.org/resource/Neil_Brown_(Australian_politician)> . } | lcquad |
In which broadcast area does the sister station of KFFG air ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:KFFG onto:sisterStation ?x . ?x onto:broadcastNetwork ?uri . } | lcquad |
Was Neil Armstrong on the Gemini 8 mission? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:Neil_Armstrong prop:mission res:Gemini_8 } | lcquad |
which astronaut's mission was Apollo 11? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:mission res:Apollo_11 } | lcquad |
What is debut team of the baseball players who died in Los Angeles? | 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:deathPlace <http://dbpedia.org/resource/Los_Angeles> . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer} | lcquad |
Which company owns instagram? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:subsidiary res:Instagram } | lcquad |
List all the former partners of the figure skater whose one of the former partner was Andrea poapst ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:formerPartner <http://dbpedia.org/resource/Andrea_Poapst> . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater} | lcquad |
List all the operators of the train who operates in Budapest ? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:operator <http://dbpedia.org/resource/Budapest> . ?x onto:operator ?uri . ?x rdf:type onto:Train} | lcquad |
What are the awards won by the producer of Puss in Boots (film)? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Puss_in_Boots_(1922_film)> onto:producer ?x . ?x onto:award ?uri . } | lcquad |
Which president had lieutenants whose governor was Bill Clinton? | 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:governor <http://dbpedia.org/resource/Bill_Clinton> . ?uri onto:lieutenant ?x . ?uri rdf:type onto:President} | lcquad |
Name the species of Liger ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Liger onto:species ?uri } | lcquad |
In which state is the alma matter of Jan Paulsen located ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jan_Paulsen onto:almaMater ?x . ?x prop:state ?uri . } | lcquad |
How many politicians are in the militia? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:branch <http://dbpedia.org/resource/Militia> . } | lcquad |
In which wars were people from the Saudi Arabian ministry of defense involved? | 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:office <http://dbpedia.org/resource/Minister_of_Defense_(Saudi_Arabia)> . ?x prop:battles ?uri . ?x rdf:type onto:Person} | lcquad |
Who were the first drivers in Grand Prixes where the first team was Scuderia Ferrari? | 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:firstTeam <http://dbpedia.org/resource/Scuderia_Ferrari> . ?x onto:firstDriver ?uri . ?x rdf:type onto:GrandPrix} | lcquad |
How many things do bridges designed by the UEM group go over? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:designer <http://dbpedia.org/resource/UEM_Group> . ?x prop:crosses ?uri . } | lcquad |
Under which US president was a politician in opposition of John G Schmitz? | 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:opponent <http://dbpedia.org/resource/John_G._Schmitz> . ?x onto:incumbent ?uri . ?x rdf:type onto:Politician} | lcquad |
Whose theme music is composed by the band one of whose member is Les Claypool? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:bandMember res:Les_Claypool . ?uri prop:themeMusicComposer ?x . } | lcquad |
Who has recorded their singles in London? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:recordedIn <http://dbpedia.org/resource/London> . ?x onto:writer ?uri . ?x rdf:type onto:Single} | lcquad |
Who are the associated musical artist of the artists of band Shorty Rogers? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Shorty_Rogers . ?x onto:associatedMusicalArtist ?uri . } | lcquad |
Who were the american football players who played for Dallas Cowboys? | 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/Dallas_Cowboys> . ?uri rdf:type onto:AmericanFootballPlayer} | lcquad |
Politicians born in Bangalore are now in which parties? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:homeTown res:Bangalore . ?x onto:party ?uri . } | lcquad |
What is the debut team of the baseball player who was born in Williamsburg, Kansas ? | 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:birthPlace <http://dbpedia.org/resource/Williamsburg,_Kansas> . ?x prop:debutteam ?uri . ?x rdf:type onto:BaseballPlayer} | lcquad |
Name the composer of motorpsycho Nitemare ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri } | lcquad |
Is James Hetfield a band member of Metallica? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Metallica onto:bandMember res:James_Hetfield . } | lcquad |
Does the Vadodara Railway station lie at the end of the Mathura Vadodara route? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Mathura–Vadodara_Section onto:routeEnd res:Vadodara_Junction_railway_station } | lcquad |
Stan Van Gundy serves as a head coach and president for which basketball team? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:president res:Stan_Van_Gundy } | lcquad |
Which appliance's CPU is Cell (microprocessor) and predecessor is PlayStation 2? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:cpu <http://dbpedia.org/resource/Cell_(microprocessor)> . ?uri onto:predecessor <http://dbpedia.org/resource/PlayStation_2> . ?uri rdf:type onto:InformationAppliance} | lcquad |
People who debuted from Houston Astros have played in which clubs? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:debutTeam <http://dbpedia.org/resource/Houston_Astros> . ?x onto:team ?uri . ?x rdf:type onto:Person} | lcquad |
Radios on what topics can be tuned in to in Washington DC? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:broadcastArea <http://dbpedia.org/resource/Washington,_D.C.> . ?x onto:programmeFormat ?uri . ?x rdf:type onto:RadioStation} | lcquad |
Give me some shows related to the ones created by Russell Davies | 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:creator <http://dbpedia.org/resource/Russell_T_Davies> . ?uri onto:related ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.