instruction
stringclasses 1
value | input
stringlengths 1
655
| output
stringlengths 47
392
|
---|---|---|
Generate a SPARQL query that returns the answer of the following question.
|
Is the sports league level of the EFL Championship more than 1.6?
|
ASK WHERE { wd:/EFL Championship/ wdt:/sports league level/ ?obj filter(?obj > 1.6) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Was Jude_Law partner Ruth Wilson?
|
ASK WHERE { wd:/Jude Law/ wdt:/unmarried partner/ wd:/Ruth Wilson/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which are the symptoms as the symptoms of the bipolar disorder?
|
select distinct ?obj where { wd:/bipolar disorder/ wdt:/symptoms and signs/ ?obj . ?obj wdt:/instance of/ wd:/symptom/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the opposite of extinction?
|
SELECT ?answer WHERE { wd:/extinction/ wdt:/opposite of/ ?X . ?X wdt:/has effect/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the pressure of the standard temperature and pressure 80000.0?
|
ASK WHERE { wd:/standard temperature and pressure/ wdt:/under pressure/ ?obj filter(?obj = 80000.0) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which voting round for Marine Le Pen had the most spoilt votes?
|
select ?ent where { ?ent wdt:/instance of/ wd:/voting round/ . ?ent wdt:/number of spoilt votes/ ?obj . ?ent wdt:/candidate/ wd:/Marine Le Pen/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
State the confederation of Jefferson Davis?
|
select distinct ?sbj where { ?sbj wdt:/head of government/ wd:/Jefferson Davis/ . ?sbj wdt:/instance of/ wd:/confederation/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the instructions to x86?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/instruction set/ wd:/x86/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the outcome of using treatment for chemotherapy?
|
SELECT ?answer WHERE { wd:/chemotherapy/ wdt:/has effect/ ?X . ?X wdt:/drug or therapy used for treatment/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What field would writer Booth Tarkington's career be considered?
|
SELECT ?answer WHERE { wd:/Booth Tarkington/ wdt:/occupation/ ?answer . ?answer wdt:/field of this occupation/ wd:/writing/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the tribute of the shore of Faial Island?
|
SELECT ?answer WHERE { wd:/Faial Island/ wdt:/located in or next to body of water/ ?X . ?X wdt:/tributary/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Name a song produced by Quincy Jones that starts with letter W
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/song/ . ?sbj wdt:/producer/ wd:/Quincy Jones/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'w')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the number of children not enrolled in school in the Rashidun Caliphate?
|
SELECT ?answer WHERE { wd:/Rashidun Caliphate/ wdt:/continent/ ?X . ?X wdt:/number of out-of-school children/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
which non-governmental organization for development starts with the letter o
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/non-governmental organization for development/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'o')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
which is the 3D film with the highest duration whose country of origin is united states of america?
|
select ?ent where { ?ent wdt:/instance of/ wd:/3D film/ . ?ent wdt:/duration/ ?obj . ?ent wdt:/country of origin/ wd:/United States of America/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Name a color model that contain the word "hsv " in its name
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/color model/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'hsv')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the bridge that is located in the administrative territorial entity of London Borough of Southwark and whose name contains the word bridge?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/bridge/ . ?sbj wdt:/located in the administrative territorial entity/ wd:/London Borough of Southwark/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'bridge')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What was Mali's population in 1973?
|
SELECT ?obj WHERE { wd:/Mali/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1973')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the television film that was based on Twenty Thousand Leagues Under the Sea?
|
select distinct ?sbj where { ?sbj wdt:/based on/ wd:/Twenty Thousand Leagues Under the Sea/ . ?sbj wdt:/instance of/ wd:/television film/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the daughter of the co-founder of King's College London?
|
SELECT ?answer WHERE { wd:/King's College London/ wdt:/founded by/ ?X . ?X wdt:/father/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What film series does Plane Daffy star in?
|
SELECT ?answer WHERE { wd:/Plane Daffy/ wdt:/part of the series/ ?X . ?X wdt:/cast member/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which protein can interact with amphetamine ?
|
select distinct ?obj where { wd:/DL-amphetamine/ wdt:/physically interacts with/ ?obj . ?obj wdt:/instance of/ wd:/protein/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the dynamic viscosity of undecane equal to 0.4496?
|
ASK WHERE { wd:/undecane/ wdt:/dynamic viscosity/ ?obj filter(?obj = 0.4496) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What award did Semyon Budyonny receive on 1953-4-24?
|
SELECT ?obj WHERE { wd:/Semyon Budyonny/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1953')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
explain me that the class II combustible liquid which starts eith the letter t in this
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/Class II combustible liquid/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Is it true that the matches/games drawn/tied of the 1891 British Lions tour to South Africa equals to 0?
|
ASK WHERE { wd:/1891 British Lions tour to South Africa/ wdt:/number of draws/ties/ ?obj filter(?obj = 0.0) }
|
Generate a SPARQL query that returns the answer of the following question.
|
On the shore of Rabat, what has a tributary of Mystic River?
|
SELECT ?answer WHERE { wd:/Rabat/ wdt:/located in or next to body of water/ ?answer . ?answer wdt:/tributary/ wd:/Mystic River/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What's the name of the Looney Tunes bird?
|
select distinct ?sbj where { ?sbj wdt:/present in work/ wd:/Looney Tunes/ . ?sbj wdt:/instance of/ wd:/fictional bird/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What was the population of Le Mans at the beginning of 2015?
|
SELECT ?obj WHERE { wd:/Le Mans/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'2015')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the capital of Tuscany that has a twin city named Asmara?
|
SELECT ?answer WHERE { wd:/Grand Duchy of Tuscany/ wdt:/capital/ ?answer . ?answer wdt:/twinned administrative body/ wd:/Asmara/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What physically interacts with food?
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/physically interacts with/ wd:/food/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the historical profession which start with the letter z
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/historical profession/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'z')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What aspect of mysticism is distinguished from dharma?
|
SELECT ?answer WHERE { wd:/mysticism/ wdt:/facet of/ ?answer . ?answer wdt:/different from/ wd:/dharma/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the {human} for {influenced by} of {J. Robert Oppenheimer}
|
select distinct ?sbj where { ?sbj wdt:/influenced by/ wd:/Robert Oppenheimer/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What (in the Julian calendar) is the date of birth of Antipater?
|
SELECT ?obj WHERE { wd:/Antipater/ 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.
|
Which unit of measurement measures density as a physical quality?
|
select distinct ?sbj where { ?sbj wdt:/measured physical quantity/ wd:/density/ . ?sbj wdt:/instance of/ wd:/unit of density/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the civilizations that start with the letter V
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/civilization/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'v')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Whose {wife} {has sons} of {Cecil Coward} ?
|
SELECT ?answer WHERE { wd:/Cecil Coward/ wdt:/child/ ?X . ?X wdt:/spouse/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who was the winner of the Arlene Raven Award that was bestowed by the Women's Caucus for Art?
|
SELECT ?answer WHERE { wd:/Arlene Raven/ wdt:/award received/ ?answer . ?answer wdt:/conferred by/ wd:/Women's Caucus for Art/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What vein is connected to the small intestine?
|
SELECT ?answer WHERE { wd:/small intestine/ wdt:/connects with/ ?X . ?X wdt:/venous drainage/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is stoicism?
|
select distinct ?sbj where { ?sbj wdt:/movement/ wd:/stoicism/ . ?sbj wdt:/instance of/ wd:/human/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the series in work of Waluigi?
|
SELECT ?answer WHERE { wd:/Waluigi/ wdt:/present in work/ ?X . ?X wdt:/part of the series/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is {mother} of {kids} of {Jason Robards} ?
|
SELECT ?answer WHERE { wd:/Jason Robards/ wdt:/child/ ?X . ?X wdt:/mother/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the official language of the Ottoman Empire?
|
select distinct ?obj where { wd:/Ottoman Empire/ wdt:/official language/ ?obj . ?obj wdt:/instance of/ wd:/extinct language/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Provide an airplane class that is used by an international airline that has the word airplane in their name.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/aircraft power class/ . ?sbj wdt:/used by/ wd:/global airplane fleet/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'airplane')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
How many film editors worked for Star Wars Episode IV: A New Hope?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/Star Wars: Episode IV – A New Hope/ wdt:/film editor/ ?obj }
|
Generate a SPARQL query that returns the answer of the following question.
|
Name the native German speaker and songwriter who wrote "Leck mich im Arsch."
|
SELECT ?answer WHERE { wd:/Leck mich im Arsch/ wdt:/composer/ ?answer . ?answer wdt:/native language/ wd:/German/}
|
Generate a SPARQL query that returns the answer of the following question.
|
did marta scored 111.0?
|
SELECT ?obj WHERE { wd:/Marta/ p:/member of sports team/ ?s . ?s ps:/member of sports team/ ?obj . ?s pq:/number of points/goals/set scored/ ?x filter(contains(?x,'111.0')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What character in Lawrence of Arabia is played by Jack Hawkins?
|
SELECT ?value WHERE { wd:/Lawrence of Arabia/ p:/cast member/ ?s . ?s ps:/cast member/ wd:/Jack Hawkins/ . ?s pq:/character role/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me the mausoleum commissioned by Shah Jahan and whose name contains the word mahal?
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/mausoleum/ . ?sbj wdt:/commissioned by/ wd:/Shah Jahan/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'mahal')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Which railroad line that connects with Novosibirsk and which contains the word railway in their name
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/railway line/ . ?sbj wdt:/connects with/ wd:/Novosibirsk/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'railway')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the wing area of the Rolladen-Schneider LS4 equal to 10.5?
|
ASK WHERE { wd:/Rolladen Schneider LS4/ wdt:/wing area/ ?obj filter(?obj = 10.5) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who worked as the manager/director of École Normale Supérieure?
|
SELECT ?answer WHERE { wd:/École Normale Supérieure/ wdt:/director / manager/ ?X . ?X wdt:/employer/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
What are the form factor which start with the letter u
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/form factor/ . ?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.
|
When was the battle of Muammar ai-Gaddafi?
|
SELECT ?answer WHERE { wd:/Muammar Gaddafi/ wdt:/conflict/ ?X . ?X wdt:/start time/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me medical specialty whose name has the word trichology in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/medical specialty/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'trichology')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the taxonomic type of Cactaceae?
|
select distinct ?obj where { wd:/Cactaceae/ wdt:/taxonomic type/ ?obj . ?obj wdt:/instance of/ wd:/taxon/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is Ford Motor Company's car manufacturer for its business division?
|
select distinct ?obj where { wd:/Ford Motor Company/ wdt:/business division/ ?obj . ?obj wdt:/instance of/ wd:/automobile manufacturer/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the name of the awards confered by Youtube ?
|
select distinct ?sbj where { ?sbj wdt:/conferred by/ wd:/YouTube/ . ?sbj wdt:/instance of/ wd:/award/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the topic of Bar whose Universal Decimal Classification is 34?
|
SELECT ?answer WHERE { wd:/bar/ wdt:/facet of/ ?answer . ?answer wdt:/Universal Decimal Classification/ ?x FILTER(contains(?x,'34'))}
|
Generate a SPARQL query that returns the answer of the following question.
|
Who was the head coach of the Pittsburgh Steelers until December 26, 1991?
|
SELECT ?obj WHERE { wd:/Pittsburgh Steelers/ p:/head coach/ ?s . ?s ps:/head coach/ ?obj . ?s pq:/end time/ ?x filter(contains(YEAR(?x),'1991')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the cuisine for the veganism cuisine?
|
select distinct ?obj where { wd:/veganism/ wdt:/cuisine/ ?obj . ?obj wdt:/instance of/ wd:/cuisine/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the diplomatic relation of endemism in Koala?
|
SELECT ?answer WHERE { wd:/Koala/ wdt:/endemic to/ ?X . ?X wdt:/diplomatic relation/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
How many architects are by Buckminster Fuller
|
SELECT (COUNT(?sub) AS ?value ) { ?sub wdt:/architect/ wd:/Buckminster Fuller/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
For what work did Tim Winton win the Miles Franklin Literary Award?
|
SELECT ?value WHERE { wd:/Tim Winton/ p:/award received/ ?s . ?s ps:/award received/ wd:/Miles Franklin Literary Award/ . ?s pq:/for work/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
For what musical work did Nine Inch Nails receive a nomination for a Grammy Award for Best Alternative music Album?
|
SELECT ?value WHERE { wd:/Nine Inch Nails/ p:/nominated for/ ?s . ?s ps:/nominated for/ wd:/Grammy Award for Best Alternative Music Album/ . ?s pq:/for work/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What what is chemical element has affected by tin poisoning and also which starts with letter t
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/chemical element/ . ?sbj wdt:/has effect/ wd:/tin poisoning/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 't')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
what is the character role for seventeen moments of spring has cast member as nikolay prokopovich?
|
SELECT ?value WHERE { wd:/Seventeen Moments of Spring/ p:/cast member/ ?s . ?s ps:/cast member/ wd:/Nikolay Prokopovich/ . ?s pq:/character role/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
What is art work of paul klee famous books ?
|
SELECT ?answer WHERE { wd:/Paul Klee/ wdt:/notable work/ ?X . ?X wdt:/collection/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
When did Ernest Renan become a member of the Hungarian Academy of Sciences?
|
SELECT ?value WHERE { wd:/Ernest Renan/ p:/member of/ ?s . ?s ps:/member of/ wd:/Hungarian Academy of Sciences/ . ?s pq:/start time/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is the name of the child of Abigail Adams, born on the 14th of july 1765?
|
SELECT ?obj WHERE { wd:/Abigail Adams/ p:/child/ ?s . ?s ps:/child/ ?obj . ?s pq:/date of birth/ ?x filter(contains(YEAR(?x),'1765')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Name the tour in Teatro Colón with the most representations ?
|
select ?ent where { ?ent wdt:/instance of/ wd:// . ?ent wdt:/number of representations/ ?obj . ?ent wdt:/location/ wd:/Teatro Colón/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
what is the {stated age at event} for {Noah} that has {significant event} as {death} ?
|
SELECT ?value WHERE { wd:/Noah/ p:/significant event/ ?s . ?s ps:/significant event/ wd:/death/ . ?s pq:/age of subject at event/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is the suicide rate of Nigeria more than 7.6?
|
ASK WHERE { wd:/Nigeria/ wdt:/suicide rate/ ?obj filter(?obj > 7.6) }
|
Generate a SPARQL query that returns the answer of the following question.
|
WHICH IS THE MINOR BASILICA THAT ARCHITECTURAL STYLE RENAISSANCE ARCHITECTURE AND WHICH CONTAINS THE WORD SANTI IN THEIR NAME
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/minor basilica/ . ?sbj wdt:/architectural style/ wd:/Renaissance architecture/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'santi')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me medical procedure whose name has the word venipuncture in it.
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/medical procedure/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'venipuncture')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Of which German district is Karl Steinhoff governor?
|
SELECT ?answer WHERE { wd:/German Democratic Republic/ wdt:/contains the administrative territorial entity/ ?answer . ?answer wdt:/head of government/ wd:/Karl Steinhoff/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Tell me mineral resource whose name has the word petroleum in their name
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/mineral resource/ . ?sbj rdfs:label ?sbj_label . FILTER(CONTAINS(lcase(?sbj_label), 'petroleum')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
What is in action of Clarence Campbell, whose moveable object location is in Atlantic Ocean?
|
SELECT ?answer WHERE { wd:/Clarence Campbell/ wdt:/conflict/ ?answer . ?answer wdt:/location/ wd:/Atlantic Ocean/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What area of Northern England has the greatest number of imports?
|
select ?ent where { ?ent wdt:/instance of/ wd:/cultural area/ . ?ent wdt:/total imports/ ?obj . ?ent wdt:/topic's main category/ wd:/Category:Northern England/ } ORDER BY DESC(?obj)LIMIT 5
|
Generate a SPARQL query that returns the answer of the following question.
|
Name a party organized by Vorwärts that starts with letter D
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/major party/ . ?sbj wdt:/house publication/ wd:/Vorwärts/ . ?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.
|
tell me intensive quantityfacet of electricity starts with v
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/intensive quantity/ . ?sbj wdt:/facet of/ wd:/electricity/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'v')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
Name the institution whose alumni is Samuel Taliaferro Rayburn who asmin HQ is in Austin?
|
SELECT ?answer WHERE { wd:/Samuel Taliaferro Rayburn/ wdt:/educated at/ ?answer . ?answer wdt:/headquarters location/ wd:/Austin/}
|
Generate a SPARQL query that returns the answer of the following question.
|
tell me Nishiki-e that depict motion sicknessand starts with letter g
|
SELECT DISTINCT ?sbj ?sbj_label WHERE { ?sbj wdt:/instance of/ wd:/nishiki-e/ . ?sbj wdt:/depicts/ wd:/motion sickness/ . ?sbj rdfs:label ?sbj_label . FILTER(STRSTARTS(lcase(?sbj_label), 'g')) . FILTER (lang(?sbj_label) = 'en') } LIMIT 25
|
Generate a SPARQL query that returns the answer of the following question.
|
For what work did François Mauriac receive the award Grand Prix du roman de l'Académie française?
|
SELECT ?value WHERE { wd:/François Mauriac/ p:/award received/ ?s . ?s ps:/award received/ wd:/Grand Prix du roman de l'Académie française/ . ?s pq:/for work/ ?value}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which is {in action} {passed by} {Residence Act} ?
|
SELECT ?answer WHERE { wd:/Residence Act/ wdt:/legislated by/ ?X . ?X wdt:/conflict/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Which famous work of Lysippos that has a kind of music intitled nude?
|
SELECT ?answer WHERE { wd:/Lysippos/ wdt:/notable work/ ?answer . ?answer wdt:/genre/ wd:/nude/}
|
Generate a SPARQL query that returns the answer of the following question.
|
Is it true that the spin quantum number of zinc-75 equals to 0?
|
ASK WHERE { wd:/zinc-74/ wdt:/spin quantum number/ ?obj filter(?obj = 0) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What was the population of Kokand in 1970?
|
SELECT ?obj WHERE { wd:/Kokand/ p:/population/ ?s . ?s ps:/population/ ?obj . ?s pq:/point in time/ ?x filter(contains(YEAR(?x),'1970')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
Those pledging allegiance to Ayman al-Zawahiri are part of what organization?
|
select distinct ?obj where { wd:/Ayman al-Zawahiri/ wdt:/allegiance/ ?obj . ?obj wdt:/instance of/ wd:/organization/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
For Bill Varney was Star Wars Episode V: the Empire strikes back of award received in winner?
|
SELECT ?obj WHERE { wd:/Star Wars: Episode V – The Empire Strikes Back/ p:/award received/ ?s . ?s ps:/award received/ ?obj . ?s pq:/winner/ wd:/Bill Varney/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
The constituency of the Senate of Australia is coextensive with what Tasmania?
|
select distinct ?obj where { wd:/Tasmania/ wdt:/coextensive with/ ?obj . ?obj wdt:/instance of/ wd:/constituency of the Senate of Australia/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
Who is the publisher of scientific journal Society of Jesus?
|
select distinct ?sbj where { ?sbj wdt:/publisher/ wd:/Society of Jesus/ . ?sbj wdt:/instance of/ wd:/scientific journal/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is the direction in relation to the location of Mesopotamia?
|
SELECT ?ans_1 ?ans_2 WHERE { wd:/Mesopotamia/ wdt:/direction relative to location/ ?ans_1 . wd:/Mesopotamia/ wdt:/location/ ?ans_2 }
|
Generate a SPARQL query that returns the answer of the following question.
|
What two things are depicted in Composition II in Red, Blue and Yellow?
|
SELECT ?obj WHERE { wd:/Composition II in Red, Blue, and Yellow/ p:/depicts/ ?s . ?s ps:/depicts/ ?obj . ?s pq:/quantity/ ?x filter(contains(?x,'2.0')) }
|
Generate a SPARQL query that returns the answer of the following question.
|
What is confused with acrobatics, whose label is Rawkus Records?
|
SELECT ?answer WHERE { wd:/acrobatics/ wdt:/different from/ ?answer . ?answer wdt:/record label/ wd:/Rawkus Records/}
|
Generate a SPARQL query that returns the answer of the following question.
|
What office does the daughter of Iskandar Muda hold?
|
SELECT ?answer WHERE { wd:/Iskandar Muda/ wdt:/child/ ?X . ?X wdt:/position held/ ?answer}
|
Generate a SPARQL query that returns the answer of the following question.
|
Do the points for Chris Harper equal 10?
|
ASK WHERE { wd:/Chris Harper/ wdt:/points for/ ?obj filter(?obj = 10) }
|
Generate a SPARQL query that returns the answer of the following question.
|
How does the heart connect with arteries in the human body?
|
ASK WHERE { wd:/heart/ wdt:/connects with/ wd:/artery/ . wd:/heart/ wdt:/connects with/ wd:/human body/ }
|
Generate a SPARQL query that returns the answer of the following question.
|
How many editors are there for Vogue magazine?
|
SELECT (COUNT(?obj) AS ?value ) { wd:/British Vogue/ wdt:/editor/ ?obj }
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.