question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which collaborator of Nice and Smooth wrote Same Song ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nice_&_Smooth> onto:associatedBand ?uri. <http://dbpedia.org/resource/Same_Song_(Digital_Underground_song)> prop:writer ?uri . }
lcquad
Who fought in the battle at Tupelo Mississippi?
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:place <http://dbpedia.org/resource/Tupelo,_Mississippi> . ?x prop:combatant ?uri . ?x rdf:type onto:MilitaryConflict}
lcquad
List the movies whose cast member were born in Scotland.
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Scotland> . ?uri onto:starring ?x . ?uri rdf:type onto:Film}
lcquad
List the other nicknames of city which has one of the nickname as City of Angels ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:nickname res:City_of_Angels . ?x prop:nickname ?uri . }
lcquad
Count the writers whose work has been played in NY?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:place <http://dbpedia.org/resource/New_York> . ?x prop:writer ?uri . }
lcquad
Where did the graduates of Memphis, Tenessee continue their education?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:highschool <http://dbpedia.org/resource/Memphis,_Tennessee> . ?x onto:school ?uri . }
lcquad
What subsequent work of Moondog Matinee has the composer of Motorpsycho Nitemare ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Motorpsycho_Nitemare prop:composer ?uri. res:Moondog_Matinee onto:subsequentWork ?uri}
lcquad
What was the language of the single which came before To Know Him Is to Love Him?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:To_Know_Him_Is_to_Love_Him onto:previousWork ?x . ?x prop:language ?uri . }
lcquad
What are the television shows whose company is owned by Viacom?
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:owningCompany <http://dbpedia.org/resource/Viacom_(original)> . ?uri prop:company ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
How many people used to play in the youthclub of FC Barcelona?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:youthclubs <http://dbpedia.org/resource/FC_Barcelona> . }
lcquad
Quebec born ice hockey players have stopped playing for which teams?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace <http://dbpedia.org/resource/Quebec> . ?x onto:formerTeam ?uri . ?x rdf:type onto:IceHockeyPlayer}
lcquad
Who is the chancellor of Falmouth University ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Falmouth_University prop:chancellor ?uri }
lcquad
what kind of things play on WBIG FM?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WBIG-FM> onto:programmeFormat ?uri }
lcquad
Name the are where South side Elevated Railroad operate and has place of birth as Arthur A. Ross ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:South_Side_Elevated_Railroad onto:operatedBy ?uri. res:Arthur_A._Ross prop:placeOfBirth ?uri}
lcquad
In which fields are the graduates of Worcester College, Oxford working?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x prop:almaMater <http://dbpedia.org/resource/Worcester_College,_Oxford> . ?x onto:field ?uri . }
lcquad
List the places where the relatives of Mark Donaldson died ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Mark_Donaldson_(rugby_player)> prop:relatives ?x . ?x onto:deathPlace ?uri . }
lcquad
What famous politician died in the Petersen House?
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:deathPlace <http://dbpedia.org/resource/Petersen_House> . ?uri rdf:type onto:Person}
lcquad
What are some artists on the show whose opening theme is Send It On?
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:openingTheme <http://dbpedia.org/resource/Send_It_On_(Disney's_Friends_for_Change_song)> . ?x prop:artist ?uri . ?x rdf:type onto:Televi...
lcquad
What is the citizenship of Saima Chowdhury?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Saima_Chowdhury onto:citizenship ?uri }
lcquad
What are the musical performances whose label is Celluloid Records?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:label res:Celluloid_Records . }
lcquad
What is the craft of the Ralph Flanders which is also the profession of Claiborne Pell ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ralph_Flanders prop:occupation ?uri. res:Claiborne_Pell onto:profession ?uri}
lcquad
How many people have fought wars where Arthur St. Clair was a commander?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:commander <http://dbpedia.org/resource/Arthur_St._Clair> . ?x prop:combatant ?uri . }
lcquad
Does Chicago own the Monroe Station?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Monroe_station_(CTA_Blue_Line)> prop:owned <http://dbpedia.org/resource/Chicago> }
lcquad
Which team has had both Martin prochzka and garry unger as its players ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Martin_Procházka onto:formerTeam ?uri. res:Garry_Unger onto:formerTeam ?uri . }
lcquad
What are the awards received by spouse of Ellen Lundstrom?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:spouse res:Ellen_Lundström . ?x prop:awards ?uri . }
lcquad
Who all have succeeded the kings buried in Rome?
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/Rome> . ?x onto:successor ?uri . ?x rdf:type onto:Royalty}
lcquad
Through which states do the rivers flow which join in the republican river from the left?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Republican_River onto:leftTributary ?x . ?x onto:state ?uri . }
lcquad
Give me the home town of all musical artists who uses Guitar as instrument ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:instrument <http://dbpedia.org/resource/Guitar> . ?x onto:hometown ?uri . ?x rdf:type onto:MusicalArtist}
lcquad
How many religions are followed amongst the people who've worked in the Korean army?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:militaryBranch <http://dbpedia.org/resource/Republic_of_Korea_Army> . ?x onto:religion ?uri . }
lcquad
Was andy warhol a part of Pop Art movement?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Andy_Warhol prop:movement res:Pop_art }
lcquad
Count the number of musical work which were sold by Sony 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 COUNT(?uri) WHERE { ?x prop:label <http://dbpedia.org/resource/Sony_Music_Entertainment> . ?uri prop:music ?x . ?uri rdf:type onto:MusicalWork}
lcquad
Who is the person whose home town is Fairmount, Indiana?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:hometown <http://dbpedia.org/resource/Fairmount,_Indiana> . ?uri rdf:type onto:Person}
lcquad
Name the movies directed by Stanley Kubrick and edited by Anthony Harvey?
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:director <http://dbpedia.org/resource/Stanley_Kubrick> . ?uri prop:editing <http://dbpedia.org/resource/Anthony_Harvey> . ?uri rdf:type...
lcquad
List all binomial authority of the insects whose one of the binomial authority is douard Mntries?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:binomialAuthority res:Édouard_Ménétries . ?x onto:binomialAuthority ?uri . }
lcquad
Who is the military general buried in St Mary's Church, Battersea?
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:placeofburial <http://dbpedia.org/resource/St_Mary's_Church,_Battersea> . ?uri rdf:type onto:MilitaryPerson}
lcquad
What is the military unit whose command structures are United States Department of the Navy and United States Department of Defense?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:commandStructure <http://dbpedia.org/resource/United_States_Department_of_the_Navy> . ?uri onto:commandStructure <http://dbpedia.org/resource/United_States_Department_of_Defense> ...
lcquad
What are some other things developed by the company who made the remote desktop protocol?
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:products <http://dbpedia.org/resource/Remote_Desktop_Protocol> . ?x onto:product ?uri . ?x rdf:type onto:Company}
lcquad
Where was Al-Muzaffar Umar buried ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al-Muzaffar_Umar> prop:placeOfBurial ?uri }
lcquad
List the guests of On Broadway ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/On_Broadway_(Smash)> prop:guests ?uri }
lcquad
How many universities are there whose country's capital is Oslo?
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:capital <http://dbpedia.org/resource/Oslo> . ?uri onto:country ?x . ?uri rdf:type onto:University}
lcquad
Did Bob Dylan write the lyrics of the times they are a changin'?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> prop:lyrics <http://dbpedia.org/resource/Bob_Dylan> }
lcquad
What is the religion of the ones in the Kampuchean Union of Salvation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryBranch res:Kampuchean_United_Front_for_National_Salvation . ?x onto:religion ?uri . }
lcquad
Where did the members of judge advocate general corps study?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:militaryRank <http://dbpedia.org/resource/Judge_Advocate_General's_Corps,_United_States_Army> . ?x onto:almaMater ?uri . }
lcquad
Name the airlines which have a hub in airport in SF?
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:cityServed <http://dbpedia.org/resource/San_Francisco> . ?uri prop:hubs ?x . ?uri rdf:type onto:Airline}
lcquad
Which executive producer of the ultimate merger is also an important person at Trump Productions?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Ultimate_Merger onto:executiveProducer ?uri. res:Trump_Productions onto:keyPerson ?uri . }
lcquad
What is the official name of Colorado wine ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Colorado_wine prop:officialName ?uri }
lcquad
In how many states can one find Burr Tuss kind of bridges?
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:style <http://dbpedia.org/resource/Burr_Truss> . ?x onto:state ?uri . ?uri rdf:type onto:Region}
lcquad
who developed google videos?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Google_Videos prop:developer ?uri }
lcquad
Who is the child of John Tyler, Sr.?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_Tyler,_Sr.> onto:child ?uri }
lcquad
Is Brazilian jiu-jitsu the trainer of Nick Diaz?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Nick_Diaz> onto:trainer <http://dbpedia.org/resource/Brazilian_jiu-jitsu> }
lcquad
Who is the owner of Latvian Wikipedia and Wiktionary ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Latvian_Wikipedia onto:owner ?uri. res:Wiktionary onto:owner ?uri . }
lcquad
Name all those buried in a place governed by a city council.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:governingBody res:City_council . ?uri prop:restingPlace ?x . }
lcquad
What royalties's sepulchre is Mausoleum of Augustus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:placeOfBurial res:Mausoleum_of_Augustus }
lcquad
Name the common university of the Cardinal and Jim Wylie?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Stanford_Cardinal onto:university ?uri. res:Jim_Wylie onto:university ?uri . }
lcquad
What is the automobile platform of Chiva bus ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chiva_bus onto:automobilePlatform ?uri }
lcquad
Who are the animator of The Skeleton Dance?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Skeleton_Dance onto:animator ?uri }
lcquad
How many movies have a screenplay located in the States?
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:birthPlace <http://dbpedia.org/resource/United_States> . ?uri prop:screenplay ?x . ?uri rdf:type onto:Film}
lcquad
Which ceremonial County of the East Tilbury is also the local authority of the Trinity School, Brentwood?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/East_Tilbury> onto:ceremonialCounty ?uri. <http://dbpedia.org/resource/Trinity_School,_Brentwood> onto:localAuthority ?uri}
lcquad
What system is both a platform where Nord runs and also distributed The beauty inside?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Nord_(video_game)> onto:computingPlatform ?uri. <http://dbpedia.org/resource/The_Beauty_Inside> onto:distributor ?uri . }
lcquad
Name the country whose leader's deputy is Piotr Glinski?
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:deputy <http://dbpedia.org/resource/Piotr_Gliński> . ?uri prop:leaderName ?x . ?uri rdf:type onto:Country}
lcquad
Is Cologny a neighbouring city of Geneva?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Geneva prop:neighboringMunicipalities res:Cologny }
lcquad
Whose creators are Jerry Seinfeld and Larry David?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:creator res:Jerry_Seinfeld . ?uri onto:creator res:Larry_David . }
lcquad
Which TV show is related to The Sarah Jane Adventures and theme music is composed by Ron Grainer?
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:related <http://dbpedia.org/resource/The_Sarah_Jane_Adventures> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Ron_Grainer>...
lcquad
Name the parent company of Ford Air Transport Service ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ford_Air_Transport_Service onto:parentCompany ?uri }
lcquad
Who has these major shrines : Emmitsburg, Maryland and Shrine of St. Elizabeth Ann Bayley Seton?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:majorShrine <http://dbpedia.org/resource/Emmitsburg,_Maryland> . ?uri onto:majorShrine <http://dbpedia.org/resource/Shrine_of_St._Elizabeth_Ann_Bayley_Seton> . }
lcquad
Which region of Bannock is the origin od Spaghetti squash ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Spaghetti_squash> onto:origin ?uri. <http://dbpedia.org/resource/Bannock_(food)> onto:region ?uri}
lcquad
Where in the us military did pierre r graham and edwin f hunter work?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Pierre_R._Graham prop:branch ?uri. res:Edwin_F._Hunter prop:branch ?uri . }
lcquad
Count everyone who lives in a place where Indian English is an official language ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/Indian_English> . ?uri onto:residence ?x . }
lcquad
Did Raymond Picard take birth in Paris?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Raymond_Picard prop:birthplace res:Paris }
lcquad
How many religions are practiced by diplomats?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession <http://dbpedia.org/resource/Diplomacy> . ?x prop:religion ?uri . }
lcquad
Was Elton John a chairman of a Watford FC Season?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:1999–2000_Watford_F.C._season onto:chairman res:Elton_John }
lcquad
Which publisher of Lucifer's hammer is also known for Jo Garcia ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Lucifer's_Hammer> onto:publisher ?uri. <http://dbpedia.org/resource/Jo_Garcia> onto:knownFor ?uri}
lcquad
To whom was Tessa Dahl born to?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tessa_Dahl onto:parent ?uri }
lcquad
Which sport at Polytechnic University of the Philippines Taguig is the field of Jon speelman ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Jon_Speelman onto:field ?uri. res:Polytechnic_University_of_the_Philippines_Taguig onto:sport ?uri}
lcquad
Count the number of things people who know linguistics are known for ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Linguistics> . ?x onto:knownFor ?uri }
lcquad
Where were sverre krogh sundbo and havard vad petersson born?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Sverre_Krogh_Sundbø prop:birthPlace ?uri. res:Håvard_Vad_Petersson prop:placeOfBirth ?uri}
lcquad
Was Cliff Burton in Metallica?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:Metallica prop:pastMembers res:Cliff_Burton }
lcquad
How many religions are followed by organizations which are internationally known as the muslim brotherhood?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:international <http://dbpedia.org/resource/Muslim_Brotherhood> . ?x onto:religion ?uri . }
lcquad
What are some people born in NY known for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:birthPlace res:New_York_City . ?x onto:knownFor ?uri . }
lcquad
Who is the developer of the software which is produced by Claris ?
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/Claris> prop:products ?x . ?x onto:developer ?uri . ?x rdf:type onto:Software}
lcquad
What is the river whose source is Cowombat Flat and has it's mouth located in Murray Mouth?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:source <http://dbpedia.org/resource/Cowombat_Flat> . ?uri onto:riverMouth <http://dbpedia.org/resource/Murray_Mouth> . ?uri rdf:type onto:River}
lcquad
Where does the river flow into which begins 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:riverMouth ?uri . }
lcquad
What is the government type of Ancient Rome ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ancient_Rome onto:governmentType ?uri }
lcquad
Which director of On deadly Ground also released Mojo Priest ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mojo_Priest prop:artist ?uri. res:On_Deadly_Ground prop:director ?uri . }
lcquad
What is the television show whose channel's parent organisation is Fox Sports?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parentOrganisation <http://dbpedia.org/resource/Fox_Sports_(United_States)> . ?uri onto:channel ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Who commanded the invasion of Buwat and made Fatima bint Sa'd famous?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Invasion_of_Buwat> prop:commander ?uri. <http://dbpedia.org/resource/Fatimah_bint_Sa'd> onto:knownFor ?uri . }
lcquad
What is the home ground of the clubs managed by Ciao Zanardi?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:manager <http://dbpedia.org/resource/Caio_Zanardi> . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}
lcquad
What is the country with native language as Languages of Ethiopia?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:language <http://dbpedia.org/resource/Languages_of_Ethiopia> . ?uri rdf:type onto:Country}
lcquad
What is the band with previous members Kevin Jonas and Joe Jonas?
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:pastMembers <http://dbpedia.org/resource/Kevin_Jonas> . ?uri prop:pastMembers <http://dbpedia.org/resource/Joe_Jonas> . ?uri rdf:type o...
lcquad
List the people with Scientology as their religious belief?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:religion <http://dbpedia.org/resource/Scientology> . ?uri rdf:type onto:Person}
lcquad
How many fictional characters were humans?
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:species <http://dbpedia.org/resource/Human> . ?uri rdf:type onto:FictionalCharacter}
lcquad
Where was Girls (The Prodigy song) recorded ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Girls_(The_Prodigy_song)> prop:recorded ?uri }
lcquad
How many TV shows' networks are headquarterd in 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 COUNT(?uri) WHERE { ?x prop:headquarters <http://dbpedia.org/resource/New_York> . ?uri prop:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
Does StandBy records distribute via Sony?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:StandBy_Records onto:distributingLabel res:Sony }
lcquad
Give me some shows owned by BBC one and BBC hd?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:network <http://dbpedia.org/resource/BBC_One> . ?uri onto:network <http://dbpedia.org/resource/BBC_HD> . ?uri rdf:type onto:TelevisionShow}
lcquad
How many teams have rented stadiums in Canada?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:location <http://dbpedia.org/resource/Canada> . ?x prop:tenants ?uri . }
lcquad
List the awards won by the film director of Chicken Run?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Chicken_Run prop:director ?x . ?x onto:award ?uri . }
lcquad
What territory of Sino French War was the battle of Raoul Magrin-Vernerey fought ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Sino-French_War> onto:territory ?uri. <http://dbpedia.org/resource/Raoul_Magrin-Vernerey> prop:battles ?uri}
lcquad
List the outflow of Lake Uniamsi?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lake_Uniamési onto:outflow ?uri }
lcquad
Did John Byrne create Emma Frost?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Emma_Frost> prop:creators <http://dbpedia.org/resource/John_Byrne_(comics)> }
lcquad