instruction
stringclasses 1
value | input
stringlengths 1
655
| output
stringlengths 47
392
|
---|---|---|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the place of work of August Sander that has executive power headed by Ernst Schwering?
|
SELECT ?answer WHERE { wd:/August Sander/ wdt:/work location/ ?answer . ?answer wdt:/head of government/ wd:/Ernst Schwering/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which limestone powder has the highest emissivity?
|
select ?ent where { ?ent wdt:/instance of/ wd:/powder/ . ?ent wdt:/emissivity/ ?obj . ?ent wdt:/made from material/ wd:/limestone/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the first described member or NGC 5548?
|
SELECT ?answer WHERE { wd:/NGC 5548/ wdt:/discoverer or inventor/ ?X . ?X wdt:/member of/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who gave the{affiliate of} of {plays for} of {Amauri Sanit} ?
|
SELECT ?answer WHERE { wd:/Amauri Sanit/ wdt:/member of sports team/ ?X . ?X wdt:/parent club/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the manned spaceflight programme which start with the letter p
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/human spaceflight program/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'p')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which humans practice the Russian Orthodox religion?
|
select distinct ?sbj where { ?sbj wdt:/religion or worldview/ wd:/Russian Orthodox Church/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the population of Jervis Bay Territory, a state suburb?
|
SELECT ?obj WHERE { wd:/Jervis Bay Territory/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/applies to part/ wd:/Suburb and Locality/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
"Which is {has local government areas} of {Louisiana}, that has {year created} is {1886-6-30} ?"
|
SELECT ?answer WHERE { wd:/Louisiana/ wdt:/contains the administrative territorial entity/ ?answer . ?answer wdt:/inception/ ?x FILTER(contains(YEAR(?x),'1886'))}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the honours of Grace Bumbry whose leader is Fayard Nicholas?
|
SELECT ?answer WHERE { wd:/Grace Bumbry/ wdt:/award received/ ?answer . ?answer wdt:/winner/ wd:/Fayard Nicholas/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What town in Spain borders Bilbao?
|
select distinct ?sbj where { ?sbj wdt:/shares border with/ wd:/Bilbao/ . ?sbj wdt:/instance of/ wd:/municipality of Spain/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Silvia Nedi become join the team SC Klinge Seckach?
|
SELECT ?value WHERE { wd:/Silvia Neid/ p:/member of sports team/ ?s . ?s ps:/member of sports team/ wd:/SC Klinge Seckach/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
WHat are the band that contain the word "Nightwish" in their name ?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/musical group/ . ?sbj wdt:/discography/ wd:/Nightwish discography/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'nightwish')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is {inscribed} of {The Birth of Venus} that is {applies to partition} is {left}?
|
SELECT ?obj WHERE { wd:/The Birth of Venus/ p:/inscription/ ?s . ?s ps:/inscription/ ?obj . ?s pq:/applies to part/ wd:/left/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who are the relatives of Heinrich Himmler?
|
select distinct ?obj where { wd:/Heinrich Himmler/ wdt:/relative/ ?obj . ?obj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What were the battles undertook by Joan of Arc
|
select distinct ?obj where { wd:/Joan of Arc/ wdt:/conflict/ ?obj . ?obj wdt:/instance of/ wd:/battle/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What geological events happen in the Inyo County in California?
|
SELECT ?answer WHERE { wd:/inyoite/ wdt:/type locality (geology)/ ?X . ?X wdt:/located in/on physical feature/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the currency of the country which Mary Lou Retton is a citizen of?
|
SELECT ?answer WHERE { wd:/Mary Lou Retton/ wdt:/country of citizenship/ ?X . ?X wdt:/currency/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me the folk religion that has as foundational text Nihon Shoki and starts with the letter s?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/folk religion/ . ?sbj wdt:/foundational text/ wd:/Nihon Shoki/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the olympic record for sprinting?
|
SELECT ?answer WHERE { wd:/sprinting/ wdt:/sport/ ?X . ?X wdt:/record or record progression/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who belonged to the International Association of Athletics Federations in 1912?
|
SELECT ?obj WHERE { wd:/World Athletics/ p:/member of/ ?s . ?s ps:/member of/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1912')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
How much money did Karl Adolph Gjellerup win for getting the Nobel Prize in Literature?
|
SELECT ?value WHERE { wd:/Karl Adolph Gjellerup/ p:/award received/ ?s . ?s ps:/award received/ wd:/Nobel Prize in Literature/ . ?s pq:/prize money/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
How many patron saints are in Poland?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Poland/ wdt:/patron saint/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me the mantra that contains the word mantra in their name.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/mantra/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'mantra')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What station used Amtrak technology ?
|
select distinct ?obj where { wd:/Amtrak/ wdt:/uses/ ?obj . ?obj wdt:/instance of/ wd:/station located on surface/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What's part of the I Second That Emotion series dubbed?
|
SELECT ?answer WHERE { wd:/I Second That Emotion/ wdt:/part of the series/ ?X . ?X wdt:/voice actor/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What maintenance is connected with Tochigi Prefecturual Road Route 175?
|
SELECT ?answer WHERE { wd:/Tochigi Prefectural Road Route 175/ wdt:/connects with/ ?X . ?X wdt:/maintained by/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the new religious movement which start with the letter syntheism
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/new religious movement/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'syntheism')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Was Mohenjo-daro discovered by John Marshall and Rakhaldas Bandyopadhyay?
|
ASK WHERE { wd:/Mohenjo-daro/ wdt:/discoverer or inventor/ wd:/John Marshall/ . wd:/Mohenjo-daro/ wdt:/discoverer or inventor/ wd:/Rakhaldas Bandyopadhyay/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What unfinished/abandoned film project does screenwriter Mike Myers have?
|
select distinct ?sbj where { ?sbj wdt:/screenwriter/ wd:/Mike Myers/ . ?sbj wdt:/instance of/ wd:/unfinished or abandoned film project/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the organ of the lymphatic drainage of the Hepatic lymph nodes that contains the word liver in it's name?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/organ/ . ?sbj wdt:/lymphatic drainage/ wd:/Hepatic lymph nodes/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'liver')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
WHICH IS THE READIO INTERFEROMETER WITH THE MOST WAVELENTGTH OF SENSITIVITY
|
select ?ent where { ?ent wdt:/instance of/ wd:/radio interferometer/ . ?ent wdt:/maximum wavelength of sensitivity/ ?obj } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
What U.S. Government agency holds the archives of Jefferson Davis?
|
select distinct ?obj where { wd:/Jefferson Davis/ wdt:/archives at/ ?obj . ?obj wdt:/instance of/ wd:/independent agency of the United States government/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the artist of the albul Up 'til Now?
|
SELECT ?answer WHERE { wd:/Up 'til Now/ wdt:/followed by/ ?X . ?X wdt:/performer/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is made from or produced by a blast furnace?
|
SELECT ?answer WHERE { wd:/blast furnace/ wdt:/product or material produced/ ?X . ?X wdt:/made from material/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which manned spaceflight programme that contains the word project in their name
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/human spaceflight program/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'project')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which music by Egmont describes the disease of Crohn's disease?
|
SELECT ?answer WHERE { wd:/Egmont/ wdt:/composer/ ?answer . ?answer wdt:/medical condition/ wd:/Crohn's disease/}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did was Natalia Revuelta Clews the partner of Fidel Castro.
|
SELECT ?value WHERE { wd:/Fidel Castro/ p:/unmarried partner/ ?s . ?s ps:/unmarried partner/ wd:/Natalia Revuelta Clews/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is it true that the alcohol by volume of gin is less than 45.0?
|
ASK WHERE { wd:/gin/ wdt:/alcohol by volume/ ?obj filter(?obj < 45.0) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What location is adjacent to the city of Mandaue, that contains the state of Zapatera?
|
SELECT ?answer WHERE { wd:/Mandaue/ wdt:/shares border with/ ?answer . ?answer wdt:/contains the administrative territorial entity/ wd:/Zapatera/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is established by the Rurik dynasty that has been born in Europe?
|
SELECT ?answer WHERE { wd:/Rurik dynasty/ wdt:/founded by/ ?answer . ?answer wdt:/place of birth/ wd:/Europe/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the translation of the above?
|
SELECT ?answer WHERE { wd:/Божественная комедия (1855, Минъ)/ wdt:/edition or translation of/ ?X . ?X wdt:/characters/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the favorite player protrayed by Dead Prez's music?
|
SELECT ?answer WHERE { wd:/Dead Prez discography/ wdt:/performer/ ?X . ?X wdt:/influenced by/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which company owns American Airlines ?
|
select distinct ?obj where { wd:/American Airlines/ wdt:/parent organization/ ?obj . ?obj wdt:/instance of/ wd:/enterprise/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Name the territoy whose main regulatory text are the Belavezha Accords that starts with letter D
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/dissolution of an administrative territorial entity/ . ?sbj wdt:/main regulatory text/ wd:/Belavezha Accords/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'd')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which software version of ICQ is 8.0?
|
SELECT ?value WHERE { wd:/ICQ/ p:/software version identifier/ ?s . ?s ps:/software version identifier/ ?x filter(contains(?x,'8.0')) . ?s pq:/version type/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What day does Easter fall on?
|
select ?ent where { ?ent wdt:/instance of/ wd:/day in the Eastern Orthodox liturgical calendar/ . ?ent wdt:/Sandbox-Quantity/ ?obj . ?ent wdt:/instance of/ wd:/day in the Eastern Orthodox liturgical calendar/} ORDER BY ASC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
What 9-Cylinder radial engine model has the least bore?
|
select ?ent where { ?ent wdt:/instance of/ wd:/engine model/ . ?ent wdt:/bore/ ?obj . ?ent wdt:/engine configuration/ wd:/9-cylinder radial/} ORDER BY ASC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is Henry the Lion's first cousin?
|
SELECT ?obj WHERE { wd:/Henry the Lion/ p:/relative/ ?s . ?s ps:/relative/ ?obj . ?s pq:/kinship to subject/ wd:// }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the individual tax rate in Sweden 25%?
|
ASK WHERE { wd:/Sweden/ wdt:/individual tax rate/ ?obj filter(?obj = 25) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What part of work studies the effects of acute total body resistance exercise on hormonal and cytokines changes in men and women?
|
SELECT ?answer WHERE { wd:/Effects of acute total body resistance exercise on hormonal and cytokines changes in men and women./ wdt:/published in/ ?X . ?X wdt:/field of work/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the person of the native language of Yiddish?
|
select distinct ?sbj where { ?sbj wdt:/native language/ wd:/Yiddish/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the redshift of the Messier 74 equal to 0.002188?
|
ASK WHERE { wd:/Messier 74/ wdt:/redshift/ ?obj filter(?obj = 0.002188) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is in conflict with the executive power headed by Berlin?
|
SELECT ?answer WHERE { wd:/Berlin/ wdt:/head of government/ ?X . ?X wdt:/head of government/07 ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
how many parents does matterhorn have?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/parent peak/ wd:/Matterhorn/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which {diplomatic relation} of {sovereign state} of {Adelaide} ?
|
SELECT ?answer WHERE { wd:/Adelaide/ wdt:/country/ ?X . ?X wdt:/diplomatic relation/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Where is the river mouth of the Uruguay river?
|
SELECT ?answer WHERE { wd:/Uruguay River/ wdt:/mouth of the watercourse/ ?X . ?X wdt:/tributary/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is {established by} {political office} of {Thomas de Lisle} ?
|
SELECT ?answer WHERE { wd:/Thomas de Lisle/ wdt:/position held/ ?X . ?X wdt:/founded by/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is Edward Snowden current job ?
|
SELECT ?answer WHERE { wd:/Edward Snowden/ wdt:/employer/ ?X . ?X wdt:/replaces/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Does the block size of the KASUMI equal 64
|
ASK WHERE { wd:/KASUMI/ wdt:/block size/ ?obj filter(?obj = 64) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which religious book is represented in Melchizedek's work?
|
select distinct ?obj where { wd:/Melchizedek/ wdt:/present in work/ ?obj . ?obj wdt:/instance of/ wd:/religious text/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the highest peak in Tasmania?
|
select distinct ?obj where { wd:/Tasmania/ wdt:/highest point/ ?obj . ?obj wdt:/instance of/ wd:/mountain/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Has Tom Cruise lived in Los Angeles?
|
ASK WHERE { wd:/Tom Cruise/ wdt:/residence/ wd:/Los Angeles/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Oscar Niemeyer died in Rio de Janeiro, which is located in what country?
|
SELECT ?value WHERE { wd:/Oscar Niemeyer/ p:/place of death/ ?s . ?s ps:/place of death/ wd:/Rio de Janeiro/ . ?s pq:/country/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the coordinates to the source of the Murray River?
|
SELECT ?obj WHERE { wd:/Murray River/ p:/coordinate location/ ?s . ?s ps:/coordinate location/ ?obj . ?s pq:/applies to part/ wd:/river source/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the population in Szezecin 407811.0?
|
SELECT ?value WHERE { wd:/Szczecin/ p:/population/ ?s . ?s ps:/population/ ?x filter(contains(?x,'407811.0')) . ?s pq:/point in time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What location near Palazzolo Acreide did Archimedes die?
|
SELECT ?answer WHERE { wd:/Archimedes/ wdt:/place of death/ ?answer . ?answer wdt:/shares border with/ wd:/Palazzolo Acreide/}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Wassily Kandinski finish teaching at Bauhaus?
|
SELECT ?value WHERE { wd:/Wassily Kandinsky/ p:/employer/ ?s . ?s ps:/employer/ wd:/Bauhaus/ . ?s pq:/end time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is named for the Thomson scattering and has significance with the plum pudding model?
|
SELECT ?answer WHERE { wd:/Thomson scattering/ wdt:/named after/ ?answer . ?answer wdt:/notable work/ wd:/plum pudding model/}
|
Generate a SPARQL query that returns the answer of the following question.
|
who is the business for division of Reuters?
|
select distinct ?sbj where { ?sbj wdt:/business division/ wd:/Reuters/ . ?sbj wdt:/instance of/ wd:/business/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
WHO IS THE PARENT OF SON FRANCESCO I SFORZA ?
|
SELECT ?answer WHERE { wd:/Francesco I Sforza/ wdt:/mother/ ?X . ?X wdt:/child/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
When was Venus Williams nominated for the Best Female Tennis Player ESPY Award?
|
SELECT ?value WHERE { wd:/Venus Williams/ p:/nominated for/ ?s . ?s ps:/nominated for/ wd:/Best Female Tennis Player ESPY Award/ . ?s pq:/point in time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which musical is based off of Candide?
|
select distinct ?sbj where { ?sbj wdt:/based on/ wd:/Candide/ . ?sbj wdt:/instance of/ wd:/musical/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What has died in Solon which has the twin city Barcelona?
|
SELECT ?answer WHERE { wd:/Solon/ wdt:/place of death/ ?answer . ?answer wdt:/twinned administrative body/ wd:/Barcelona/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Was Michael Jackson influenced by Fred Astaire?
|
ASK WHERE { wd:/Michael Jackson/ wdt:/influenced by/ wd:/Fred Astaire/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the parent astronomical body and the type of orbit for the Hubble Space Telescope?
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/Hubble Space Telescope/ wdt:/parent astronomical body/ ?ans_1 . wd:/Hubble Space Telescope/ wdt:/type of orbit/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is it true that the thermal diffusivity of adobe is less than 0.216?
|
ASK WHERE { wd:/adobe/ wdt:/thermal diffusivity/ ?obj filter(?obj < 0.216) }
|
Generate a SPARQL query that returns the answer of the following question.
|
When was Ali al-Hadi born, given that it was before 1584?
|
SELECT ?obj WHERE { wd:/Ali al-Hadi/ p:/date of birth/ ?s . ?s ps:/date of birth/ ?obj . ?s pq:/instance of/ wd:/statement with Gregorian date earlier than 1584/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the bibliography of English speaker Maurice Sendak.
|
SELECT ?answer WHERE { wd:/Maurice Sendak/ wdt:/notable work/ ?answer . ?answer wdt:/language of work or name/ wd:/English/}
|
Generate a SPARQL query that returns the answer of the following question.
|
For which movie was Christian Bale nominated for an Academy Award for Best Supporting Actor?
|
SELECT ?value WHERE { wd:/Christian Bale/ p:/nominated for/ ?s . ?s ps:/nominated for/ wd:/Academy Award for Best Supporting Actor/ . ?s pq:/for work/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
who is the {mother} for {Will Smith} that has {child} as {Willow Smith} ?
|
SELECT ?value WHERE { wd:/Will Smith/ p:/child/ ?s . ?s ps:/child/ wd:/Willow Smith/ . ?s pq:/mother/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the mascot of Georgia institute of Technology?
|
select distinct ?obj where { wd:/Georgia Institute of Technology/ wdt:/mascot/ ?obj . ?obj wdt:/instance of/ wd:/mascot character/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
How many teams are participating for {Chicago Bulls} ?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/participating team/ wd:/Chicago Bulls/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the universal library which start with the letter I
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/universal library/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'l')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What type of people would compete in a marathon.
|
select distinct ?sbj where { ?sbj wdt:/sports discipline competed in/ wd:/marathon/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Was Tonya Harding a professional pair ice skater?
|
ASK WHERE { wd:/Tonya Harding/ wdt:/sport/ wd:/pair skating/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
In 1939, what country did Marlene Dietrich become a citizen of?
|
SELECT ?obj WHERE { wd:/Marlene Dietrich/ p:/country of citizenship/ ?s . ?s ps:/country of citizenship/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1939')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are thenonprofit organization which start with the letter videolan
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/nonprofit organization/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'videolan')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What rotary cannon did General Electric design that starts with the letter "m"?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/rotary cannon/ . ?sbj wdt:/designed by/ wd:/General Electric/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'm')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Where did Dietrich Bonhoeffer get educated starting in 1923?
|
SELECT ?obj WHERE { wd:/Dietrich Bonhoeffer/ p:/educated at/ ?s . ?s ps:/educated at/ ?obj . ?s pq:/start time/ ?x filter(contains(YEAR(?x),'1923')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is a crisis that starts with the letter u.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/crisis/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'u')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is {award received} of {Hans Krebs} where {point in time} is {1966-0-0} ?
|
SELECT ?obj WHERE { wd:/Hans Krebs/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1966')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which Wikimedia article lists X-Files characters?
|
select distinct ?obj where { wd:/The X-Files/ wdt:/list of characters/ ?obj . ?obj wdt:/instance of/ wd:/Wikimedia list article/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the parabolic differential equation which start with the letter equation
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/parabolic partial differential equation/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'equation')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Name a disease that spreads through contact and starts with letter S
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/disease/ . ?sbj wdt:/disease transmission process/ wd:/contact transmission/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 's')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the unit conversion of the measured by Young's modulus?
|
SELECT ?answer WHERE { wd:/Young's modulus/ wdt:/measurement scale/ ?X . ?X wdt:/conversion to standard unit/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
tell me ceremony whose name has the word umhlanga in it
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/ceremony/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'umhlanga')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
As described by Brockhaus and Efron Encyclopedic Dictionary, what is the unit of length for the smallest conversion to a standard unit?
|
select ?ent where { ?ent wdt:/instance of/ wd:/unit of length/ . ?ent wdt:/conversion to standard unit/ ?obj . ?ent wdt:/described by source/ wd:/Brockhaus and Efron Encyclopedic Dictionary/} ORDER BY ASC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the human with the lowest age of consent whose given name is Ram?
|
select ?ent where { ?ent wdt:/instance of/ wd:/human/ . ?ent wdt:/age of consent/ ?obj . ?ent wdt:/given name/ wd:/Ram/. } ORDER BY ASC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Newfoundland and Labrador have a population of 519716 people?
|
SELECT ?value WHERE { wd:/Newfoundland and Labrador/ p:/population/ ?s . ?s ps:/population/ ?x filter(contains(?x,'519716.0')) . ?s pq:/point in time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
WHO IS LTHE FOUNDER OF SHAPUR II DYNASTY?
|
SELECT ?answer WHERE { wd:/Shapur II/ wdt:/family/ ?X . ?X wdt:/founded by/ ?answer}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.