question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Who wrote The Times They Are a-Changin?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Times_They_Are_a-Changin'_(musical)> onto:musicBy ?uri }
lcquad
Which education institute of Duncan U. Fletcher is also the university of Vanderbilt Commodores ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Duncan_U._Fletcher onto:almaMater ?uri. res:Vanderbilt_Commodores onto:university ?uri}
lcquad
How many total religions are followed by people whose hometown is somewhere in India?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:hometown <http://dbpedia.org/resource/India> . ?x prop:religion ?uri . }
lcquad
What were the awards won by the founder of Walt Disney Records ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Walt_Disney_Records onto:foundedBy ?x . ?x onto:award ?uri . }
lcquad
England is the origin of how many things?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:origin <http://dbpedia.org/resource/England> . }
lcquad
What is the television show with presentator as Ryan Seacrest and theme music composer as Julian Gingell?
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:presenter <http://dbpedia.org/resource/Ryan_Seacrest> . ?uri prop:themeMusicComposer <http://dbpedia.org/resource/Julian_Gingell> . ?ur...
lcquad
Where did ed podolak go to high school
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Ed_Podolak onto:highschool ?uri }
lcquad
Where is the county seat of King County, Washington?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/King_County,_Washington> onto:countySeat ?uri }
lcquad
Is Maldives a member ofof South Asia Subregional Economic Cooperation?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:South_Asia_Subregional_Economic_Cooperation prop:membership res:Maldives }
lcquad
Is Rain Over me in the planet pit album?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Rain_Over_Me onto:album res:Planet_Pit }
lcquad
What common team are Mikhail Pashnin and Robin Kovacs expected to play for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Mikhail_Pashnin prop:prospectTeam ?uri. res:Robin_Kovacs prop:prospectTeam ?uri . }
lcquad
What are the houses of legislature in the political leader's seat of Medininagar?
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/Medininagar> prop:leaderTitle ?x . ?x prop:houses ?uri . ?x rdf:type onto:Legislature}
lcquad
Which producer of Boeing F/A-18E/F Super Hornet has a key person Dennis Muilenburg ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:keyPeople <http://dbpedia.org/resource/Dennis_Muilenburg> . ?uri prop:products <http://dbpedia.org/resource/Boeing_F/A-18E/F_Super_Hornet> . }
lcquad
Was Ne Daj Se, Nina first aired in Croatia?
PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { <http://dbpedia.org/resource/Ne_daj_se,_Nina> prop:firstAired <http://dbpedia.org/resource/Croatia> }
lcquad
How many people work at the FBI?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:occupation <http://dbpedia.org/resource/Federal_Bureau_of_Investigation> . }
lcquad
How many people have been trained in an institute located in 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 COUNT(?uri) WHERE { ?x prop:city <http://dbpedia.org/resource/California> . ?uri prop:training ?x . ?uri rdf:type onto:Person}
lcquad
Where is the tomb of son of Bruce Lee?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:parent res:Bruce_Lee . ?x onto:restingPlace ?uri . }
lcquad
What are some famous companies founded in the US?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:foundationPlace <http://dbpedia.org/resource/United_States> . ?uri rdf:type onto:Company}
lcquad
Name the common former team of Marv mcFadden and Carlos Emmons ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Marv_McFadden> prop:pastteams ?uri. <http://dbpedia.org/resource/Carlos_Emmons_(American_football)> onto:formerTeam ?uri}
lcquad
Who were fighting the war where the QF Hotchkiss was used?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { <http://dbpedia.org/resource/QF_6-pounder_Hotchkiss> onto:usedInWar ?x . ?x onto:territory ?uri . ?x rdf:type onto:MilitaryConflict}
lcquad
Give me a count of movies whose film editor is 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 COUNT(?uri) WHERE {?uri prop:editing <http://dbpedia.org/resource/Anthony_Harvey> . ?uri rdf:type onto:Film}
lcquad
How many people are buried in Arlington National Cemetery?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:placeofburial <http://dbpedia.org/resource/Arlington_National_Cemetery> . }
lcquad
What are some people working for the New York Post?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:employer <http://dbpedia.org/resource/New_York_Post> . ?uri rdf:type onto:Person}
lcquad
Which country were the people from who became famous for the Ramon Mangsaysay Award?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:knownFor <http://dbpedia.org/resource/Ramon_Magsaysay_Award> . ?x onto:stateOfOrigin ?uri . ?x rdf:type onto:Person}
lcquad
Name the office holder with predecessor as Samuel W. McCall and office in Massachusetts House of Representatives?
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:predecessor <http://dbpedia.org/resource/Samuel_W._McCall> . ?uri prop:office <http://dbpedia.org/resource/Massachusetts_House_of_Repres...
lcquad
In which city is the sister station of WCSE-LP located ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/WCSE-LP> prop:sisterStations ?x . ?x prop:city ?uri . }
lcquad
What are some devices whose manufacturers are in taiwan?
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:locationCountry <http://dbpedia.org/resource/Taiwan> . ?uri onto:manufacturer ?x . ?uri rdf:type onto:Device}
lcquad
Which military commander fought his battle at Fort Gadsen?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:battle <http://dbpedia.org/resource/Fort_Gadsden> . ?uri rdf:type onto:OfficeHolder}
lcquad
Which spanish novel was published by Francisco de Robles?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:publisher res:Francisco_de_Robles }
lcquad
What are some bands originating in London?
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/London> . ?uri rdf:type onto:Band}
lcquad
Which educational institution has Kaplan, Inc as it's affiliation?
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 rdf:type onto:EducationalInstitution}
lcquad
Who is associated to Publius Servilius Vatia Isauricus and Marcus Calpurnius Bibulus?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:associate <http://dbpedia.org/resource/Publius_Servilius_Vatia_Isauricus_(consul_48_BC)> . ?uri onto:associate <http://dbpedia.org/resource/Marcus_Calpurnius_Bibulus> . }
lcquad
In what group Joe Jonas and Kevin Jonas were previously 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 { ?uri prop:pastMembers <http://dbpedia.org/resource/Joe_Jonas> . ?uri prop:pastMembers <http://dbpedia.org/resource/Kevin_Jonas> . ?uri rdf:type o...
lcquad
Who are relatives of Ozzy Osbourne and Kelly Osbourne?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:relatives res:Ozzy_Osbourne . ?uri prop:relatives res:Kelly_Osbourne . }
lcquad
Naval station mobile and naval support activity, naples are under which branch of Us military?
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/Naval_Station_Mobile> onto:type ?uri. <http://dbpedia.org/resource/Naval_Support_Activity_Naples> onto:type ?uri . ?uri rdf:type onto:MilitaryUnit}
lcquad
Is Ian Thorpe the bronze medalist of Swimming at the 2004 Summer Olympics Men's 100 metre freestyle?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/Swimming_at_the_2004_Summer_Olympics_–_Men's_100_metre_freestyle> onto:bronzeMedalist <http://dbpedia.org/resource/Ian_Thorpe> }
lcquad
Where did john o conner study?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/John_O'Connor_(archbishop_of_New_York)> onto:almaMater ?uri }
lcquad
List the producers who produced movies starring Michael Jackson.
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:starring <http://dbpedia.org/resource/Michael_Jackson> . ?x prop:producer ?uri . ?x rdf:type onto:Film}
lcquad
List the name of the soccer clubs whose chairman is Joan Laporta.
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:chairman <http://dbpedia.org/resource/Joan_Laporta> . ?x prop:name ?uri . ?x rdf:type onto:SoccerClub}
lcquad
Name the major shrine of Bogumilus?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Bogumilus onto:majorShrine ?uri }
lcquad
What is the political party of the Satish Kumar Sharma which is also the political party of Manthena Venkata Raju?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Satish_Kumar_Sharma onto:party ?uri. res:Manthena_Venkata_Raju onto:party ?uri . }
lcquad
What are the other launch site of the rockets which also have been launched from Cape Canaveral Air Force Station Launch Complex 5 ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:launchSite <http://dbpedia.org/resource/Cape_Canaveral_Air_Force_Station_Launch_Complex_5> . ?x onto:launchSite ?uri . ?x rdf:type onto:Rocket}
lcquad
Name the TV shows related to Babylon 5: The Lost Tales and is aired on Prime TIme Entertainment Networks ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:related <http://dbpedia.org/resource/Babylon_5:_The_Lost_Tales> . ?uri onto:network <http://dbpedia.org/resource/Prime_Time_Entertainment_Network> . ?uri rdf:type onto:TelevisionS...
lcquad
Who is the person whose alma mater is Harvard-Westlake School?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:almaMater <http://dbpedia.org/resource/Harvard-Westlake_School> . ?uri rdf:type onto:Person}
lcquad
How many different religions have economists followed?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:profession <http://dbpedia.org/resource/Economist> . ?x onto:religion ?uri . }
lcquad
Martin Ferguson and Mike Kelly served under which aussie PM?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Martin_Ferguson> prop:primeminister ?uri. <http://dbpedia.org/resource/Mike_Kelly_(Australian_politician)> prop:primeminister ?uri . }
lcquad
Which royalty's spouse is Ptolemy XIV of Egypt?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:spouse <http://dbpedia.org/resource/Ptolemy_XIV_of_Egypt> . ?uri rdf:type onto:Royalty}
lcquad
What artists are associated with the members of the Catalin Maruta?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:associatedBand res:Cătălin_Măruță . ?x onto:associatedMusicalArtist ?uri . }
lcquad
In which city are buildings by Solon Spencer Beman found?
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:architect <http://dbpedia.org/resource/Solon_Spencer_Beman> . ?x prop:locationTown ?uri . ?x rdf:type onto:Building}
lcquad
Danny Felice, the Gibraltarian guitarist is from which city?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Danny_Felice onto:hometown ?uri }
lcquad
Name the tenants of O.co Coliseum ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:O.co_Coliseum onto:tenant ?uri }
lcquad
Name the rivers originating from an English speaking nation?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:officialLanguage <http://dbpedia.org/resource/English_language> . ?uri onto:sourceCountry ?x . ?uri rdf:type onto:River}
lcquad
Count the total awards won by the writer who has won Goethe Prize ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:awards <http://dbpedia.org/resource/Goethe_Prize> . ?x prop:awards ?uri }
lcquad
In how many nations can I find people related to the feminist movement?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:movement <http://dbpedia.org/resource/Feminism> . ?x onto:nationality ?uri . }
lcquad
What team had the debut of Marv Throneberry and Curt Coleman?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Marv_Throneberry prop:debutteam ?uri. res:Curt_Coleman onto:debutTeam ?uri}
lcquad
Name the sports played by PATTS College of Aeronautics?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:PATTS_College_of_Aeronautics prop:athletics ?uri }
lcquad
Which home town of Cline Buckens is the place of Death of Richard heron ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Céline_Buckens onto:hometown ?uri. res:Richard_Heron prop:placeOfDeath ?uri}
lcquad
Who wrote the musical based on Mary Poppins?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:basedOn <http://dbpedia.org/resource/Mary_Poppins> . ?x onto:author ?uri . ?x rdf:type onto:Musical}
lcquad
With whom is Heinz Kokott a relative to who also served Nazi Army?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Heinz_Kokott onto:relation ?uri }
lcquad
Who is the former partner of the figure skater which was the former partner of Brynn Carman ?
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/Brynn_Carman> onto:formerPartner ?x . ?x onto:formerPartner ?uri . ?x rdf:type onto:FigureSkater}
lcquad
Name the company which produces Marionette and has key person as Edwin catmull ?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri prop:products <http://dbpedia.org/resource/Marionette_(software)> . ?uri prop:keyPeople <http://dbpedia.org/resource/Edwin_Catmull> . ?uri r...
lcquad
Paul Morphy compiled journals of which field?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:editor res:Paul_Morphy . ?x prop:discipline ?uri . }
lcquad
Name the person whose relation is Dee Dee Warwick?
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/Dee_Dee_Warwick> . ?uri rdf:type onto:Person}
lcquad
Give me some series whose network's owning company is Warner Bros. Television?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:owningCompany <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri onto:network ?x . ?uri rdf:type onto:TelevisionShow}
lcquad
In which region was political figure Wayne Allard elected?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Wayne_Allard onto:region ?uri }
lcquad
What awards have the narrator of the Cries and Whispers won?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Cries_and_Whispers onto:narrator ?x . ?x prop:awards ?uri . }
lcquad
How many ships belong to states which has Unitary as government type ?
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:governmentType <http://dbpedia.org/resource/Unitary_state> . ?uri onto:country ?x . ?uri rdf:type onto:Ship}
lcquad
Who designed Oddamavadi Bridge?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Oddamavadi_Bridge prop:designer ?uri }
lcquad
Count all the band members who are in Bands which have signed up with Entertainment One Music?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:label <http://dbpedia.org/resource/Entertainment_One_Music> . ?x onto:bandMember ?uri . }
lcquad
What are the television shows whose company is European Broadcasting Union?
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/European_Broadcasting_Union> . ?uri rdf:type onto:TelevisionShow}
lcquad
Who are the founders of Iskra ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Iskra onto:foundedBy ?uri }
lcquad
To which families does the Koolakamba belong ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Koolakamba onto:family ?uri }
lcquad
Graduates of Somerville College have been in how many political parties?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:almaMater <http://dbpedia.org/resource/Somerville_College,_Oxford> . ?x onto:party ?uri . }
lcquad
Was George Washington on the rank of general?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/George_Washington> onto:militaryRank <http://dbpedia.org/resource/General_(United_States)> }
lcquad
List all the developers of the Oddworld series?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:series res:Oddworld . ?x onto:developer ?uri . }
lcquad
Was the Incredibles released before Finding Nemo?
PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { <http://dbpedia.org/resource/The_Incredibles_(film_score)> onto:previousWork <http://dbpedia.org/resource/Finding_Nemo> }
lcquad
Who is renowned for Ae Fond Kiss and poem of Halloween ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:notableworks <http://dbpedia.org/resource/Ae_Fond_Kiss> . ?uri prop:notableworks <http://dbpedia.org/resource/Halloween_(poem)> . }
lcquad
Which county seats are in the district where I can find the Hylebos Creek?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Hylebos_Creek onto:district ?x . ?x onto:countySeat ?uri . }
lcquad
Which american football player's current team is Michigan Wolverines and former team was Baltimore Ravens ?
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:currentteam <http://dbpedia.org/resource/Michigan_Wolverines> . ?uri onto:formerTeam <http://dbpedia.org/resource/1998_Baltimore_Ravens_...
lcquad
Which TV show distributed by Warner Bros. has Christopher Franke as one of the artist ?
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:distributor <http://dbpedia.org/resource/Warner_Bros._Television> . ?uri prop:artist <http://dbpedia.org/resource/Christopher_Franke> ....
lcquad
Give me a count of all the producers of all the movies whose music was done by James Horner?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:music <http://dbpedia.org/resource/James_Horner> . ?x prop:producer ?uri . }
lcquad
Where did isabelle caro and judson huss both die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Judson_Huss prop:deathPlace ?uri. res:Isabelle_Caro prop:deathPlace ?uri . }
lcquad
List the notable work of David Isaacs (writer)?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/David_Isaacs_(writer)> onto:notableWork ?uri }
lcquad
What is the province of Egypt Nanotechnology Center ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Egypt_Nanotechnology_Center prop:province ?uri }
lcquad
Give me the number of home stadiums of teams managed by John Spencer.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x prop:manager <http://dbpedia.org/resource/John_Spencer_(Scottish_footballer)> . ?x onto:homeStadium ?uri . }
lcquad
How many people are buried in the Winchester Cathedral?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:restingPlace <http://dbpedia.org/resource/Winchester_Cathedral> . }
lcquad
Name the origins of the river with Quich Department as one of the origin ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:origin res:Quiché_Department . ?x onto:origin ?uri . }
lcquad
Who wrote a rose for emily?
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/A_Rose_for_Emily> . ?uri rdf:type onto:Writer}
lcquad
What is the mascot of the Royal Australian Air Force and Austin College?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Royal_Australian_Air_Force prop:mascot ?uri. res:Austin_College prop:mascot ?uri . }
lcquad
What ethnicity do people in British Columbia belong to?
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:residence <http://dbpedia.org/resource/British_Columbia> . ?x onto:ethnicity ?uri . ?x rdf:type onto:Person}
lcquad
Which motion picture stories were edited by Ishir Honda?
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/Ishirō_Honda> . ?uri rdf:type onto:Film}
lcquad
Name the tv series produced by Stephen Ambrose and Erik Bork?
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:producer <http://dbpedia.org/resource/Erik_Bork> . ?uri rdf:type onto:TelevisionShow}
lcquad
Who starred in Awakening and fifety five days at peknig ?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Awakening_(1980_film)> prop:starring ?uri. <http://dbpedia.org/resource/55_Days_at_Peking> onto:starring ?uri . }
lcquad
Which tv series have a score composed by judy hard angelo?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:composer <http://dbpedia.org/resource/Judy_Hart_Angelo> . ?uri rdf:type onto:TelevisionShow}
lcquad
For which other teams have the past Boston Bruins members played?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:formerTeam res:Boston_Bruins . ?x prop:playedFor ?uri . }
lcquad
List the Swedish newspaper headquarted in Stockholm ?
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:language <http://dbpedia.org/resource/Swedish_language> . ?uri prop:headquarters <http://dbpedia.org/resource/Stockholm> . ?uri rdf:typ...
lcquad
Those seasons which have been played in Fort Lauderdale Florida now host their games where?
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:stadium <http://dbpedia.org/resource/Fort_Lauderdale,_Florida> . ?x onto:ground ?uri . ?x rdf:type onto:SoccerClubSeason}
lcquad
Were the 1995 south pacific games hosted in tahiti?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> ASK WHERE { res:1995_South_Pacific_Games prop:hostCity res:Tahiti }
lcquad
Where is the origin of Filbert's Old Time Root Beer ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Filbert's_Old_Time_Root_Beer> onto:origin ?uri }
lcquad
Which largest city of Salsette Island is also the largest city of India ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:India onto:largestCity ?uri. res:Salsette_Island onto:largestCity ?uri . }
lcquad