question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
What type of engines are utilised by Purvis Eureka? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Purvis_Eureka prop:engine ?uri } | lcquad |
Who edited Easy street ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Easy_Street_(film)> onto:editing ?uri } | lcquad |
Who were involved in the wars where Jonathan Haskell battled? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Jonathan_Haskell prop:battles ?x . ?x prop:combatant ?uri . } | lcquad |
In which city was the film star of Singhasan Battisi born ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Singhasan_Battisi_(TV_series)> onto:starring ?x . ?x prop:birthPlace ?uri . } | lcquad |
What are the reason served by Toll Global Express which is also the country of LPGA ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Toll_Global_Express onto:regionServed ?uri. res:LPGA onto:country ?uri} | lcquad |
List the territory of Tonkin Campaign ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Tonkin_Campaign onto:territory ?uri } | lcquad |
For which teams did Ryan Powell play for? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ryan_Powell_(lacrosse)> onto:team ?uri } | lcquad |
What are the awards won by the person who wrote the screen play for Lost in Rio ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:OSS_117:_Lost_in_Rio prop:screenplay ?x . ?x prop:awards ?uri . } | lcquad |
Total number of places where people drafted in the detroit pistons have died? | 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:draftTeam <http://dbpedia.org/resource/Detroit_Pistons> . ?x prop:placeOfDeath ?uri . ?uri rdf:type onto:Location} | lcquad |
What band made The trial and One of these days song? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Trial_(song)> prop:artist ?uri. <http://dbpedia.org/resource/One_of_These_Days_(instrumental)> onto:musicalArtist ?uri . } | lcquad |
Name the club of Julie Hastings ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Julie_Hastings onto:club ?uri } | lcquad |
From where does the river Upper Neretva start flowing? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Upper_Neretva onto:riverMouth ?uri } | lcquad |
Name the university located in Indiana and has affiliations with Kaplan, Inc.? | 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:campus <http://dbpedia.org/resource/Indiana> . ?uri prop:affiliations <http://dbpedia.org/resource/Kaplan,_Inc.> . ?uri rdf:type onto:U... | lcquad |
List the newspapers whose offices are situated in 1211 Avenue of the Americas? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:headquarter <http://dbpedia.org/resource/1211_Avenue_of_the_Americas> . ?uri rdf:type onto:Newspaper} | lcquad |
Was Morrissey a member of the Smiths? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:The_Smiths onto:formerBandMember res:Morrissey } | lcquad |
Did Phillippe Cabot go to Columbia for studying? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Phillippe_Cabot onto:university res:Columbia_University } | lcquad |
What river originates in Kingston Ontario? | 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:sourceLocation <http://dbpedia.org/resource/Kingston,_Ontario> . ?uri rdf:type onto:River} | lcquad |
By what style was Providence Chapel, Charlwood made? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Providence_Chapel,_Charlwood> prop:style ?uri } | lcquad |
For how many PMs did the politician work, whose successor was Kingsley Wood? | 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 { <http://dbpedia.org/resource/Kingsley_Wood> onto:successor ?x . ?x prop:primeminister ?uri . ?x rdf:type onto:OfficeHolder} | lcquad |
list some companies founded by Jim Harris. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:foundedBy <http://dbpedia.org/resource/Jim_Harris_(entrepreneur)> } | lcquad |
Give me the total number of employer of the engineers whose one of the employer is McDonnell Aircraft ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:employer <http://dbpedia.org/resource/McDonnell_Aircraft> . ?x onto:employer ?uri } | lcquad |
How many developers have games where I can hear Lightning McQueen? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Lightning_McQueen> onto:voice ?x . ?x onto:developer ?uri . } | lcquad |
Which universit's affiliation is with Kalpan, Inc. and has campus at Iowa ? | 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:affiliations <http://dbpedia.org/resource/Kaplan,_Inc.> . ?uri onto:campus <http://dbpedia.org/resource/Iowa> . ?uri rdf:type onto:Univ... | lcquad |
How many record labels publish works of Jazz fusion? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:genre <http://dbpedia.org/resource/Jazz_fusion> . ?x onto:recordLabel ?uri . } | lcquad |
What are the regions in which the distributor of Secrets and Lies serves ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Secrets_and_Lies_(U.S._TV_series)> onto:distributor ?x . ?x onto:regionServed ?uri . } | lcquad |
List all the writers of the comics which has Robert Bernstein as one of the writer ? | 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:writers <http://dbpedia.org/resource/Robert_Bernstein_(comics)> . ?x prop:writers ?uri . ?x rdf:type onto:Comic} | lcquad |
What are the settlements whose neighboring municipalities is Lancy? | 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:neighboringMunicipalities <http://dbpedia.org/resource/Lancy> . ?uri rdf:type onto:Settlement} | lcquad |
Count the total number of hometown of the gymnasts whose one of the hometown in Russia ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:hometown <http://dbpedia.org/resource/Russia> . ?x prop:hometown ?uri } | lcquad |
In which states does the river flow whose left tributary is Toms Creek? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Toms_Creek_(Monocacy_River)> onto:leftTributary ?x . ?x onto:state ?uri . } | lcquad |
Name the river whose source mountain is Baikal Mountains and mouth location is Arctic Ocean? | 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:sourceMountain <http://dbpedia.org/resource/Baikal_Mountains> . ?uri prop:mouthLocation <http://dbpedia.org/resource/Arctic_Ocean> . ?u... | lcquad |
Count the PhD students whose thesis are supervised by National Medal of Science winners? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:prizes <http://dbpedia.org/resource/National_Medal_of_Science> . ?x prop:doctoralStudents ?uri . } | lcquad |
Which broadcast area of CFRX is also the palce of birth of Anthony Raymond ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:CFRX onto:broadcastArea ?uri. res:Anthony_Raymond_Ceresko prop:placeOfBirth ?uri} | lcquad |
Count the total number of cast member of the television shows whose actress is Joey McIntyre? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:starring <http://dbpedia.org/resource/Joey_McIntyre> . ?x prop:starring ?uri } | lcquad |
List all the awards won by the artist who has won SIGGRAPH ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:award res:SIGGRAPH . ?x onto:award ?uri . } | lcquad |
Where was david Scherman trained ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:David_Scherman prop:training ?uri } | lcquad |
Count the battles fought by Raoul Magrin-Vernerey? | 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 { <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> prop:battles ?uri . ?uri rdf:type onto:MilitaryConflict} | lcquad |
Which athlete was the flag bearer for Switzerland in 2004 and 2008 summer Olympics ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Switzerland_at_the_2004_Summer_Olympics prop:flagbearer ?uri. res:Switzerland_at_the_2008_Summer_Olympics prop:flagbearer ?uri . } | lcquad |
Which nationalist group was responsible for foundation of Young Lords? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Young_Lords prop:international ?uri } | lcquad |
What award was won by the father of Angelina Jolie? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:children res:Angelina_Jolie . ?x onto:award ?uri . } | lcquad |
What are the software whose programming language are Multilingual? | 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:language <http://dbpedia.org/resource/Multilingualism> . ?uri prop:programmingLanguage ?x . ?uri rdf:type onto:Software} | lcquad |
Was Marshall Arisman the cover artist in american psycho? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
ASK WHERE { res:American_Psycho prop:coverArtist res:Marshall_Arisman } | lcquad |
Which birthplace of Liliya Lobanova is also the location of the Snake Island ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Liliya_Lobanova> prop:birthplace ?uri. <http://dbpedia.org/resource/Snake_Island_(Black_Sea)> prop:locationCountry ?uri} | lcquad |
Count all the stateless people | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:citizenship <http://dbpedia.org/resource/Statelessness> . } | lcquad |
Josef Bhler belongs to which political party? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Josef_Bühler onto:occupation ?uri } | lcquad |
Where did the war take place where one of the commander was Zuo Zongtang? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:commander <http://dbpedia.org/resource/Zuo_Zongtang> . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict} | lcquad |
In which place is the company which is known for Barbara bestor located ? | 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/Barbara_Bestor> prop:knownFor ?x . ?x onto:location ?uri . ?x rdf:type onto:Company} | lcquad |
What novels are belong to the genre of Utopian and dystopian fiction? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:literaryGenre res:Utopian_and_dystopian_fiction } | lcquad |
What are the movies written by Nick Castle? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:writer <http://dbpedia.org/resource/Nick_Castle> . ?uri rdf:type onto:Film} | lcquad |
On which river are there things belonging to zambezi river authority? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:owner res:Zambezi_River_Authority . ?x onto:river ?uri . } | lcquad |
Is Egyptian Arabic belong to the Central Semitic Languages family? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Egyptian_Arabic onto:languageFamily res:Central_Semitic_languages } | lcquad |
Who is the artist of Sings Kristofferson and also performed Milk Cow Blues atleast once? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Sings_Kristofferson prop:artist ?uri. res:Milk_Cow_Blues onto:artist ?uri . } | lcquad |
Who has fought in wars under commander Arthur St Clair? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:commander res:Arthur_St._Clair . ?x prop:combatant ?uri . } | lcquad |
Which Paramount TV show was produced by Glen and Les Charles ? | 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/Glen_and_Les_Charles> . ?uri prop:company <http://dbpedia.org/resource/Paramount_Televisi... | lcquad |
Name some basketball players who have played for chicago bulls? | 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/Chicago_Bulls> . ?uri rdf:type onto:BasketballPlayer} | lcquad |
Which owner of the national Herald india is the leader of Kumta ? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_National_Herald_(India)> onto:owner ?uri. <http://dbpedia.org/resource/Kumta> prop:governmentType ?uri} | lcquad |
Was Francisco Pizarro of the monarch of Charles 5, of the roman empire? | PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { <http://dbpedia.org/resource/Francisco_Pizarro> onto:monarch <http://dbpedia.org/resource/Charles_V,_Holy_Roman_Emperor> } | lcquad |
What is the largest city of Pulau Ubin ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Pulau_Ubin onto:largestCity ?uri } | lcquad |
What is the origin of the musical artist of A Todo Romantic Style ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:A_Todo_Romantic_Style prop:artist ?x . ?x prop:origin ?uri . } | lcquad |
Horses sired by Karinga Bay have participated in which races? | 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:sire <http://dbpedia.org/resource/Karinga_Bay> . ?x prop:race ?uri . ?x rdf:type onto:Horse} | lcquad |
What is the alma mater of the scientists known for String theory? | 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:knownFor <http://dbpedia.org/resource/String_theory> . ?x prop:almaMater ?uri . ?x rdf:type onto:Scientist} | lcquad |
How many apes are there? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:family <http://dbpedia.org/resource/Ape> . } | lcquad |
What is a common nickname given to both Lyons Township high school and the wheaton college in massachusetts? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lyons_Township_High_School> prop:nickname ?uri. <http://dbpedia.org/resource/Wheaton_College_(Massachusetts)> prop:nickname ?uri . } | lcquad |
Where do beauty queens with brown hair reside? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:hairColor res:Brown_hair . ?x onto:residence ?uri . } | lcquad |
List the television shows one of whose distributor's divisions is Warner Bros. Animation. | 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:divisions <http://dbpedia.org/resource/Warner_Bros._Animation> . ?uri prop:distributor ?x . ?uri rdf:type onto:TelevisionShow} | lcquad |
Name the television show directed by Simon Fuller and judged by Jennifier Lopez ? | 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 prop:judges <http://dbpedia.org/resource/Jennifer_Lopez> . ?uri rdf:type onto... | lcquad |
Name the appointer of William Clark ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:William_Clark prop:appointer ?uri } | lcquad |
in which movies have momoki kochi acted | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:starring res:Momoko_Kōchi } | lcquad |
What is the base currency of the Benelux and is also used as money in Kerguelen Islands? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Benelux prop:currency ?uri. res:Kerguelen_Islands onto:currency ?uri} | lcquad |
List the mammals whose taxonomy is Diprotodontia and phylum is Chordate? | 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 onto:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal} | lcquad |
Count the key people of the Clinton Foundation? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Clinton_Foundation> prop:keyPeople ?uri . } | lcquad |
Name the company founded in New Mexico and provides Outlook.com as 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:foundation <http://dbpedia.org/resource/New_Mexico> . ?uri prop:services <http://dbpedia.org/resource/Outlook.com> . ?uri rdf:type onto... | lcquad |
Which tv show was preceded by The spirit of Christmas and voice to the character was 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 onto:previousWork <http://dbpedia.org/resource/The_Spirit_of_Christmas_(short_film)> . ?uri prop:voices <http://dbpedia.org/resource/Mona_Mar... | lcquad |
Under which common jurisdiction do Trinity School, Brentwood and Buckhurst Hill County High School fall? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri. <http://dbpedia.org/resource/Buckhurst_Hill_County_High_School> onto:localAuthority ?uri . } | lcquad |
Music of how many things has been given by Akira Ifukube? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:music <http://dbpedia.org/resource/Akira_Ifukube> . } | lcquad |
What made jo garcia and merritt cabal both famous? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Jo_Garcia onto:knownFor ?uri. res:Merritt_Cabal onto:knownFor ?uri . } | lcquad |
What was the career of some people who have committed suicide? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x prop:deathCause res:Suicide . ?x onto:occupation ?uri . } | lcquad |
In how many places are the tombs of people who died in Connecticut Colony? | 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:placeOfDeath <http://dbpedia.org/resource/Connecticut_Colony> . ?x onto:restingPlace ?uri . ?uri rdf:type onto:Place} | lcquad |
List the producer of the television shows distributed by FremantleMedia. | 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:distributor <http://dbpedia.org/resource/FremantleMedia> . ?x onto:producer ?uri . ?x rdf:type onto:TelevisionShow} | lcquad |
Name the awards won by Elie Wiesel ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Elie_Wiesel prop:awards ?uri } | lcquad |
Who are the producers of Marie Sisters? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:Marie_Sisters prop:producer ?uri } | lcquad |
Who won the silver medal when the bronze was won by Yang Yilin? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:bronzeMedalist res:Yang_Yilin . ?x onto:silverMedalist ?uri . } | lcquad |
List the successor of successor of Hayden, Stone & Co. | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Hayden,_Stone_&_Co.> onto:successor ?x . ?x onto:successor ?uri . } | lcquad |
Count the number of battles fought by the military person involved in Morocco ? | PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:battles <http://dbpedia.org/resource/Morocco> . ?x prop:battles ?uri } | lcquad |
What is the origin of Xynisteri? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Xynisteri onto:origin ?uri } | lcquad |
How many important works have been done by Russel Davies? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/Russell_T_Davies> onto:notableWork ?uri . } | lcquad |
Who are currently playing for Barcelona FC? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE {?uri prop:currentclub res:FC_Barcelona } | lcquad |
Is Andrew Lincoln the narrator of Million Dollar Traders? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK WHERE { res:Million_Dollar_Traders onto:narrator res:Andrew_Lincoln } | lcquad |
Who is the owner of Saumarez ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Saumarez_(horse)> onto:owner ?uri } | lcquad |
What is telecasted on the network where Deborah Turness holds important position? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { ?x onto:keyPerson res:Deborah_Turness . ?uri onto:network ?x . } | lcquad |
Who is the fictional character whose relative is Vestigial Peter? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE {?uri onto:relative <http://dbpedia.org/resource/Vestigial_Peter> . ?uri rdf:type onto:FictionalCharacter} | lcquad |
How many home stadium are there, of the soccer club seasons whose chairman is Merritt Paulson? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:chairman <http://dbpedia.org/resource/Merritt_Paulson> . ?x onto:homeStadium ?uri . } | lcquad |
Name the alma mater of Ernest de Saisset ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:Ernest_de_Saisset onto:almaMater ?uri } | lcquad |
What magazine companies are of form Limited liability company? | 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:company <http://dbpedia.org/resource/Limited_liability_company> . ?uri rdf:type onto:Magazine} | lcquad |
List the driver of SA MArino Grand Prix is also the Pole driver of Canadian Grand Proix ? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:1999_San_Marino_Grand_Prix prop:firstDriver ?uri. res:1997_Canadian_Grand_Prix prop:poleDriver ?uri} | lcquad |
Where does John A Danaher III work? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri WHERE { res:John_A._Danaher_III prop:office ?uri } | lcquad |
Name few movies directed by Tim Burton ? | 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:director <http://dbpedia.org/resource/Tim_Burton> . ?uri rdf:type onto:Film} | lcquad |
Where was Live in Detroit, MI recorded ? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Live_in_Detroit,_MI> onto:recordedIn ?uri } | lcquad |
Name all the bands which have members of QDT in them. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri WHERE { res:QDT onto:bandMember ?x . ?x onto:associatedBand ?uri . } | lcquad |
Which footballers did their high school in west Sacramento 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 {?uri prop:highSchool <http://dbpedia.org/resource/West_Sacramento,_California> . ?uri rdf:type onto:AmericanFootballPlayer} | lcquad |
List the names of the soccer club seasons whose division is 2012 Campeonato Brasileiro Srie A. | 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:league <http://dbpedia.org/resource/2012_Campeonato_Brasileiro_Série_A> . ?x prop:name ?uri . ?x rdf:type onto:SoccerClubSeason} | lcquad |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.