db_id
stringclasses 69
values | question
stringlengths 24
325
| evidence
stringlengths 0
673
| SQL
stringlengths 23
804
| question_id
int64 0
9.43k
| difficulty
stringclasses 1
value |
---|---|---|---|---|---|
video_games
|
List down at least five publishers of the games with number of sales less than 10000.
|
publishers refers to publisher_name; number of sales less than 10000 refers to num_sales < 0.1;
|
SELECT T.publisher_name FROM ( SELECT DISTINCT T5.publisher_name FROM region AS T1 INNER JOIN region_sales AS T2 ON T1.id = T2.region_id INNER JOIN game_platform AS T3 ON T2.game_platform_id = T3.id INNER JOIN game_publisher AS T4 ON T3.game_publisher_id = T4.id INNER JOIN publisher AS T5 ON T4.publisher_id = T5.id WHERE T1.region_name = 'North America' AND T2.num_sales * 100000 < 10000 LIMIT 5 ) t
| 3,500 | |
video_games
|
List the platform ID of the game titled Airborne Troops: Countdown to D-Day.
|
Airborne Troops: Countdown to D-Day refers to game_name = 'Airborne Troops: Countdown to D-Day';
|
SELECT T1.platform_id FROM game_platform AS T1 INNER JOIN game_publisher AS T2 ON T1.game_publisher_id = T2.id INNER JOIN game AS T3 ON T2.game_id = T3.id WHERE T3.game_name = 'Airborne Troops: Countdown to D-Day'
| 3,501 | |
video_games
|
How many games available on PSP were released in 2004?
|
PSP refers to platform_name = 'PSP'; released in 2004 refers to release_year = 2004;
|
SELECT COUNT(T3.game_id) FROM platform AS T1 INNER JOIN game_platform AS T2 ON T1.id = T2.platform_id INNER JOIN game_publisher AS T3 ON T2.game_publisher_id = T3.id WHERE T1.platform_name = 'PSP' AND T2.release_year = 2004
| 3,502 | |
video_games
|
What is the genre of the game titled '999: Nine Hours, Nine Persons, Nine Doors' ?
|
genre of the game refers to genre_name; '999: Nine Hours, Nine Persons, Nine Doors' refers to game_name = '999: Nine Hours, Nine Persons, Nine Doors';
|
SELECT T2.genre_name FROM game AS T1 INNER JOIN genre AS T2 ON T1.genre_id = T2.id WHERE T1.game_name = '999: Nine Hours, Nine Persons, Nine Doors'
| 3,503 | |
video_games
|
When was the game ID 156 released?
|
when the game was released refers to release_year;
|
SELECT T1.release_year FROM game_platform AS T1 INNER JOIN game_publisher AS T2 ON T1.game_publisher_id = T2.id WHERE T2.game_id = 156
| 3,504 | |
video_games
|
What is the diffrence between the number of games produced by Culture Brain that can be played on SNES and DS?
|
difference = SUBTRACT(SUM(platform_name = 'SNES'), SUM(platform_name = 'DS')); SNES refers to platform_name = SNES ; DS refers to platform_name = 'DS' ;
|
SELECT COUNT(CASE WHEN T1.platform_name = 'SNES' THEN T3.game_id ELSE NULL END) - COUNT(CASE WHEN T1.platform_name = 'DS' THEN T3.game_id ELSE NULL END) FROM platform AS T1 INNER JOIN game_platform AS T2 ON T1.id = T2.platform_id INNER JOIN game_publisher AS T3 ON T2.game_publisher_id = T3.id INNER JOIN publisher AS T4 ON T3.publisher_id = T4.id WHERE T4.publisher_name = 'Culture Brain'
| 3,505 | |
video_games
|
In games that can be played on Wii, what is the percentage of games released in 2007?
|
Wii refers to platform_name = 'Wii'; percentage = MULTIPLY(DIVIDE(SUM(release_year = 2007), COUNT(release_year)), 100.0); released in 2007 refers to release_year = 2007;
|
SELECT CAST(COUNT(CASE WHEN T2.release_year = 2007 THEN T3.game_id ELSE NULL END) AS REAL) * 100 / COUNT(T3.game_id) FROM platform AS T1 INNER JOIN game_platform AS T2 ON T1.id = T2.platform_id INNER JOIN game_publisher AS T3 ON T2.game_publisher_id = T3.id WHERE T1.platform_name = 'Wii'
| 3,506 | |
video_games
|
Among games sold in Europe, list the platform ID of games with sales lesser than 30% of the average number of sales.
|
Europe refers to region_name = 'Europe'; sales lesser than 30% of the average number of sales refers to SUM(num_sales) < MULTIPLY(AVG(num_sales), 0.3);
|
SELECT DISTINCT T3.platform_id FROM region AS T1 INNER JOIN region_sales AS T2 ON T1.id = T2.region_id INNER JOIN game_platform AS T3 ON T2.game_platform_id = T3.id WHERE T1.region_name = 'Europe' AND T2.num_sales * 100 * 100000 < ( SELECT AVG(T2.num_sales * 100000) * 30 FROM region AS T1 INNER JOIN region_sales AS T2 ON T1.id = T2.region_id WHERE T1.region_name = 'Europe' )
| 3,507 | |
authors
|
How many authors are affiliated with University of California Berkeley?
|
affiliated refers to Affiliation; 'University of California Berkeley' is the Affiliation
|
SELECT COUNT(Id) FROM Author WHERE Affiliation = 'University of California Berkeley'
| 3,508 | |
authors
|
What is the paper "Stitching videos streamed by mobile phones in real-time" about?
|
"Stitching videos streamed by mobile phones in real-time" is the Title of paper; what the paper is about refers to Keywords
|
SELECT Keyword FROM Paper WHERE Title = 'Stitching videos streamed by mobile phones in real-time'
| 3,509 | |
authors
|
Please list the titles of the papers published in the journal "Concepts in Magnetic Resonance Part A" in 2008.
|
journal "Concepts in Magnetic Resonance Part A" refers to FullName = 'Concepts in Magnetic Resonance Part A'; in 2018 refers to Year = 2018
|
SELECT T2.Title FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Concepts in Magnetic Resonance Part A' AND T2.Year = 2008
| 3,510 | |
authors
|
How many papers were published in the journal "Concepts in Magnetic Resonance Part A"?
|
journal "Concepts in Magnetic Resonance Part A" refers to FullName = 'Concepts in Magnetic Resonance Part A'
|
SELECT COUNT(T2.Id) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Concepts in Magnetic Resonance Part A'
| 3,511 | |
authors
|
What is the url of the journal in which the paper "Area Effects in Cepaea" was published?
|
url refers to HomePage; 'Area Effects in Cepaea' is the Title of paper
|
SELECT T1.HomePage FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Title = 'Area Effects in Cepaea'
| 3,512 | |
authors
|
Among the papers published in the journal "Molecular Brain", how many of them were published in the year 2011?
|
"Molecular Brain" is the FullName of journal
|
SELECT COUNT(T2.Id) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Year = 2011 AND T1.FullName = 'Molecular Brain'
| 3,513 | |
authors
|
How many papers were published in 2011 in the journal whose short name is "Mol Brain"?
|
in 2011 refers to Year = 2011; 'Mol Brain' is the ShortName of journal
|
SELECT COUNT(T2.Id) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Year = 2011 AND T1.ShortName = 'Mol Brain'
| 3,514 | |
authors
|
How many authors does the paper "Equation Solving in Geometrical Theories" have?
|
"Equation Solving in Geometrical Theories" is the title of paper
|
SELECT COUNT(T1.AuthorId) FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title = 'Equation Solving in Geometrical Theories'
| 3,515 | |
authors
|
Please list the names of the authors of the paper "Area Effects in Cepaea".
|
"Area Effects in Cepaea" is the title of paper
|
SELECT T1.Name FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title = 'Area Effects in Cepaea'
| 3,516 | |
authors
|
Among the authors of the paper "Stitching videos streamed by mobile phones in real-time", how many of them are affiliated with Cairo Microsoft Innovation Lab?
|
"FIBER: A Generalized Framework for Auto-tuning Software" is the Title of paper; affiliated refers to Affiliation; University of Tokyo is the affiliation organization
|
SELECT COUNT(T1.AuthorId) FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Affiliation = 'University of Tokyo' AND T2.Title = 'FIBER: A Generalized Framework for Auto-tuning Software'
| 3,517 | |
authors
|
Please list the titles of the paper whose authors include Klaus Zimmermann.
|
"Klaus Zimmermann" is the name of author
|
SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Klaus Zimmermann'
| 3,518 | |
authors
|
Which author of the paper "Incremental Extraction of Keyterms for Classifying Multilingual Documents in the Web" is affiliated with National Taiwan University Department of Computer Science and Information Engineering Taiwan?
|
"Incremental Extraction of Keyterms for Classifying Multilingual Documents in the Web" is the title of paper; affiliated with refers to Affiliation; "National Taiwan University Department of Computer Science and Information Engineering Taiwan" is the Affiliation organization
|
SELECT T1.Name FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title = 'Incremental Extraction of Keyterms for Classifying Multilingual Documents in the Web' AND T1.Affiliation = 'National Taiwan University Department of Computer Science and Information Engineering Taiwan'
| 3,519 | |
authors
|
What is the title of the paper published in 1995 and whose author included Thomas Wiegand?
|
published in 1995 refers to Year = 1995; 'Thomas Wiegand' is the name of author
|
SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Thomas Wiegand' AND T2.Year = 1995
| 3,520 | |
authors
|
How many papers whose authors include Thomas Wiegand were published in 1995?
|
published in 1995 refers to Year = 1995; 'Thomas Wiegand' is the name of author
|
SELECT COUNT(T2.Title) FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Thomas Wiegand' AND T2.Year = 1995
| 3,521 | |
authors
|
What is the average number of papers published in the journal "Molecular Brain" every year from 2008 to 2011?
|
"Molecular Brain" is the FullName of journal; year from 2008 to 2011 refers to Year BETWEEN 2008 AND 2011; average = Divide (Count(Id),4)
|
SELECT CAST(COUNT(T2.Id) AS REAL) / COUNT(DISTINCT T2.Year) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Molecular Brain' AND T2.Year BETWEEN 2008 AND 2011
| 3,522 | |
authors
|
How many more papers in total were published in the journal "Cases Journal" than in the journal "Molecular Brain" in percentage?
|
"Cases Journal" and "Molecular Brain" are FullName of journal; more paper in percentage = Subtract(Count(Id(FullName = 'Cases Journal')), Count(Id(FullName = 'Molecular Brain')))/ Count(Id(FullNmae = 'Molecular Brain')) * 100
|
SELECT SUM(CASE WHEN T1.FullName = 'Cases Journal' THEN 1 ELSE 0 END) - SUM(CASE WHEN T1.FullName = 'Molecular Brain' THEN 1 ELSE 0 END) AS DIFF FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId
| 3,523 | |
authors
|
How many journals have a word "computing" in its full name?
|
word computing refers to FullName LIKE '%computing%'
|
SELECT COUNT(Id) FROM Journal WHERE FullName LIKE '%computing%'
| 3,524 | |
authors
|
Enumerate the paper and author ID of authors with affiliation with Cairo Microsoft Innovation Lab.
|
"Cairo Microsoft Innovation Lab" is the Affiliation organization
|
SELECT PaperId, AuthorId FROM PaperAuthor WHERE Affiliation LIKE 'Cairo Microsoft Innovation Lab%'
| 3,525 | |
authors
|
What is the short name and full name of conference uses the homepage "http://www.informatik.uni-trier.de/~ley/db/conf/ices/index.html"?
|
SELECT ShortName, FullName FROM Conference WHERE HomePage = 'http://www.informatik.uni-trier.de/~ley/db/conf/ices/index.html'
| 3,526 | ||
authors
|
List down the author ID of authors with a name of "Peter".
|
"Peter" is the name of author
|
SELECT AuthorId FROM PaperAuthor WHERE Name = 'Peter'
| 3,527 | |
authors
|
List the title of papers with a conference ID from 160 to 170, include their conference short name.
|
conference ID from 160 to 170 refers to ConferenceId BETWEEN 160 AND 170
|
SELECT DISTINCT T1.Title, T2.ShortName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.ConferenceId BETWEEN 160 AND 170
| 3,528 | |
authors
|
What is the title and journal homepage of the latest published paper?
|
latest published paper refers to Max(Year)
|
SELECT T1.Title, T2.HomePage FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id ORDER BY T1.Year DESC LIMIT 1
| 3,529 | |
authors
|
In year 1999, list the titles and conference's short name of paper authored by someone named "Philip".
|
in year 1999 refers to Year = 1999; someone named "Philip" refers to Name LIKE 'Philip%'
|
SELECT T1.Title, T3.ShortName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Conference AS T3 ON T1.ConferenceId = T3.Id WHERE T1.Year = 1999 AND T2.Name LIKE 'Philip%'
| 3,530 | |
authors
|
What is the total number and conference's homepage of papers held in a conference with an ID of 187 during 1990 to 2000?
|
Id of 187 refers to ConferenceId = 187; during 1990 to 2000 refers to Year BETWEEN 1990 and 2000; total number of conference refers to Count(ConferenceId = 187)
|
SELECT COUNT(T2.ConferenceId), T1.HomePage FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T2.Year BETWEEN 1990 AND 2000 AND T2.ConferenceId = 187
| 3,531 | |
authors
|
What is the title of the paper published in 2003 by an author with affiliation with Department of Network Science, Graduate School of Information Systems, The University of Electro-Communications?
|
published in 2003 refers to Year = 2003; 'Department of Network Science, Graduate School of Information Systems, The University of Electro-Communications' is the Affiliation organization
|
SELECT DISTINCT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Affiliation = 'Department of Network Science, Graduate School of Information Systems, The University of Electro-Communications' AND T2.Year = 2003
| 3,532 | |
authors
|
List the authors and journal short name of the papers with "chemiluminescence" in its title and has a journal ID from 245 to 250.
|
with "chemiluminescence" in its title refers to Title LIKE 'chemiluminescence%'; journal ID from 245 to 250 refers to JournalId BETWEEN 245 AND 250
|
SELECT T2.Name, T3.ShortName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Journal AS T3 ON T1.JournalId = T3.Id WHERE T1.JournalId BETWEEN 245 AND 250 AND T1.Title LIKE '%chemiluminescence%'
| 3,533 | |
authors
|
Among the papers with conference ID of 0, list down the authors of papers with a journal ID less than 100.
|
Conference ID of 0 refers to ConferenceId = 0; journal ID of less than 100 refers to JournalId < 100
|
SELECT DISTINCT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.ConferenceId = 0 AND T1.JournalId < 100
| 3,534 | |
authors
|
What is the title and author ID of paper with conference ID less than 100 in year 2006?
|
conference ID less than 100 refers to ConferenceId < 100; in year 2006 refers to Year = 2006
|
SELECT DISTINCT T1.Title, T2.AuthorId FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Year = 2006 AND T1.ConferenceId < 100
| 3,535 | |
authors
|
What are the paper IDs of papers presented in conferences has a homepage starts with "http://www.informatik.uni-trier.de/~ley/db/conf/"?
|
homepage starts with "http://www.informatik.uni-trier.de/~ley/db/conf/" refers to HomePage LIKE 'http://www.informatik.uni-trier.de/~ley/db/conf/%'
|
SELECT T1.Id FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.HomePage LIKE 'http://www.informatik.uni-trier.de/~ley/db/conf/%'
| 3,536 | |
authors
|
What are the journal homepages and author ID of the papers published in 2000 to 2005 with a word "social" in its title?
|
in 2000 to 2005 refers to Year BETWEEN 2000 AND 2005; a word "social" in its title refers to Title = '%SOCIAL%'
|
SELECT T3.HomePage, T2.AuthorId FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Journal AS T3 ON T1.JournalId = T3.Id WHERE T1.Year BETWEEN 2000 AND 2005 AND T1.Title LIKE '%SOCIAL%'
| 3,537 | |
authors
|
What is the author ID and their affiliations of authors of the papers with a journal ID of 0 and published in 2009.
|
published in 2009 refers to Year = 2009; journal ID of 0 refers to JournalId = 0
|
SELECT DISTINCT T2.AuthorId, T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.JournalId = 0 AND T1.Year = 2009 AND T2.Affiliation IS NOT NULL
| 3,538 | |
authors
|
In papers with journal IDs from 200 to 300 and with its short name starts with A, what is the percentage of papers with conference ID of 0?
|
journal ID of 200 to 300 refers to JournalId BETWEEN 200 AND 300; short name starts with A refers to ShortName LIKE 'A%'; Percentage = Divide (Count(ConferenceId = 0), Count(ConferenceId)) * 100
|
SELECT CAST(SUM(CASE WHEN T1.ConferenceId = 0 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(T1.ConferenceId) FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.JournalId BETWEEN 200 AND 300 AND T2.ShortName LIKE 'A%'
| 3,539 | |
authors
|
Within the year of 2001 to 2010, find the paper published rate of 2001.
|
year of 2001 to 2010 refers to Year BETWEEN 2001 AND 2010; Percentage = Divide(Count (PaperId(Year = 2001)), Count (PaperID(Year BETWEEN 2001 AND 2010))) * 100
|
SELECT CAST(SUM(CASE WHEN Year = 2001 THEN 1 ELSE 0 END) AS REAL) / COUNT(Id) FROM Paper WHERE Year >= 2001 AND Year < 2011
| 3,540 | |
authors
|
Write down the conference full name of "ICWE" and it's homepage address.
|
"ICWE" is the ShortName of conference
|
SELECT FullName, Homepage FROM Conference WHERE ShortName = 'ICWE'
| 3,541 | |
authors
|
Between "Standford University" and "Massachusetts Institute of Technolgy", which organization had affiliated with more author.?
|
"Standford University" and "Massachusetts Institute of Technolgy" are affiliation organization; affiliated with more author refers to Max(Count(Id))
|
SELECT Affiliation FROM Author WHERE Affiliation IN ('Stanford University', 'Massachusetts Institute of Technology') GROUP BY Affiliation ORDER BY COUNT(Id) DESC LIMIT 1
| 3,542 | |
authors
|
What is the ratio of author with affiliation and without affiliation?
|
with affiliation refers to Affiliation is not Null; without affiliation refers to Affiliation IS NULL; Ration = Count(Id(Affiliation is NOT NULL)) : Count (Id (Affiliation IS NULL))
|
SELECT CAST(SUM(CASE WHEN Affiliation IS NULL THEN 1 ELSE 0 END) AS REAL) / COUNT(*) FROM Author
| 3,543 | |
authors
|
Write down the author's name and IDs who are affiliated with Univeristiy of Oulu.
|
"University of Oulu" is the Affiliation Organization
|
SELECT Name, id FROM Author WHERE Affiliation = 'University of Oulu'
| 3,544 | |
authors
|
Write down the title and affiliation of the preprinted paper written by "Roger J.Marshal".
|
"Roger J. Marshall" is the name of author; preprinted paper refers to ConferenceId = 0 AND JournalId = 0
|
SELECT T1.Title, T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Roger J. Marshall' AND T1.ConferenceID = 0 AND T1.JournalID = 0
| 3,545 | |
authors
|
Find the paper ID, title, published year and journal's full name of the paper which included the most number in author.
|
most number in author refers to Max (Count(PaperId))
|
SELECT T1.Id, T1.Title, T1.Year, T3.FullName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Journal AS T3 ON T1.JournalId = T3.Id GROUP BY T2.AuthorId ORDER BY COUNT(T2.AuthorId) DESC LIMIT 1
| 3,546 | |
authors
|
Describe the paper title, published year, conference's short name and included author names in the paper ID of 15.
|
paper ID of 15 refers to PaperId = 15
|
SELECT DISTINCT T1.Title, T1.Year, T3.ShortName, T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Conference AS T3 ON T1.ConferenceId = T3.Id WHERE T1.Id = 15
| 3,547 | |
authors
|
Among author ID of under 1000, who published the paper in affiliation with Zurich, ETH, provide paper ID, year and keyword if any.
|
author ID of under 100 refers to AuthorId < 100; 'Zurich, ETH' is the Affiliation
|
SELECT T2.Id, T2.Year, T2.Keyword FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.AuthorId < 1000 AND T1.Affiliation = 'Zurich, ETH'
| 3,548 | |
authors
|
Among the author included in the paper of "Inspection resistant memory: Architectural support for security from physical examination", write down the author name and ID who were affiliated with Microsoft Research, USA.
|
"Inspection resistant memory: Architectural support for security from physical examination" is the title of paper; 'Microsoft Research, USA' is the Affiliation
|
SELECT T2.Name, T1.Id FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Inspection resistant memory: Architectural support for security FROM physical examination' AND T2.Affiliation = 'Microsoft Research, USA'
| 3,549 | |
authors
|
Write down the author name, affiliation, jounal short name and full name of the paper "Decreased Saliva Secretion and Down-Regulation of AQP5 in Submandibular Gland in Irradiated Rats".
|
"Decreased Saliva Secretion and Down-Regulation of AQP5 in Submandibular Gland in Irradiated Rats" is the Title of paper
|
SELECT T2.Name, T2.Affiliation, T3.ShortName, T3.FullName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Journal AS T3 ON T1.JournalId = T3.Id WHERE T1.Title = 'Decreased Saliva Secretion and Down-Regulation of AQP5 in Submandibular Gland in Irradiated Rats'
| 3,550 | |
authors
|
List the paper title and journal ID which were published under the conference name of "International Symposium of Robotics Research".
|
"International Symposium of Robotics Research" is the FullName of conference;
|
SELECT DISTINCT T2.Title, T2.JournalId FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.FullName = 'International Symposium of Robotics Research' AND T2.Year = 2003
| 3,551 | |
authors
|
Name the title, year and keyword of the paper which were written by the author ID of 661002 with the affiliation of "Scientific Computing and Imaging Institute, University of Utah, UT 84112, USA" organization.
|
"661002" is the AuthorId; "Scientific Computing and Imaging Institute, University of Utah, UT 84112, USA" is the Affiliation organization
|
SELECT T2.Title, T2.Year, T2.Keyword FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.AuthorId = 661002 AND T1.Affiliation = 'Scientific Computing and Imaging Institute, University of Utah, UT 84112, USA'
| 3,552 | |
authors
|
Calculate the differences of the paper number with the journal name of IWC in 2000 and 2010.
|
"IWC" is the ShortName of journal; '2000' and '2010' are Year; Difference = Subtract(Count(Paper.Id(Year = 2000)), Count(Paper.Id(Year = 2010)))
|
SELECT SUM(CASE WHEN T2.Year = 2000 THEN 1 ELSE 0 END) - SUM(CASE WHEN T2.Year = 2010 THEN 1 ELSE 0 END) AS DIFF FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.ShortName = 'IWC'
| 3,553 | |
authors
|
Provide any four valid Journal ID along with short name and full name of the papers which were made in 2013.
|
valid journal ID refers to JournalId! = 0 and JournalId! = -1; made in 2013 refers to Year = 2013
|
SELECT DISTINCT T2.JournalId, T1.ShortName, T1.FullName FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Year = 2013 AND T2.JournalId != 0 AND T2.JournalId != -1 LIMIT 4
| 3,554 | |
authors
|
Under the conference name of MICRO, calculate how many more paper is needed to published in 1971 to 1980 in average by yearly to get equivalent to the number of paper from 1991 to 2000. Write down the title and author name of the paper that were actually published during 1971 to 1980 with the conference name with MICRO.
|
"MICRO" is the ShortName of conference; in 1971 to 1980 refers to Year BETWEEN '1971' AND '1980'; in 1991 to 2000 refers to Year BETWEEN '1991' AND '2000': Average needed paper = Subtract (Count(PaperId(Year BETWEEN '1991' AND '2000')), Count(PaperId(Year BETWEEN '1971' AND '1980')))/10
|
SELECT T2.title, T3.name, T1.FullName FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.id = T2.ConferenceId INNER JOIN PaperAuthor AS T3 ON T1.id = T3.PaperId WHERE T1.ShortName = 'MICRO' AND T2.Year BETWEEN '1971' AND '1980'
| 3,555 | |
authors
|
How many of the papers are preprinted or not published?
|
preprinted or not published refers to Year = 0
|
SELECT COUNT(Id) FROM Paper WHERE Year = 0
| 3,556 | |
authors
|
State the full name of conference for paper "The Dissimilarity Representation as a Tool for Three-Way Data Classification: A 2D Measure".
|
"The Dissimilarity Representation as a Tool for Three-Way Data Classification: A 2D Measure" is the Title of paper
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'The Dissimilarity Representation as a Tool for Three-Way Data Classification: A 2D Measure'
| 3,557 | |
authors
|
What is the homepage address for paper "Energy-efficiency bounds for noise-tolerant dynamic circuits"?
|
"Energy-efficiency bounds for noise-tolerant dynamic circuits" is the Title of paper
|
SELECT T2.HomePage FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'Energy-efficiency bounds for noise-tolerant dynamic circuits'
| 3,558 | |
authors
|
Write down the name of authors for paper with id from 101 to 105.
|
paper with ID from 101 to 105 refers to Id BETWEEN 100 AND 106
|
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Id > 100 AND T1.Id < 106
| 3,559 | |
authors
|
Among the papers published in 2009, pick 10 and list down the conference's short name of these papers.
|
published in 2009 refers to Year = 2009
|
SELECT T2.PaperId, T4.ShortName FROM Author AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.AuthorId INNER JOIN Paper AS T3 ON T2.PaperId = T3.Id INNER JOIN Conference AS T4 ON T3.ConferenceId = T4.Id WHERE T3.Year = 2009 LIMIT 10
| 3,560 | |
authors
|
Write down homepage URL of journal for paper "364: Induction of Mixed Chimerism and Transplantation Tolerance in a Non-Human Primate Lung Allograft Model: Early Results".
|
paper "364: Induction of Mixed Chimerism and Transplantation Tolerance in a Non-Human Primate Lung Allograft Model: Early Results" refers to Title = '364: Induction of Mixed Chimerism and Transplantation Tolerance in a Non-Human Primate Lung Allograft Model: Early Results'
|
SELECT T2.HomePage FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Title = '364: Induction of Mixed Chimerism and Transplantation Tolerance in a Non-Human Primate Lung Allograft Model: Early Results'
| 3,561 | |
authors
|
List down all paper name that were published in conference "International Conference on Internet Computing".
|
conference "International Conference on Internet Computing" refers to FullName = 'International Conference on Internet Computing'; paper name refers to Title
|
SELECT T1.Title FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'International Conference on Internet Computing' AND T1.Title <> ''
| 3,562 | |
authors
|
Among papers that were published in 2005, provide the author name of paper with key words of "LOAD; IDE; SNP; haplotype; asso- ciation studies".
|
in 2005 refers to Year = '2005'; key words of "LOAD; IDE; SNP; haplotype; asso- ciation studies" refers to Keyword = 'LOAD; IDE; SNP; haplotype; asso- ciation studies'
|
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Year = 2005 AND T1.Keyword = 'KEY WORDS: LOAD IDE SNP haplotype asso- ciation studies'
| 3,563 | |
authors
|
How many authors have written paper "145 GROWTH HORMONE RECEPTORS AND THE ONSET OF HYPERINSULINEMIA IN THE OBESE ZUCKER RAT: "?
|
paper "145 GROWTH HORMONE RECEPTORS AND THE ONSET OF HYPERINSULINEMIA IN THE OBESE ZUCKER RAT: " refers to Title like'%145 GROWTH HORMONE RECEPTORS AND THE ONSET OF HYPERINSULINEMIA IN THE OBESE ZUCKER RAT:%'
|
SELECT COUNT(DISTINCT T2.Name) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = '145 GROWTH HORMONE RECEPTORS AND THE ONSET OF HYPERINSULINEMIA IN THE OBESE ZUCKER RAT: '
| 3,564 | |
authors
|
Who are the co-authors for Jei Keon Chae and what is the title of paper written by them?
|
'Jei Keon Chee' is the name of author;
|
SELECT T2.AuthorId, T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Jei Keon Chae'
| 3,565 | |
authors
|
What are the conference name and journal name of paper written by Shueh-Lin Yau? List down the name of co-authors and provide the title of that paper.
|
Shueh-Lin Yau is the name of author;
|
SELECT T1.ConferenceId, T1.JournalId, T2.Name, T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Conference AS T3 ON T1.ConferenceId = T3.Id INNER JOIN Journal AS T4 ON T1.JournalId = T4.Id WHERE T2.Name = 'Shueh-Lin Yau'
| 3,566 | |
authors
|
How many papers were preprinted between the years 1990 and 2000?
|
years 1990 and 2000 refers to Year BETWEEN '1990' AND '2000'; papers refers to COUNT(id)
|
SELECT COUNT(id) FROM Paper WHERE Year BETWEEN '1990' AND '2000' AND ConferenceId = 0 AND JournalId = 0
| 3,567 | |
authors
|
List the names of all authors affiliated with Birkbeck University of London.
|
affiliated with Birkbeck University of London refers to Affiliation = 'Birkbeck University of London'
|
SELECT Name FROM Author WHERE Affiliation = 'Birkbeck University of London'
| 3,568 | |
authors
|
List the short name of all conferences whose full name begins with International Symposium.
|
full name refers to FullName LIKE 'International Symposium%'
|
SELECT ShortName FROM Conference WHERE FullName LIKE 'International Symposium%'
| 3,569 | |
authors
|
How many journals do not have a website?
|
do not have a website refers to HomePage = ''
|
SELECT COUNT(HomePage) FROM Journal WHERE HomePage = ''
| 3,570 | |
authors
|
List author name for articles that are preprinted but not published.
|
articles that are preprinted but not published refers to Year = 0
|
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Year = 0
| 3,571 | |
authors
|
List author affiliation for papers whose topic is Quantum Physics.
|
topic is Quantum Physics refers to Keyword = 'Quantum Physics'
|
SELECT T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Keyword = 'Quantum Physics'
| 3,572 | |
authors
|
Identify by conference full name all papers in which a journal was not published but a conference.
|
journal was not published but a conference refers to ConferenceId ! = 0 And JournalId = 0 Year ! = 0
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.ConferenceId != 0 AND T1.JournalId = 0 AND T1.Year != 0
| 3,573 | |
authors
|
Identify by papers title those in which conferences have been published that do not have a website..
|
do not have a website refers to HomePage IS NULL OR HomePage = ''
|
SELECT T2.Title FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.HomePage = '' AND T2.Title <> ''
| 3,574 | |
authors
|
Identify by publication year in the paper database all journals that don't have short name.
|
don't have short name refers to ShortName is NULL OR ShortName = ''
|
SELECT DISTINCT T2.Year, FullName FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.ShortName = ''
| 3,575 | |
authors
|
What is the affiliation of the author writing in the journal 'A combined search for the standard model Higgs boson at s = 1.96 Â TeV'?
|
journal 'A combined search for the standard model Higgs boson at s = 1.96 Â TeV' refers to Title = 'A combined search for the standard model Higgs boson at s = 1.96 Â TeV'
|
SELECT T1.Affiliation FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title = 'A combined search for the standard model Higgs boson at s = 1.96 Â TeV'
| 3,576 | |
authors
|
Indicate the name of all the journals published in the paper database in the year 2001.
|
name of all the journals refers to FullName
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Year = 2001 AND T1.ConferenceId > 0 AND T1.JournalId > 0
| 3,577 | |
authors
|
What is the name of the co-authors of the paper titled 'Particle identification using the time-over-threshold method in the ATLAS Transition Radiation Tracker'?
|
paper titled 'Particle identification using the time-over-threshold method in the ATLAS Transition Radiation Tracker' refers to Title = 'Particle identification using the time-over-threshold method in the ATLAS Transition Radiation Tracker'
|
SELECT T1.Name FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title = 'Particle identification using the time-over-threshold method in the ATLAS Transition Radiation Tracker'
| 3,578 | |
authors
|
In how many papers and in what years was the International Conference on Database Theory published?
|
the International Conference on Database Theory refers to FullName = 'International Conference on Database Theory'; published refers to year ! = 0
|
SELECT COUNT(T1.Id) AS PAPER, COUNT(DISTINCT T1.Year) AS YEARS FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE year != 0 AND T2.FullName = 'International Conference on Database Theory'
| 3,579 | |
authors
|
What is the full name of the journals that are published in the database papers whose topic is Sustainability?
|
topic is Sustainability refers to Keyword = 'Sustainability'
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Keyword = 'Sustainability'
| 3,580 | |
authors
|
What is the name of the authors of papers in which conferences have been published whose full name includes the word Workshop?
|
full name includes the word Workshop refers to FullName LIKE '%Workshop%'
|
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Conference AS T3 ON T1.ConferenceId = T3.Id WHERE T3.FullName LIKE '%Workshop%'
| 3,581 | |
authors
|
What percentage of authors of the paper about Charged particle multiplicity are affiliated with INFN?
|
about Charged particle multiplicity refers to Title which contains 'Charged particle multiplicity'; affiliated with INFN refers to Affiliation LIKE '%INFN%' ; percentage refers to DIVIDE(COUNT(Affiliation LIKE '%INFN%' ), COUNT(AuthorId)) * 100%
|
SELECT CAST((SUM(CASE WHEN T1.Affiliation LIKE '%INFN%' THEN 1 ELSE 0 END)) AS REAL) * 100 / COUNT(T2.Id) FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T2.Title LIKE '%Charged particle multiplicity%'
| 3,582 | |
authors
|
What percentage of journals whose short name begins with ANN were published in the paper database in 1989?
|
short name begins with ANN refers to ShortName like 'ANN%' ; percentage refers to DIVIDE(COUNT(ShortName like 'ANN%' ), COUNT(id)) * 100%; in 1989 refers to Year = 1989
|
SELECT CAST((SUM(CASE WHEN T1.ShortName LIKE 'ANN%' THEN 1 ELSE 0 END)) AS REAL) * 100 / COUNT(T1.ShortName) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Year = 1989
| 3,583 | |
authors
|
How many authors were associated with the Microsoft Research when paper number 1 was written?
|
associated with the Microsoft Research refers to Affiliation contains 'Microsoft Research'; paper number 1 refers to PaperId = 1
|
SELECT COUNT(PaperId) FROM PaperAuthor WHERE Affiliation LIKE '%Microsoft Research%'
| 3,584 | |
authors
|
What was the topic of the article "A Formal Approach to Service Component Architecture" and when was it published?
|
article "A Formal Approach to Service Component Architecture" refers to Title = 'A Formal Approach to Service Component Architecture'; topic of the article refers to Keyword
|
SELECT Keyword, Year FROM Paper WHERE Title = 'A Formal Approach to Service Component Architecture'
| 3,585 | |
authors
|
What percentage of papers were preprinted after the year 2000?
|
after the year 2000 refers to Year > 2000; preprinted refers to ConferenceId = 0 AND JournalId = 0; percentage refers to DIVIDE(COUNT(ConferenceId = 0 AND JournalId = 0 AND Year > 2000), COUNT(Id))
|
SELECT CAST(SUM(CASE WHEN Year > 2000 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(Id) FROM Paper
| 3,586 | |
authors
|
Please list the names of the authors of the paper "Hypermethylation of the <I>TPEF/HPP1</I> Gene in Primary and Metastatic Colorectal Cancers".
|
paper "Hypermethylation of the <I>TPEF/HPP1</I> Gene in Primary and Metastatic Colorectal Cancers" refers to Title = 'Hypermethylation of the <I>TPEF/HPP1</I> Gene in Primary and Metastatic Colorectal Cancers'
|
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Hypermethylation of the <I>TPEF/HPP1</I> Gene in Primary and Metastatic Colorectal Cancers'
| 3,587 | |
authors
|
What is the full name of the journal that published the paper "Multiple paternity in a natural population of a salamander with long-term sperm storage"?
|
paper "Multiple paternity in a natural population of a salamander with long-term sperm storage" refers to Title = 'Multiple paternity in a natural population of a salamander with long-term sperm storage'
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Title = 'Multiple paternity in a natural population of a salamander with long-term sperm storage'
| 3,588 | |
authors
|
How many papers were in the journal "Iet Software/iee Proceedings - Software"?
|
journal "Iet Software/iee Proceedings - Software" refers to FullName = 'Iet Software/iee Proceedings - Software'; papers refers to COUNT(JournalId)
|
SELECT COUNT(T1.JournalId) FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T2.FullName = 'Iet Software/iee Proceedings - Software'
| 3,589 | |
authors
|
What is the full name of the conference where paper number 5 was published?
|
paper number 5 refers to Id = 5
|
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Id = 5
| 3,590 | |
authors
|
Please list the titles of any two papers that Jundu has written.
|
papers that Jundu has written refers to Name LIKE '%Jun du%'
|
SELECT T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name LIKE 'Jun du%' LIMIT 2
| 3,591 | |
authors
|
What is the title of the paper that was written by Cheng Huang and affiliated with Microsoft?
|
paper that was written by Cheng Huang refers to Name = 'Cheng Huang'; affiliated with Microsoft refers to Affiliation LIKE 'Microsoft %'
|
SELECT T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Cheng Huang' AND T2.Affiliation = 'Microsoft'
| 3,592 | |
authors
|
Please provide the full name of the conference where one of the papers of Jean-luc Hainaut were published.
|
papers of Jean-luc Hainaut refers to Name = 'Jean-luc Hainaut'
|
SELECT DISTINCT T3.FullName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Conference AS T3 ON T1.ConferenceId = T3.Id WHERE T2.Name = 'Jean-luc Hainaut' LIMIT 1
| 3,593 | |
authors
|
What are the three journals that the papers written by Andrew Cain were published in? Please provide your answer with the full name of each journal.
|
written by Andrew Cain refers to Name = 'Andrew Cain'
|
SELECT T3.FullName FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId INNER JOIN Journal AS T3 ON T1.JournalId = T3.Id WHERE T2.Name = 'Andrew Cain'
| 3,594 | |
authors
|
Please list all of the associations that the authors of the paper "FIBER: A Generalized Framework for Auto-tuning Software" are affiliated with.
|
paper "FIBER: A Generalized Framework for Auto-tuning Software" refers to Title = 'FIBER: A Generalized Framework for Auto-tuning Software'; are affiliated with refers to Affiliation
|
SELECT DISTINCT T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'FIBER: A Generalized Framework for Auto-tuning Software'
| 3,595 | |
authors
|
Please provide the titles of any two papers that are either preprinted or unpublished along with the full name of the journal to which those papers belong.
|
papers that are either preprinted or unpublished along refers to Year = 0
|
SELECT T1.Title, T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Year < 1 LIMIT 2
| 3,596 | |
authors
|
What is the journal's short and full names that feature papers on the "Materials" topic?
|
papers on the "Materials" topic refers to Keyword = 'Materials'
|
SELECT T2.ShortName, T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Keyword LIKE '%Materials%'
| 3,597 | |
authors
|
List the names of authors affiliated with the University of Oxford in alphabetical order.
|
affiliated with the University of Oxford refers to Affiliation = 'University of Oxford'
|
SELECT Name FROM Author WHERE Affiliation = 'University of Oxford' ORDER BY Name ASC
| 3,598 | |
authors
|
List the short name and home page URL of all the international conferences on artificial intelligence.
|
all the international conferences on artificial intelligence refers to FullName LIKE 'International Conference on Artificial Intelligence%'
|
SELECT ShortName, HomePage FROM Conference WHERE FullName LIKE 'International Conference on Artificial Intelligence%'
| 3,599 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.