question stringlengths 9 150 | query stringlengths 63 685 | dataset-id stringclasses 12
values |
|---|---|---|
Give me all writers that won the Nobel Prize in literature. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Writer .
?uri dbo:award res:Nobel_Prize_in_Literature .
} | qald-4 |
What is the official color of the University of Oxford? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?string
WHERE {
res:University_of_Oxford dbo:officialSchoolColour ?string .
} | qald-4 |
Give me all Swedish oceanographers. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:field res:Oceanography .
?uri dbo:birthPlace res:Sweden .
} | qald-4 |
How deep is Lake Placid? | PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?n
WHERE {
<http://dbpedia.org/resource/Lake_Placid_(Texas)> dbo:depth ?n .
} | qald-4 |
Is James Bond married? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
ASK
WHERE {
res:James_Bond dbo:spouse ?uri .
} | qald-4 |
Which spaceflights were launched from Baikonur? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:launchPad res:Baikonur_Cosmodrome .
} | qald-4 |
Give me all actors called Baldwin. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT DISTINCT ?uri
WHERE {
?uri foaf:surname "Baldwin"@en .
{ ?uri dbo:occupation res:Actor . }
UNION
{ ?uri rdf:type dbo:Actor . }
} | qald-4 |
What does CPU stand for? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:abbreviation "CPU"@en .
} | qald-4 |
In which country does the Ganges start? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Ganges dbo:sourceCountry ?uri .
} | qald-5 |
Do Prince Harry and Prince William have the same parents? | PREFIX dbo: <http://dbpedia.org/ontology/>
ASK
WHERE {
<http://dbpedia.org/resource/Prince_William,_Duke_of_Cambridge> dbo:parent ?x .
<http://dbpedia.org/resource/Prince_Harry> dbo:parent ?x .
} | qald-5 |
How many missions does the Soyuz programme have? | PREFIX dbp: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT COUNT(DISTINCT ?uri)
WHERE {
?uri dbp:programme res:Soyuz_programme .
} | qald-5 |
Give me all Danish movies. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Film .
?uri dbo:country res:Denmark .
} | qald-5 |
Is Rita Wilson the wife of Tom Hanks? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
ASK
WHERE {
res:Tom_Hanks dbo:spouse res:Rita_Wilson .
} | qald-5 |
Who was called Frank The Tank? | PREFIX dbp: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri dbp:nickname 'Frank The Tank'@en .
} | qald-5 |
Which movies did Kurosawa direct? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Film .
?uri dbo:director res:Akira_Kurosawa .
} | qald-5 |
Which television shows were created by John Cleese? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:TelevisionShow .
?uri dbo:creator res:John_Cleese .
} | qald-5 |
Which awards did Douglas Hofstadter win? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Douglas_Hofstadter dbo:award ?uri .
} | qald-5 |
Who is the daughter of Robert Kennedy married to? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Robert_F._Kennedy dbo:child ?child .
?child dbo:spouse ?uri .
} | qald-5 |
Who is the owner of Rolls-Royce? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Rolls-Royce_Motors dbo:owner ?uri .
} | qald-5 |
Was the wife of president Lincoln called Mary? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
ASK
WHERE {
res:Abraham_Lincoln dbo:spouse ?spouse .
?spouse rdfs:label ?name .
FILTER(regex(?name,'Mary'))
} | qald-5 |
Who was the 16th president of the United States? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:office 'President of the United States' .
?uri dbo:orderInOffice '16th' .
} | qald-5 |
What is the most frequent cause of death? | PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?x
WHERE {
?uri dbo:deathCause ?x .
}
ORDER BY DESC(COUNT(DISTINCT ?uri))
OFFSET 0 LIMIT 1 | qald-5 |
Which rockets were launched from Baikonur? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Rocket .
?uri dbo:launchSite res:Baikonur_Cosmodrome .
} | qald-5 |
What does IYCM stand for? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:abbreviation 'IYCM' .
} | qald-5 |
Which companies have more than 1 million employees? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX dbp: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Company .
{ ?uri dbo:numberOfEmployees ?n . }
UNION
... | qald-5 |
Give all swimmers that were born in Moscow. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Swimmer .
?uri dbo:birthPlace res:Moscow .
} | qald-5 |
Who was called Rodzilla? | PREFIX dbp: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri dbp:nickname "Rodzilla"@en .
} | qald-5 |
Show me the book that Muhammad Ali wrote. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Book .
?uri dbo:author res:Muhammad_Ali .
} | qald-5 |
How many museums does Paris have? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Museum .
?uri dbo:location res:Paris .
} | qald-5 |
Which city has the most inhabitants? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:City .
?uri dbo:populationTotal ?pop .
}
ORDER BY DESC(?pop)
OFFSET 0 LIMIT 1 | qald-5 |
Which city has the least inhabitants? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:City .
?uri dbo:populationTotal ?pop .
}
ORDER BY ASC(?pop)
OFFSET 0 LIMIT 1 | qald-5 |
Give me all the TV shows with Neil Patrick Harris. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:TelevisionShow .
?uri dbo:starring res:Neil_Patrick_Harris .
} | qald-5 |
Who wrote The Hunger Games? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:The_Hunger_Games dbo:author ?uri .
} | qald-5 |
Show a list of soccer clubs that play in the Bundesliga. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:SoccerClub .
?uri dbo:league res:Bundesliga .
} | qald-5 |
What country is Mount Everest in? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
res:Mount_Everest dbo:locatedInArea ?uri .
?uri rdf:type dbo:Country .
} | qald-5 |
Who is the founder of Penguin Books? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
res:Penguin_Books dbo:founder ?uri .
} | qald-5 |
Which programming languages influenced Javascript? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:ProgrammingLanguage .
?uri dbo:influenced res:JavaScript .
} | qald-5 |
Did Che Guevara have children? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
ASK
WHERE {
res:Che_Guevara dbo:child ?uri .
} | qald-5 |
List all the musicals with music by Elton John. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Musical .
?uri dbo:musicBy res:Elton_John .
} | qald-5 |
Show me all the breweries in Australia. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri ?x
WHERE {
?uri rdf:type dbo:Brewery .
{ ?uri dbo:location res:Australia . }
UNION
{ ?uri dbo:location ?x .
?x dbo:cou... | qald-5 |
When was the Titanic completed? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?date
WHERE {
res:RMS_Titanic dbo:completionDate ?date .
} | qald-5 |
How much did Pulp Fiction cost? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?n
WHERE {
res:Pulp_Fiction dbo:budget ?n .
} | qald-5 |
How many airlines are there? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT COUNT(DISTINCT ?uri)
WHERE {
?uri rdf:type dbo:Airline .
} | qald-5 |
Who played Agent Smith in Matrix? | PREFIX dbp: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Agent_Smith dbp:portrayer ?uri .
} | qald-5 |
How much carbs does peanut butter have? | PREFIX dbp: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?carbs
WHERE {
res:Peanut_butter dbp:carbs ?carbs .
} | qald-5 |
Which book has the most pages? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Book .
?uri dbo:numberOfPages ?n .
}
ORDER BY DESC(?n)
OFFSET 0 LIMIT 1 | qald-5 |
Which bridges cross the Seine? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Bridge .
?uri dbo:crosses res:Seine .
} | qald-5 |
Who is the mayor of the capital of French Polynesia? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:French_Polynesia dbo:capital ?x .
?x dbo:mayor ?uri .
} | qald-5 |
When did Dracula's creator die? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?date
WHERE {
res:Count_Dracula dbo:creator ?x .
?x dbo:deathDate ?date .
} | qald-5 |
What is the location of the Houses of Parliament? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?uri
WHERE {
res:Palace_of_Westminster dbo:location ?uri .
} | qald-5 |
Show me all English Gothic buildings in Kent. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?uri
WHERE {
?uri rdf:type dbo:Building .
?uri dbo:architecturalStyle res:English_Gothic_architecture .
?uri dbo:location res:Kent .
} | qald-5 |
Who was the pope that founded the Vatican Television? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?uri
WHERE {
?uri rdf:type dbo:Pope .
res:Vatican_Television_Center dbo:foundedBy ?uri .
} | qald-5 |
What airlines are part of the SkyTeam alliance? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbp: <http://dbpedia.org/property/>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Airline .
{ ?uri dbp:alliance res:SkyTeam . }
UNION
... | qald-5 |
What is the total population of Melbourne, Florida? | PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT ?uri
WHERE {
<http://dbpedia.org/resource/Melbourne,_Florida> dbo:populationTotal ?uri .
} | qald-5 |
Which airports does Air China serve? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Air_China dbo:targetAirport ?uri .
} | qald-5 |
In which year was Rachel Stevens born? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Rachel_Stevens dbo:birthYear ?uri .
} | qald-5 |
Where was JFK assassinated? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:John_F._Kennedy dbo:deathPlace ?uri .
} | qald-5 |
How many politicians graduated from Columbia University? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT COUNT(?uri)
WHERE {
?uri dbo:profession res:Politician .
?uri dbo:almaMater res:Columbia_University .
} | qald-5 |
Which scientist is known for the Manhattan Project and the Nobel Peace Prize? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:knownFor res:Manhattan_Project .
?uri rdf:type dbo:Scientist .
?uri dbo:knownFor res:Nobel_Peace_Prize .
} | qald-5 |
What is the highest volcano in Africa? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX yago: <http://dbpedia.org/class/yago/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Volcano .
?uri dbo:locatedInArea ?area .
?area rd... | qald-5 |
Which beer originated in Ireland? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbp: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri dbp:type res:Beer .
?uri dbp:origin "Ireland"@en .
} | qald-5 |
What are the specialities of the UNC Health Care? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbp: <http://dbpedia.org/property/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
res:UNC_Health_Care dbp:speciality ?uri .
} | qald-5 |
Who is the owner of Facebook? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Facebook dbo:foundedBy ?uri .
} | qald-5 |
From which region is the Melon de Bourgogne? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Melon_de_Bourgogne dbo:wineRegion ?uri .
} | qald-5 |
Who was influenced by Socrates? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:influencedBy res:Socrates .
} | qald-5 |
Who was president of Pakistan in 1978? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbp: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri dbp:title res:President_of_Pakistan .
?uri dbp:years 1978 .
} | qald-5 |
Give me English actors starring in Lovesick. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX yago: <http://dbpedia.org/class/yago/>
SELECT DISTINCT ?uri
WHERE {
res:Lovesick dbo:starring ?uri .
{ ?uri dbo:birthPlace res:England . }
UNION
{ ?uri rdf:type yago:EnglishFilmActors . }
} | qald-5 |
Give me all types of eating disorders. | PREFIX yago: <http://dbpedia.org/class/yago/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type yago:EatingDisorders .
} | qald-5 |
Who was married to president Chirac? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Jacques_Chirac dbo:spouse ?uri .
} | qald-5 |
What is the largest metropolitan area in Washington state? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbp: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
<http://dbpedia.org/resource/Washington_(state)> dbp:largestmetro ?uri .
} | qald-5 |
Where in France is sparkling wine produced? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:wineProduced res:Sparkling_wine .
?uri dbo:location res:France .
} | qald-5 |
Where did Hillel Slovak die? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Hillel_Slovak dbo:deathPlace ?uri .
} | qald-5 |
What is the timezone in San Pedro de Atacama? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/timezone/>
SELECT DISTINCT ?uri
WHERE {
res:San_Pedro_de_Atacama dbo:timezone ?uri .
} | qald-5 |
In which city does the Chile Route 68 end? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Chile_Route_68 dbo:routeEnd ?uri .
} | qald-5 |
Who was vice president under the president who authorized atomic weapons against Japan during World War II? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?x text:"authorized" text:"atomic weapons against Japan" .
?x dbo:vicePresident ?uri .
} | qald-5 |
In which town was the assassin of Martin Luther King born? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX dbp: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Martin_Luther_King,_Jr. text:"assassin" ?x .
?x dbo:birthPlace ?uri .
?uri dbp:districtType "Township"@en .
} | qald-5 |
Which anti-apartheid activist was born in Mvezo? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type text:"anti-apartheid activist" .
?uri dbo:birthPlace res:Mvezo .
} | qald-5 |
How many Golden Globe awards did the daughter of Henry Fonda win? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT ?n
WHERE {
?uri dbo:parent res:Henry_Fonda .
?uri text:"number of Golden Globe awards" ?n .
} | qald-5 |
How old was Steve Jobs' sister when she first met him? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT ?n
WHERE {
res:Steve_Jobs dbo:relative ?uri .
?uri text:"first met him when she was" ?n .
} | qald-5 |
Which building owned by the Bank of America was featured in the TV series MegaStructures? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT ?uri
WHERE {
?uri rdf:type dbo:Building.
?uri dbo:owner res:Bank_of_America .
?uri text:"featured in" text:"MegaStructures" .
} | qald-5 |
List all the battles commanded by the lover of Cleopatra. | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?x text:"lover" text:"Cleopatra".
?uri dbo:commander ?x .
} | qald-5 |
Gaborone is the capital of which country member of the African Union? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri text:"member of" text:"African Union" .
?uri dbo:capital res:Gaborone .
} | qald-5 |
When was the composer of the opera Madame Butterfly born? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?date
WHERE {
res:Madama_Butterfly text:"composer" ?x .
?x dbo:birthDate ?date .
} | qald-5 |
How old is James Bond in the latest Bond book by William Boyd? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:James_Bond dbo:lastAppearance ?x .
?x dbo:author <http://dbpedia.org/resource/William_Boyd_(writer)> .
?x text:"age of Bond" ?n .
} | qald-5 |
What eating disorder is characterized by an appetite for substances such as clay and sand? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX yago: <http://dbpedia.org/class/yago/>
SELECT ?uri WHERE
{
?uri rdf:type yago:EatingDisorders .
?uri text:"characterized by" "appetite for clay and sand" .
} | qald-5 |
What is the native city of Hollywood's highest-paid actress? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?x text:"is" text:"Hollywood's highest-paid actress" .
?x dbo:birthPlace ?uri .
?x rdf:type dbo:City .
} | qald-5 |
In which city does the former main presenter of the Xposé girls live? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?x text:"is" text:"former presenter of the Xposé girls" .
?x dbo:residence ?uri . | qald-5 |
Who is the front man of the band that wrote Coffee & TV? | PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
<http://dbpedia.org/page/Coffee_&_TV> dbo:musicalArtist ?x .
?x dbo:bandMember ?uri .
?uri text:"is" text:"frontman" .
} | qald-5 |
Which Chinese-speaking country is a former Portguese colony? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Chinese_language dbo:spokenIn ?uri .
?uri text:"is" text:"former Portuguese colony" .
} | qald-5 |
What is the largest city in the county in which Faulkner spent most of his life? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:William_Faulkner text:"spent most of his life in" ?x .
?x dbo:largestCity ?uri .
} | qald-5 |
In which year did the Hungarian-American actor called "The King of Horror" make his first film? | PREFIX dbo: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?year
WHERE {
?x rdf:type dbo:Actor .
?x dbo:alias "The King Of Horror" .
?x text:"made his first movie in" ?year . | qald-5 |
Under which pseudonym did Charles Dickens publish some of his books? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?s
WHERE {
?x dbo:author res:Charles_Dickens .
?x text:"published under pseudonyn" ?s .
} | qald-5 |
A landmark of which city is the home of the Mona Lisa? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Mona_Lisa dbo:museum ?x .
?x text:"landmark in" ?uri .
} | qald-5 |
Give me all ESA astronauts. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Astronaut .
?uri dbo:type res:European_Space_Agency .
} | qald-5 |
Give me all Swedish holidays. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Holiday .
?uri dbo:country res:Sweden .
} | qald-5 |
Who is the youngest Pulitzer Prize winner? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri dbo:award res:Pulitzer_Prize .
?uri dbo:birthDate ?d .
}
ORDER BY DESC(?d)
OFFSET 0 LIMIT 1 | qald-5 |
Which animals are critically endangered? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:Animal .
?uri dbo:conservationStatus 'CR' .
} | qald-5 |
Which soccer players were born on Malta? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:SoccerPlayer .
?uri dbo:birthPlace res:Malta .
} | qald-5 |
Did Arnold Schwarzenegger attend a university? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
ASK
WHERE {
res:Arnold_Schwarzenegger dbo:almaMater ?x .
?x rdf:type dbo:University .
} | qald-5 |
Which programming languages were influenced by Perl? | PREFIX dbo: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type dbo:ProgrammingLanguage .
{ ?uri dbo:influencedBy res:Perl . }
UNION
{ res:Perl dbo:influenced ?uri . }
} | qald-5 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.