question stringlengths 9 150 | query stringlengths 109 692 | dataset-id stringclasses 12
values |
|---|---|---|
Who killed John Lennon? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Person.
?uri prop:conviction res:Death_of_John_Lennon.
} | qald-5 |
Which frequent flyer program has the most airlines? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX yago: <http://dbpedia.org/class/yago/>
SELECT ?uri
WHERE {
?airline rdf:type onto:Airline.
?airline prop:frequentFlyer ?uri.
?uri rd... | qald-5 |
In which city is Air China headquartered? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX yago: <http://dbpedia.org/class/yago/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Air_China onto:headquarter ?uri .
?uri rdf:type yago:City108524735 .
} | qald-5 |
Which artists were born on the same date as Rachel Stevens? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Artist.
res:Rachel_Stevens prop:dateOfBirth ?date .
?uri prop:dateOfBirth ?date .
} | qald-5 |
How many scientists graduated from an Ivy League university? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT count (?uri)
WHERE {
?uri rdf:type onto:Scientist .
?uri onto:almaMater ?university .
?university onto:affiliation res:Ivy_League .
} | qald-5 |
Which types of grapes grow in Oregon? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Oregon_wine onto:growingGrape ?uri .
} | qald-5 |
Who is starring in Spanish movies produced by Benicio del Toro? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?film rdf:type onto:Film .
?film onto:country res:Spain .
?film onto:producer res:Ben... | qald-5 |
Who is the manager of Real Madrid? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
<http://dbpedia.org/resource/Real_Madrid_C.F.> onto:manager ?uri .
} | qald-5 |
Give me the currency of China. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:China onto:currency ?uri .
} | qald-5 |
Which movies starring Brad Pitt were directed by Guy Ritchie? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Film .
?uri onto:starring res:Brad_Pitt .
?uri onto:director res:Guy_Ritchie .
} | qald-5 |
How many companies were founded by the founder of Facebook? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT COUNT(?c)
WHERE {
res:Facebook onto:foundedBy ?uri .
?c onto:foundedBy ?uri .
} | qald-5 |
How many companies were founded in the same year as Google? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT COUNT(DISTINCT ?c)
WHERE {
?c rdf:type onto:Company .
?c onto:foundingYear ?year .
res:Google onto:foundingYear ?year .
} | qald-5 |
Which subsidiary of Lufthansa serves both Dortmund and Berlin Tegel? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Lufthansa onto:subsidiary ?uri .
?uri onto:targetAirport res:Dortmund_Airport .
?uri onto:targetAirport res:Berlin_Tegel_Airport .
} | qald-5 |
How many airlines are members of the Star Alliance? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT COUNT(DISTINCT ?uri)
WHERE {
?uri rdf:type onto:Airline .
?uri onto:alliance res:Star_Alliance .
} | qald-5 |
Give me all spacecrafts that flew to Mars. | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX prop: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Spacecraft .
?uri prop:planet res:Mars .
} | qald-5 |
Which musician wrote the most books? | PREFIX onto: <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 onto:occupation res:Musician .
?x onto:author ?uri .
?x rdf:type onto:Book .
}
ORDER BY DESC(COUNT(?x))
OFFSET 0 LIMI... | qald-5 |
Show me everyone who was born on Halloween. | PREFIX prop: <http://dbpedia.org/property/>
PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Person .
{ ?uri onto:birthDate ?date . }
UNION
{ ?uri pro... | qald-5 |
Give me all Swiss non-profit organizations. | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?uri onto:type res:Nonprofit_organization .
{ ?uri onto:locationCountry res:Switzerland . }
UNION
{ ?uri onto:location ?x .
?x onto:country res:Switzerland . }
} | qald-5 |
In which country is Mecca located? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?uri
WHERE {
res:Mecca onto:country ?uri .
} | qald-5 |
What is the net income of Apple? | PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?ni
WHERE {
<http://dbpedia.org/resource/Apple_Inc.> onto:netIncome ?ni .
} | qald-5 |
What does the abbreviation FIFA stand for? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?name
WHERE {
res:FIFA prop:name ?name .
} | qald-5 |
When did the Ming dynasty dissolve? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
SELECT DISTINCT ?date
WHERE {
res:Ming_dynasty onto:dissolutionDate ?date .
} | qald-5 |
Which museum in New York has the most visitors? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
SELECT DISTINCT ?uri
WHERE {
?uri rdf:type onto:Museum .
?uri onto:location res:New_York_City .
?uri onto:numberOfVisitors ?num .
}
ORDER BY DESC... | qald-5 |
Is Lake Baikal bigger than the Great Bear Lake? | PREFIX res: <http://dbpedia.org/resource/>
PREFIX onto: <http://dbpedia.org/ontology/>
ASK
WHERE {
res:Lake_Baikal onto:areaTotal ?a1 .
res:Great_Bear_Lake onto:areaTotal ?a2 .
FILTER (?a1 > ?a2)
} | qald-5 |
Desserts from which country contain fish? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
?x onto:type res:Dessert .
?x onto:origin ?uri .
?x onto:ingredient res:Fish .
} | qald-5 |
What is the highest mountain in Italy? | PREFIX onto: <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 onto:Mountain .
?uri onto:locatedInArea res:Italy .
?uri onto:elevation ?num .
}
ORDER BY DESC(?num)
OFFSET ... | qald-5 |
Where did the architect of the Eiffel Tower study? | PREFIX prop: <http://dbpedia.org/property/>
PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Eiffel_Tower onto:architect ?x .
?x prop:almaMater ?uri .
} | qald-5 |
Which Greek parties are pro-European? | PREFIX onto: <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 onto:PoliticalParty .
?uri onto:country res:Greece .
?uri onto:ideology res:Pro-Europeanism .
} | qald-5 |
What is the height difference between Mount Everest and K2? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT (?h1-?h2)
WHERE {
res:Mount_Everest onto:elevation ?h1 .
res:K2 onto:elevation ?h2 .
} | qald-5 |
Who is the mayor of Rotterdam? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Rotterdam onto:leaderName ?uri .
} | qald-5 |
How high is the Yokohama Marine Tower? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?num
WHERE {
res:Yokohama_Marine_Tower onto:height ?num .
} | qald-5 |
Are Taiko a kind of Japanese musical instruments? | PREFIX yago: <http://dbpedia.org/class/yago/>
PREFIX res: <http://dbpedia.org/resource/>
ASK
WHERE {
res:Taiko rdf:type yago:JapaneseMusicalInstruments .
} | qald-5 |
How many ethnic groups live in Slovenia? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT COUNT(DISTINCT ?uri)
WHERE {
res:Slovenia onto:ethnicGroup ?uri .
} | qald-5 |
List the seven kings of Rome. | PREFIX res: <http://dbpedia.org/resource/>
PREFIX prop: <http://dbpedia.org/property/>
SELECT DISTINCT ?uri
WHERE {
?uri prop:title res:King_of_Rome .
} | qald-5 |
Who were the parents of Queen Victoria? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX res: <http://dbpedia.org/resource/>
SELECT DISTINCT ?uri
WHERE {
res:Queen_Victoria onto:parent ?uri .
} | qald-5 |
Who is the heaviest player of the Chicago Bulls? | PREFIX onto: <http://dbpedia.org/ontology/>
PREFIX prop: <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 onto:Person .
?uri onto:weight ?num .
{ ?uri prop:team res:Chic... | qald-5 |
Which volcanos in Japan erupted since 2000? | PREFIX onto: <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 onto:Volcano .
?uri onto:locatedInArea res:Japan .
?uri onto:eruptionYear ?date .
FILTER (year(?d... | qald-5 |
Who is the tallest basketball player? | PREFIX onto: <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 onto:BasketballPlayer .
?uri onto:height ?num .
}
ORDER BY DESC(?num)
OFFSET 0 LIMIT 1 | qald-5 |
Are there any castles in the United States? | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> ask where {?uri dct:subject dbc:Castles_in_the_United_States} | qald-7 |
Can you find frescoes in Crete? | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX prop: <http://dbpedia.org/property/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ask where { ?uri dct:subject dbc:Minoan_frescos . ?uri prop:museum ?museum . ?museum onto:locatio... | qald-7 |
Do Urdu and Persian have a common root? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ask where { res:Urdu onto:languageFamily ?uri . res:Persian_language onto:languageFamily ?uri . } | qald-7 |
Does the Ford Motor Company have a manufacturing plant in Malaysia? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> ask where { ?uri onto:assembly res:Malaysia . ?uri onto:manufacturer res:Ford_Motor_Company . } | qald-7 |
How many years was the Ford Model T manufactured? | PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> SELECT (year(xsd:date(?end))-year(xsd:date(?start)) AS ?years) WHERE { res:Ford_Model_T onto:productionEndYear ?end. res:Ford_Model_T onto:productionStartYear ?start. } | qald-7 |
Give me all American presidents in the last 20 years. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX prop: <http://dbpedia.org/property/> select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:Pres... | qald-7 |
Give me all gangsters from the prohibition era. | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri onto:occupation res:Gangster . ?uri dct:subject dbc:Prohibition-era_gangsters . } | qald-7 |
Give me all Seven Wonders of the Ancient World. | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select ?uri where { ?uri dct:subject dbc:Seven_Wonders_of_the_Ancient_World } | qald-7 |
Give me all chemical elements. | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri rdf:type owl:Thing . ?uri dct:subject dbc:Chemical_elements . } | qald-7 |
How many rivers and lakes are in South Carolina? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select (COUNT(distinct ?uri) as ?count) where { { ?uri onto:location res:South_Caro... | qald-7 |
How many states are in Mexico? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> select (count(?uri) as ?count) where { ?uri onto:type res:States_of_Mexico } | qald-7 |
How many theories did Albert Einstein come up with? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select (count(?uri) as ?count) where { res:Albert_Einstein onto:knownFor ?uri} | qald-7 |
Is horse racing a sport? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ask where { res:Horse_racing a onto:Sport } | qald-7 |
Is Pluto really a planet? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ask where { res:Pluto a onto:Planet } | qald-7 |
Was Sigmund Freud married? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> ask where { res:Sigmund_Freud onto:spouse ?uri } | qald-7 |
What form of government is found in South Africa? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select ?uri where { res:South_Africa onto:governmentType ?uri } | qald-7 |
What is the largest state in the United States? | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> select ?uri where { ?uri dct:subject dbc:States_of_the_United_States. ?uri rdf:type onto:AdministrativeRegion. ?uri onto:areaT... | qald-7 |
What is the longest river in the world? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> select ?uri where { ?uri rdf:type onto:BodyOfWater . ?uri onto:length ?length } ORDER BY DESC(?length) LIMIT 1 | qald-7 |
Which building after the Burj Khalifa has the most floors? | PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> SELECT DISTINCT ?uri WHERE { res:Burj_Khalifa onto:floorCount ?burj . ?uri rdf:type onto:Building . ?uri onto:floorCount ?proj . FILTER(?proj < ?burj) } ORDER BY DESC(?proj) L... | qald-7 |
What is the wavelength of indigo? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select ?n where { res:Indigo onto:wavelength ?n } | qald-7 |
What was the name of the famous battle in 1836 in San Antonio? | PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> select ?uri where { ?uri rdf:type onto:MilitaryConflict. ?uri onto:place res:San_Antonio. ?uri onto:date ?date. FILTER ( ?date ... | qald-7 |
What were the names of the three ships used by Columbus? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select ?uri where { ?uri rdf:type onto:Ship. ?uri dct:subject dbc:Christopher_Columbus. ?uri dct:subject dbc:Exploration_ships... | qald-7 |
What were the original 13 British colonies? | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Former_British_colonies. ?uri dct:subject dbc:Thirteen_Colonies. } | qald-7 |
When did Muhammad die? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?date where { res:Muhammad onto:deathDate ?date. } | qald-7 |
When was the De Beers company founded? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?date where { res:De_Beers onto:foundingYear ?date. } | qald-7 |
When was John Adams born? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?date where { res:John_Adams onto:birthDate ?date. } | qald-7 |
Which American presidents were in office during the Vietnam War? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { res:Vietnam_War onto:commander ?uri . ?uri dct:subject dbc:Presidents_of_the_United_States . } | qald-7 |
Which city has the oldest running metro? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> select ?loc where { ?uri onto:type res:Rapid_transit . ?uri onto:openingYear ?date . ?uri onto:location ?loc . ?loc rdf:type onto:City . } ORDER BY ASC(?date) LIMIT 1 | qald-7 |
Which holidays are celebrated around the world? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?uri where { ?uri rdf:type onto:Holiday. } | qald-7 |
Who assassinated President McKinley? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri rdf:type onto:Person . ?uri dct:subject dbc:American_assassins . ?uri dct:subject dbc:Assas... | qald-7 |
Who discovered Pluto? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select ?uri where { res:Pluto onto:discoverer ?uri } | qald-7 |
Who killed Caesar? | PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> select distinct ?uri where { ?uri dct:subject dbc:Assassins_of_Julius_Caesar. } | qald-7 |
Who was buried in the Great Pyramid of Giza? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> select ?uri where { ?uri onto:restingPlace res:Great_Pyramid_of_Giza . } | qald-7 |
Who was the first King of England? | PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> PREFIX onto: <http://dbpedia.org/ontology/> PREFIX yago: <http://dbpedia.org/class/yago/> select distinct ?uri where { ?uri rdf:type onto:Royalty. ?uri rdf:type yago:WikicatEnglishMonarchs . ?uri onto:activeYearsStartYear ?date . } ORDER BY ASC(?date) OFFSET 0 L... | qald-7 |
What was the final result of the War of the Roses? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> select distinct ?result where { ?uri onto:isPartOfMilitaryConflict res:Wars_of_the_Roses. ?uri onto:result ?result . ?uri onto:date ?date } ORDER BY DESC(?date) OFFSET 0 LIMIT 1 | qald-7 |
Who writes the Farmers' Almanac? | PREFIX prop: <http://dbpedia.org/property/> select ?uri where { <http://dbpedia.org/resource/Farmers'_Almanac> prop:editor ?uri. } | qald-7 |
How big is the earth's diameter? | PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct (xsd:double(?radius)*2 AS ?diameter) where { res:Earth onto:meanRadius ?radius . } | qald-7 |
When did Paraguay proclaim its independence? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> select distinct ?date where { res:Paraguay prop:establishedDate ?date . } | qald-7 |
How many people live in Eurasia? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?population where { res:Eurasia onto:populationTotal ?population . } | qald-7 |
Give me the runtime of Toy Story. | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?runtime where { res:Toy_Story onto:runtime ?runtime . } | qald-7 |
What was the first name of the band Queens of the Stone Age? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?name where { res:Queens_of_the_Stone_Age onto:alias ?name . } | qald-7 |
Give me the birth place of Frank Sinatra. | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?place where { res:Frank_Sinatra onto:birthPlace ?place . } | qald-7 |
Which university did Angela Merkel attend? | PREFIX res: <http://dbpedia.org/resource/> PREFIX onto: <http://dbpedia.org/ontology/> select distinct ?university where { res:Angela_Merkel onto:almaMater ?university . } | qald-7 |
What is the alma mater of the chancellor of Germany Angela Merkel? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?Almamater WHERE { res:Angela_Merkel onto:almaMater ?Almamater } | qald-8 |
How large is the area of UK? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?area WHERE { res:United_Kingdom onto:areaTotal ?area } | qald-8 |
Who is the author of the interpretation of dreams? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?Author WHERE { res:The_Interpretation_of_Dreams onto:author ?Author } | qald-8 |
What is the birth name of Adele? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?bn WHERE { res:Adele onto:birthName ?bn } | qald-8 |
What are the top selling luxury vehicle brands in Germany? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX dct: <http://purl.org/dc/terms/> PREFIX dbc: <http://dbpedia.org/resource/Category:> SELECT ?company WHERE { ?company dct:subject dbc:Car_manufacturers_of_Germany ; onto:equity ?equity ; onto:netIncome ?netIncome ; onto:production ?production ; onto:revenue ?revenue } ... | qald-8 |
How many awards has Bertrand Russell? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT (COUNT(?Awards) AS ?Counter) WHERE { res:Bertrand_Russell prop:awards ?Awards } | qald-8 |
Who is Dan Jurafsky? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?Dan WHERE { VALUES ?Dan {res:Daniel_Jurafsky } } | qald-8 |
When will start the final match of the football world cup 2018? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?Date WHERE { res:2018_FIFA_World_Cup prop:date ?Date } OFFSET 24 LIMIT 1 | qald-8 |
how much is the elevation of Düsseldorf Airport ? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?ele WHERE { res:Düsseldorf_Airport onto:elevation ?ele } LIMIT 1 | qald-8 |
how much is the total population of european union? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?europop WHERE { res:European_Union onto:populationTotal ?europop } | qald-8 |
when was the founding date of french fifth republic? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?ff WHERE { res:French_Fifth_Republic onto:foundingDate ?ff } | qald-8 |
Who are the founders of BlaBlaCar? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?founder WHERE { res:BlaBlaCar prop:founders ?founder } | qald-8 |
how many foreigners speak German? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?Ger_lang WHERE { res:German_language prop:speakers ?Ger_lang } OFFSET 1 LIMIT 1 | qald-8 |
Where is the birthplace of Goethe? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?Goethe WHERE { res:Johann_Wolfgang_von_Goethe onto:birthPlace ?Goethe } | qald-8 |
Where is the origin of Carolina reaper? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?uri WHERE { res:Carolina_Reaper onto:origin ?uri } | qald-8 |
How much is the population of Mexico City ? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?Mexico_City WHERE { res:Mexico_City onto:populationTotal ?Mexico_City } | qald-8 |
What is the nick name of Baghdad? | PREFIX res: <http://dbpedia.org/resource/> PREFIX foaf: <http://xmlns.com/foaf/0.1/> SELECT ?nm WHERE { res:Baghdad foaf:nick ?nm } | qald-8 |
Who is the novelist of the work a song of ice and fire? | PREFIX res: <http://dbpedia.org/resource/> PREFIX prop: <http://dbpedia.org/property/> SELECT ?Novelist WHERE { res:A_Song_of_Ice_and_Fire prop:author ?Novelist } | qald-8 |
What is the percentage of area water in Brazil? | PREFIX onto: <http://dbpedia.org/ontology/> PREFIX res: <http://dbpedia.org/resource/> SELECT ?percentage WHERE { res:Brazil onto:percentageOfAreaWater ?percentage } | qald-8 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.