question
stringlengths
9
150
query
stringlengths
109
692
dataset-id
stringclasses
12 values
Which writers studied in Istanbul?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Writer . { ?uri onto:almaMater ?x . } UNION { ?uri onto:education ?x . } { ?x onto:city res:Istanbul . } UNION { ?x prop:city res:Istanbul . } }
qald-6
Who is the mayor of Paris?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Paris onto:mayor ?uri . }
qald-6
What is the full name of Prince Charles?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?s WHERE { <http://dbpedia.org/resource/Charles,_Prince_of_Wales> onto:alias ?s . }
qald-6
What is the longest river in China?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:River . ?uri onto:country <http://dbpedia.org/resource/China> . ?uri prop:length ?l . } ORDER BY DESC(?l) OFFSET 0 LIMIT 1
qald-6
Who discovered Ceres?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Ceres_(dwarf_planet)> onto:discoverer ?uri . }
qald-6
When did princess Diana die?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?d WHERE { <http://dbpedia.org/resource/Diana,_Princess_of_Wales> onto:deathDate ?d . }
qald-6
Who is the host of the BBC Wildlife Specials?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:BBC_Wildlife_Specials onto:presenter ?uri . }
qald-6
How many moons does Mars have?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?n WHERE { res:Mars prop:satellites ?n . }
qald-6
What was the first Queen album?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Album . ?uri onto:artist <http://dbpedia.org/resource/Queen_(band)> . ?uri onto:releaseDate ?d . } ORDER BY ASC(?d) OFFSET 0 LIMIT 1
qald-6
Did Elvis Presley have children?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ASK WHERE { res:Elvis_Presley onto:child ?uri . }
qald-6
Give me a list of all Canadians that reside in the U.S.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:birthPlace res:Canada . ?uri onto:residence res:United_States . }
qald-6
Where is Syngman Rhee buried?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Syngman_Rhee onto:restingPlace ?uri . }
qald-6
In which countries do people speak Japanese?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Country . ?uri onto:language res:Japanese_language . }
qald-6
Who is the king of the Netherlands?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Netherlands onto:leader ?uri . ?uri a onto:Royalty . }
qald-6
When did the Dodo become extinct?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?s WHERE { res:Dodo prop:extinct ?s . }
qald-6
Show me all Czech movies.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Film . ?uri onto:country res:Czech_Republic . }
qald-6
Which rivers flow into the North Sea?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:River . ?uri onto:riverMouth res:North_Sea . }
qald-6
When did Operation Overlord commence?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?d WHERE { res:Operation_Overlord onto:date ?d . }
qald-6
Where do the Red Sox play?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Boston_Red_Sox prop:ballpark ?uri . }
qald-6
In which time zone is Rome?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Rome onto:timeZone ?uri . }
qald-6
Give me a list of all critically endangered birds.
PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri ?p WHERE { ?uri a onto:Bird . { ?uri onto:conservationStatus 'CR'^^<http://www.w3.org/2001/XMLSchema#string> . } UNION { ?uri dct:subject dbc:Critically_endangered...
qald-6
How much did the Lego Movie cost?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { res:The_Lego_Movie onto:budget ?n . }
qald-6
What was the original occupation of the inventor of Lego?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Lego prop:inventor ?x . ?x prop:occupation ?uri . }
qald-6
Which countries have more than ten volcanoes?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x a onto:Volcano . ?x onto:locatedInArea ?uri . ?uri a onto:Country . } GROUP BY ?uri HAVING (COUNT(?x) > 10)
qald-6
Show me all U.S. states.
PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri WHERE { ?uri a yago:StatesOfTheUnitedStates . }
qald-6
Who wrote the Game of Thrones theme?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Game_of_Thrones onto:composer ?uri. }
qald-6
How many calories does a baguette have?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { res:Baguette onto:approximateCalories ?n. }
qald-6
Which companies produce hovercrafts?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Company . ?uri onto:product res:Hovercraft . }
qald-6
How many emperors did China have?
PREFIX prop: <http://dbpedia.org/property/> SELECT COUNT(DISTINCT ?uri) WHERE { ?uri prop:title <http://dbpedia.org/resource/Emperor_of_China> . }
qald-6
Show me hiking trails in the Grand Canyon where there's no danger of flash floods.
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:trailheads res:Grand_Canyon . FILTER NOT EXISTS { ?uri prop:hazards res:Flash_flood . } }
qald-6
In which ancient empire could you pay with cocoa beans?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:currency res:Cocoa_bean . }
qald-6
How did Michael Jackson die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?s WHERE { res:Michael_Jackson prop:deathCause ?s . }
qald-6
Which space probes were sent into orbit around the sun?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:satelliteOf res:Sun . }
qald-6
When was Coca Cola invented?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?n WHERE { <http://dbpedia.org/resource/Coca-Cola> prop:introduced ?n . }
qald-6
What is the biggest stadium in Spain?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Stadium . ?uri onto:location <http://dbpedia.org/resource/Spain> . ?uri onto:seatingCapacity ?n . } ORDER BY DESC(?n) OFFSET 0 LIMIT 1
qald-6
On which day is Columbus Day?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?d WHERE { res:Columbus_Day prop:date ?d . }
qald-6
How short is the shortest active NBA player?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?n WHERE { ?x a onto:BasketballPlayer . ?x onto:league <http://dbpedia.org/resource/National_Basketball_Association> . ?x onto:height ?n . FILTER NOT EXISTS { ?x onto:activeYearsEndYear ?d . } } ORDER BY ASC(?n) OFFSET 0 LIMIT 1
qald-6
Whom did Lance Bass marry?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:spouse res:Lance_Bass . }
qald-6
What form of government does Russia have?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Russia onto:governmentType ?uri . }
qald-6
What movies does Jesse Eisenberg play in?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Film . ?uri onto:starring res:Jesse_Eisenberg . }
qald-6
What color expresses loyalty?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:connotation res:Loyalty . }
qald-6
Show me all museums in London.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Museum . ?uri onto:location res:London . }
qald-6
Give me all South American countries.
PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri WHERE { ?uri a yago:SouthAmericanCountries . }
qald-6
Who is the coach of Ankara's ice hockey team?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:city res:Ankara . ?x onto:league res:Turkish_Ice_Hockey_First_League . ?x onto:coach ?uri . }
qald-6
Who is the son of Sonny and Cher?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:parent res:Cher . ?uri onto:parent res:Sonny_Bono . }
qald-6
What are the five boroughs of New York?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:governmentType <http://dbpedia.org/resource/Borough_(New_York_City)> . }
qald-6
Show me Hemingway's autobiography.
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:author res:Ernest_Hemingway . ?uri onto:literaryGenre res:Autobiography . }
qald-6
What kind of music did Lou Reed play?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Lou_Reed onto:genre ?uri . }
qald-6
In which city does Sylvester Stallone live?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:City . res:Sylvester_Stallone onto:residence ?uri . }
qald-6
Who was Vincent van Gogh inspired by?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri onto:influenced res:Vincent_van_Gogh . }
qald-6
What are the names of the Teenage Mutant Ninja Turtles?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?s WHERE { res:Teenage_Mutant_Ninja_Turtles prop:members ?x . ?x prop:characterName ?s . }
qald-6
What are the zodiac signs?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?uri prop:element res:Astrological_sign . }
qald-6
What languages do they speak in Pakistan?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pakistan onto:language ?uri . }
qald-6
Who became president after JFK died?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:John_F._Kennedy prop:presidentEnd ?x . ?uri prop:presidentStart ?x . }
qald-6
In what city is the Heineken brewery?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Heineken onto:manufacturer ?x . ?x onto:locationCity ?uri . }
qald-6
What is Elon Musk famous for?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Elon_Musk onto:knownFor ?uri . }
qald-6
What is Batman's real name?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?s WHERE { res:Batman prop:alterEgo ?s . }
qald-6
Are Taiko some kind of Japanese musical instrument?
PREFIX res: <http://dbpedia.org/resource/> PREFIX yago: <http://dbpedia.org/class/yago/> ASK WHERE { res:Taiko a yago:WikicatJapaneseMusicalInstruments }
qald-9
How many students does the Free University of Amsterdam have?
PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT DISTINCT ?num WHERE { res:Vrije_Universiteit_Amsterdam onto:numberOfStudents ?num }
qald-9
How many James Bond movies do exist?
PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX dct: <http://purl.org/dc/terms/> SELECT (COUNT(DISTINCT ?uri) AS ?c) WHERE { ?uri dct:subject dbc:James_Bond_films }
qald-9
What languages are spoken in Pakistan?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pakistan onto:language ?uri }
qald-9
What is the name of the university where Obama's wife studied?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?s WHERE { res:Barack_Obama onto:spouse ?x . ?x onto:almaMater ?s }
qald-9
In which city is the headquarter of Air China?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> SELECT DISTINCT ?uri WHERE { res:Air_China onto:headquarter ?uri . ?uri a yago:City108524735 }
qald-9
Give me all libraries established before 1400.
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?uri a onto:Library ; prop:established ?year FILTER ( ?year < 1400 ) }
qald-9
How many movies did Stanley Kubrick direct?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE {?uri onto:director <http://dbpedia.org/resource/Stanley_Kubrick> . }
lcquad
Which city's foundeer is John Forbes?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:founder <http://dbpedia.org/resource/John_Forbes_(British_Army_officer)> . ?uri rdf:type onto:City}
lcquad
What is the river whose mouth is in deadsea?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:riverMouth <http://dbpedia.org/resource/Dead_Sea> . ?uri rdf:type onto:River}
lcquad
What is the allegiance of John Kotelawala ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:John_Kotelawala prop:allegiance ?uri }
lcquad
How many races have the horses bred by Jacques Van't Hart participated in?
PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:breeder <http://dbpedia.org/resource/Jacques_Van't_Hart> . ?x prop:race ?uri . }
lcquad
What is the incumbent of the Al Gore presidential campaign, 2000 and also the president of the Ann Lewis ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Al_Gore_presidential_campaign,_2000> onto:incumbent ?uri. <http://dbpedia.org/resource/Ann_Lewis> onto:president ?uri}
lcquad
What is the region of Tom Perriello ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Tom_Perriello onto:region ?uri }
lcquad
What layout can be found in cars similar to the Subaru Outback?
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:related <http://dbpedia.org/resource/Subaru_Outback> . ?x onto:layout ?uri . ?x rdf:type onto:Automobile}
lcquad
Starwood operates in which places?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:operator res:Starwood_Hotels_and_Resorts_Worldwide . ?x prop:address ?uri . }
lcquad
Name the mascot of Austin College ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Austin_College prop:mascot ?uri }
lcquad
What was the university of the rugby player who coached the Stanford rugby teams during 1906-1917?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:1906–17_Stanford_rugby_teams prop:headcoach ?x . ?x onto:university ?uri . }
lcquad
How many people live in Wilton, Connecticut?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT COUNT(?uri) WHERE {?uri prop:residence <http://dbpedia.org/resource/Wilton,_Connecticut> . }
lcquad
What awards did the film director of The Haunted House win ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Haunted_House_(1929_film)> onto:director ?x . ?x onto:award ?uri . }
lcquad
Name the origin of Henry Cluney ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Henry_Cluney prop:origin ?uri }
lcquad
List the things for which people of New Orleans are famous for?
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:placeOfBirth <http://dbpedia.org/resource/New_Orleans> . ?x prop:knownFor ?uri . ?x rdf:type onto:Person}
lcquad
What sports are played in schools in the capital region?
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:region <http://dbpedia.org/resource/Capital_region> . ?x onto:sport ?uri . ?x rdf:type onto:School}
lcquad
What company brought Riddim Ribbon to the market, and developed the batch monitor?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Batch_Monitor prop:developer ?uri. res:Riddim_Ribbon_feat._The_Black_Eyed_Peas prop:distributor ?uri}
lcquad
In which part of the world can i find Xynisteri and Mavro?
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Xynisteri onto:origin ?uri. res:Mavro onto:origin ?uri . }
lcquad
which awards have been given to people who fought in the Battle of France?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { ?x onto:battle <http://dbpedia.org/resource/Battle_of_France> . ?x onto:award ?uri . ?x rdf:type onto:Person}
lcquad
Name the resting place of Charles Edward Magoon ?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { res:Charles_Edward_Magoon prop:restingplace ?uri }
lcquad
Who built the stadium which was rented for the 2013 Copa Centroamericana ?
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_Copa_Centroamericana> . ?x onto:builder ?uri . ?x rdf:type onto:Stadium}
lcquad
Who was the silver medalist of Gymnastics at the 2008 Summer Olympics Women's artistic individual all-around ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Gymnastics_at_the_2008_Summer_Olympics_–_Women's_artistic_individual_all-around> onto:silverMedalist ?uri }
lcquad
what are some common surnames of female people?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE {?uri prop:gender res:Female }
lcquad
Which company owns the manufacturer of the Edsel Ranger?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { ?x prop:products res:Edsel_Ranger . ?x prop:parent ?uri . }
lcquad
List the total number of board members who share board with Creative commons ?
PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT COUNT(?uri) WHERE { ?x onto:board <http://dbpedia.org/resource/Creative_Commons> . ?x onto:board ?uri }
lcquad
Who is the leader of United States House of Representatives elections, 1788 and 1789 ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/United_States_House_of_Representatives_elections,_1788_and_1789> prop:leader ?uri }
lcquad
The fugitive Kind and the Notebook of Trigorin is written by what author?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:The_Fugitive_Kind prop:writer ?uri. res:The_Notebook_of_Trigorin onto:author ?uri . }
lcquad
Name the mountain whose range is Sierra Nevada (U.S.) and parent mountain peak is Nevado de Toluca?
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE {?uri onto:mountainRange <http://dbpedia.org/resource/Sierra_Nevada_(U.S.)> . ?uri onto:parentMountainPeak <http://dbpedia.org/resource/Nevado_de_Toluca> . ?uri rdf:type onto:Mountain}
lcquad
Where did the designer of Monument to Salavat Yulaev die?
PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Monument_to_Salavat_Yulaev onto:designer ?x . ?x prop:placeOfDeath ?uri . }
lcquad
How many mammals are in the Chordate phylum?
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:phylum <http://dbpedia.org/resource/Chordate> . ?uri rdf:type onto:Mammal}
lcquad
List the battles fought by Roh Tae-woo ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/Roh_Tae-woo> prop:battles ?uri }
lcquad
Which genre of books are published by Random 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 { ?x prop:publisher <http://dbpedia.org/resource/Random_House> . ?x prop:subject ?uri . ?x rdf:type onto:Book}
lcquad
Which famous political figure appointed william cushing, and also founded Pittsburgh>
PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Pittsburgh onto:founder ?uri. res:William_Cushing onto:appointer ?uri}
lcquad
Which newspapers are owned by companies which are under Rolv Erik Ryssdal?
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:keyPerson <http://dbpedia.org/resource/Rolv_Erik_Ryssdal> . ?uri prop:owners ?x . ?uri rdf:type onto:Newspaper}
lcquad
Which series has an episode called The lost special and also a character named Sherlock Holmes ?
PREFIX prop: <http://dbpedia.org/property/> SELECT DISTINCT ?uri WHERE { <http://dbpedia.org/resource/The_Lost_Special> prop:series ?uri. <http://dbpedia.org/resource/Sherlock_Holmes_(play)> prop:characters ?uri}
lcquad
What are some Louisiana based models known for?
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:placeOfBirth <http://dbpedia.org/resource/Louisiana> . ?x prop:knownFor ?uri . ?x rdf:type onto:Model}
lcquad