db_id
stringclasses
68 values
question
stringlengths
24
325
evidence
stringlengths
0
580
SQL
stringlengths
23
728
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
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'
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
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 <> ''
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 = ''
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
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'
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'
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'
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%'
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%'
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
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%'
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'
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
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'
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'
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'
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
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'
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
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'
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'
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
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%'
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
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%'
authors
Find the names of papers which are published in the year 1996.
SELECT Title FROM Paper WHERE year = 1996
authors
List the title and author's name of papers published in the 2007 Neoplasia journal.
published in the 2007 refers to Year = 2007; Neoplasia journal refers to FullName = 'Neoplasia'
SELECT T1.Title, T2.Name 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 T3.FullName = 'Neoplasia' AND T1.Year = 2007
authors
Among the authors affiliated with Soongsil University, list the authors' names and papers published during the year 2000.
authors affiliated with Soongsil University refers to Affiliation = 'Soongsil University'
SELECT T2.Title, T1.Name FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Affiliation = 'Soongsil University' AND T2.Year = 2000
authors
Give the title and author's name of the papers published between 2000 and 2005 that include the topic optical properties.
published between 2000 and 2005 refers to Year BETWEEN 2000 AND 2005; include the topic optical properties refers to Keyword LIKE '%optical properties%'
SELECT T1.Title, T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Keyword LIKE '%optical properties%' AND T1.Year BETWEEN 2000 AND 2005 AND T1.Title <> ''
authors
Give the Title and author's name of the books that were preprint in 1997.
in 1997 refers to Year = 1997; books that were preprint refers to ConferenceId = 0 AND JournalId = 0
SELECT DISTINCT T2.Name, T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.ConferenceId = 0 AND T1.JournalId = 0 AND T1.Year = 1997 AND T1.Title <> ''
authors
Write the titles of papers published by Adam Jones and the journal name in which it was published from 2005 to 2010.
published from 2005 to 2010 refers to Year BETWEEN 2005 AND 2010; published by Adam Jones refers to Name = 'Adam Jones'
SELECT T1.Title 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 = 'Adam Jones' AND T1.Year BETWEEN 2005 AND 2010
authors
How many authors is affiliated to the organization "Otterbein University"?
Otterbein University is an Affiliation
SELECT COUNT(Name) FROM Author WHERE Affiliation = 'Otterbein University'
authors
How many authors drafted the paper "Subcellular localization of nuclease in barley aleurone"?
'Subcellular localization of nuclease in barley aleurone' is the title of paper
SELECT COUNT(DISTINCT T2.Name) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Subcellular localization of nuclease in barley aleurone'
authors
What is the full name of the conference in which the paper titled "Extended Fuzzy Regression Models" was published?
'Extended Fuzzy Regression Models' is the title of paper; full name of the conference refers to FullName
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'Extended Fuzzy Regression Models'
authors
How many papers are published under the conference "Mathematics of Program Construction "?
'Mathematics of Program Construction' is the FullName of conference
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'Mathematics of Program Construction'
authors
Who is the author of the paper titled "Open Sourcing Social Solutions (Building Communities of Change)"?
'Open Sourcing Social Solutions (Building Communities of Change)' is a title of the paper; author refers to PaperAuthor.Name
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Open Sourcing Social Solutions (Building Communities of Change)'
authors
List all the title of the paper that Jianli Hua published.
Jianli Hua is the author of a paper
SELECT T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Jianli Hua'
authors
Who authored the paper titled "Testing timed automata "?
'Testing timed automata' is a title of a paper; Who authored refers to PaperAuthor.Name
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Testing timed automata'
authors
How many papers are published in year 2000 under the conference "SSPR"?
SSPR is a ShortName; papers refers to Paper.Id
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Year = 2000 AND T2.ShortName = 'SSPR'
authors
List all the paper that the journal "Theoretical Computer Science " published in 2003.
'Theoretical Computer Science' is the FullName; paper refers to Title; published in 2003 refers to Year = 2003
SELECT DISTINCT T1.Title FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T2.FullName = 'Theoretical Computer Science' AND T1.Year = 2003 AND T1.Title <> ''
authors
What is the conference homepage URL of the paper titled "Quality evaluation of long duration audiovisual content"?
homepage URL refers to HomePage; 'Quality evaluation of long duration audiovisual content' is the Title
SELECT T2.HomePage FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'Quality evaluation of long duration audiovisual content'
authors
Among the author who drafted the paper "A Randomized Comparison of Sirolimus- Versus Paclitaxel-Eluting Stent Implantation in Patients With Diabetes Mellitus", which of them is/are affiliated with the Asan Medical Center, University of Ulsan College of Medicine, Seoul, Korea ?
author refers to PaperAuthor.Name; 'A Randomized Comparison of Sirolimus- Versus Paclitaxel-Eluting Stent Implantation in Patients With Diabetes Mellitus' is the title; 'Asan Medical Center, University of Ulsan College of Medicine, Seoul, Korea' is an Affiliation
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Affiliation = 'Asan Medical Center, University of Ulsan College of Medicine, Seoul, Korea' AND T1.Title = 'A Randomized Comparison of Sirolimus- Versus Paclitaxel-Eluting Stent Implantation in Patients With Diabetes Mellitus'
authors
How many papers are published under the journal "Software - Practice and Experience"?
papers refers to Paper.Id; 'Software - Practice and Experience' is the FullName of a journal;
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T2.FullName = 'Software - Practice and Experience'
authors
List all the paper that were under the conference homepage URL "http://www.irma-international.org/".
paper refers to Paper.Title; http://www.irma-international.org/ is the HomePage
SELECT T1.Title FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.HomePage = 'http://www.irma-international.org/'
authors
Calculate the total average number of papers published from 2002 to 2010 under the conference "Information and Knowledge Engineering".
average number of papers refers to DIVIDE(count(id), 9); published from 2002 to 2010 refers to Year BETWEEN 2002 AND 2010; 'Information and Knowledge Engineering' is the FullName of conference;
SELECT CAST(COUNT(T1.Id) AS REAL) / COUNT(DISTINCT T1.Year) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'Information and Knowledge Engineering' AND T1.Year >= 2002 AND T1.Year <= 2010
authors
From year 1991 to 2000, calculate the difference betweeen the total number of papers published under the conference "International Conference on Supercomputing " and "Informatik & Schule"?
From year 1991 to 2000 refers to Year BETWEEN 1991 AND 2000; papers refers to Paper.Id; 'International Conference on Supercomputing' AND 'Informatik & Schule' are the FullName of conference; calculate the difference between the total number of papers of these two conferences refers to SUBTRACT(SUM(Paper.Id where FullName = 'International Conference on Supercomputing'), SUM(Paper.Id where FullName = 'Informatik & Schule'))
SELECT SUM(CASE WHEN T2.FullName = 'Informatik & Schule' THEN 1 ELSE 0 END) - SUM(CASE WHEN T2.FullName = 'International Conference on Supercomputing' THEN 1 ELSE 0 END) AS DIFF FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Year > 1990 AND T1.Year < 2001
authors
What is the short name for "Software - Concepts and Tools / Structured Programming"?
'Software - Concepts and Tools / Structured Programming' is the FullName;
SELECT ShortName FROM Journal WHERE FullName = 'Software - Concepts and Tools / Structured Programming'
authors
Which journal was the paper "Education, democracy and growth" published on? Give the full name of the journal.
'Education, democracy and growth' is the title of a paper
SELECT T1.FullName FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Title = 'Education, democracy and growth'
authors
Give the number of papers that were published on "IEEE Transactions on Nuclear Science" in 1999.
'IEEE Transactions on Nuclear Science' is the FullName of journal; 1999 refers to Year = '1999'; papers refers to Paper.Id
SELECT COUNT(T2.Id) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'IEEE Transactions on Nuclear Science' AND T2.Year = 1999
authors
What was the name of the paper that was published on "IEEE Transactions on Pattern Analysis and Machine Intelligence" in 2011?
'IEEE Transactions on Pattern Analysis and Machine Intelligence' is the FullName of journal; 2011 refers to Year = '2011'; name of the paper refers to Title of paper
SELECT T2.Title FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'IEEE Transactions on Pattern Analysis and Machine Intelligence' AND T2.Year = 2011 AND T2.Title <> ''
authors
What are the keywords for the paper which was published on "Modeling Identification and Control" in 1994?
'Modeling Identification and Control' is the FullName of the journal; 1994 refers to Year = '1994'; if the year is "0", it means this paper is preprint, or not published
SELECT T2.Keyword FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Modeling Identification and Control' AND T2.Year = 1994
authors
For the paper which was presented by "Zvezdan Protić", was it preprinted?
Year = 0 means this paper is preprint, or not published
SELECT CASE WHEN T1.Year = 0 THEN 'TRUE' ELSE 'FALSE' END FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Zvezdan Protić' AND T1.ConferenceId = 0 AND T1.JournalId = 0
authors
At which conference was the paper "Skew-Circulant Preconditioners for Systems of LMF-Based ODE Codes" presented?
'Skew-Circulant Preconditioners for Systems of LMF-Based ODE Codes' is the Title of the paper; conference refers to Conference.FullName
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'Skew-Circulant Preconditioners for Systems of LMF-Based ODE Codes'
authors
Tell the number of papers that were presented at "International Symposium on Software Testing and Analysis" conference.
'International Symposium on Software Testing and Analysis' is the FullName of the conference; papers refers to Paper.Id
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'International Symposium on Software Testing and Analysis'
authors
Gives the home page of the conference where the paper "Increasing the Concurrency in Estelle" is presented.
'Increasing the Concurrency in Estelle' is the Title of the paper; home page of the conference refers to HomePage;
SELECT DISTINCT T2.HomePage FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'Increasing the Concurrency in Estelle'
authors
How many authors finished the paper "An Improved Active Suspension Model for Attitude Control of Electric Vehicles" together?
authors refers to AuthorId; 'An Improved Active Suspension Model for Attitude Control of Electric Vehicles' is the Title of a paper; A paper can have more than one author. Co-authorship can be derived from (paper ID, author ID) pair.
SELECT COUNT(T2.AuthorId) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'An Improved Active Suspension Model for Attitude Control of Electric Vehicles'
authors
How many papers were presented at 'ECSQARU' in 2003?
Papers refers to Paper.Id; ECSQARU is the ShortName of the conference; 2003 refers to Year = '2003'
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.ShortName = 'ECSQARU' AND T1.Year = '2003'
authors
Show the keywords of the paper that was presented at "International Radar Symposium" in 2012.
'International Radar Symposium' is the FullName of the conference; 2012 refers to Year = '2012'
SELECT T1.Keyword FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'International Radar Symposium' AND T1.Year = 2012
authors
How many times more for the papers that were presented at the "International Conference on Thermoelectrics" conference than "International Conference on Wireless Networks, Communications and Mobile Computing“ conference?
'International Conference on Thermoelectrics' AND 'International Conference on Wireless Networks, Communications and Mobile Computing' are the FullName of the conference; Papers refers to Paper.Id; Calculation = SUBTRACT(SUM(Paper.Id where FullName = 'International Conference on Thermoelectrics'), SUM(Paper.Id where FullName = 'International Conference on Wireless Networks, Communications and Mobile Computing'))
SELECT CAST(SUM(CASE WHEN T2.FullName = 'International Conference on Thermoelectrics' THEN 1 ELSE 0 END) AS REAL) / SUM(CASE WHEN T2.FullName = 'International Conference on Wireless Networks, Communications and Mobile Computing' THEN 1 ELSE 0 END) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id
authors
What is the percentage of preprints of John Van Reenen's papers?
year = 0 means this paper is preprint; John Van Reenen is the author's name; papers refers to paper.Id; calculation = DIVIDE(SUM(paper.Id where Name = 'John Van Reenen' AND ConferenceID = 0 AND  JournalId = 0), SUM(paper.Id where Name = 'John Van Reenen'))
SELECT CAST(SUM(CASE WHEN T1.ConferenceId = 0 AND T1.JournalId = 0 THEN 1 ELSE 0 END) AS REAL) / COUNT(T1.Id) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'John Van Reenen'
authors
What is the oldest published book?
published book refers to Title; the oldest book refers to MIN(Year)
SELECT Title FROM Paper WHERE Year > 0 ORDER BY Year ASC LIMIT 1
authors
Which conference has the longest name?
the longest name refers to MAX(length(FullName))
SELECT FullName FROM Conference ORDER BY LENGTH(FullName) DESC LIMIT 1
authors
How many authors are affiliated with NASA Langley Research Center?
NASA Langley Research Center is the Affiliation
SELECT COUNT(Name) FROM Author WHERE Affiliation = 'NASA Langley Research Center'
authors
How many journals don’t have a short name?
don’t have a short name means ShortName is null
SELECT COUNT(ShortName) FROM Journal WHERE ShortName = ''
authors
How many of the papers are preprinted?
year = 0 means this paper is preprint; papers refers to Paper.Id
SELECT COUNT(Id) FROM Paper WHERE ConferenceId = 0 AND JournalId = 0
authors
Which paper published by the "TUBERCLE LUNG DIS" journal is the oldest?
paper refers to Title; TUBERCLE LUNG DIS is the ShortName of journal; the oldest refers to MIN(Year)
SELECT T2.Title FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.ShortName = 'TUBERCLE LUNG DIS' ORDER BY T2.Year ASC LIMIT 1
authors
List all of the papers written by the author "Karin Rengefors."
all the papers refers to Title; Karin Rengefors is the Name of the author
SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Karin Rengefors'
authors
How many papers were published by the "Virtual Reality, IEEE Annual International Symposium" conference in 2012?
'Virtual Reality, IEEE Annual International Symposium' is the FullName of conference; in 2012 refers to Year = 2012;
SELECT COUNT(T2.Id) FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.FullName = 'Virtual Reality, IEEE Annual International Symposium' AND T2.Year = 2012
authors
What is the short name for the journal that published the paper "A Case of Unilateral Ashy Dermatosis"?
A Case of Unilateral Ashy Dermatosis refer to Title
SELECT T2.ShortName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Title = 'A Case of Unilateral Ashy Dermatosis'
authors
What are the affiliations of the author "Mark A. Musen" written on and off paper?
Mark A. Musen refer to Author.Name;
SELECT T1.Affiliation FROM PaperAuthor AS T1 INNER JOIN Author AS T2 ON T1.AuthorId = T2.Id WHERE T2.Name = 'Mark A. Musen'
authors
List all the titles and their publishing journals from the 60's.
from the 60’s refer to Year 1960 BETWEEN 1970
SELECT T1.Title, T1.JournalId FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Year >= 1960 AND T1.Year <= 1970
authors
Which year did the "Internet, Multimedia Systems and Applications" conference publish the most papers?
'Internet, Multimedia Systems and Applications' is the FullName of paper; published the most papers refers to MAX(COUNT(year))
SELECT T2.Year FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.FullName = 'Internet, Multimedia Systems and Applications' GROUP BY T2.Year ORDER BY COUNT(T2.Id) DESC LIMIT 1
authors
What are the different ways the name of the author, Randall Davis, is written on their papers?
Randall Davis refer to Author.Name
SELECT DISTINCT T1.Name FROM PaperAuthor AS T1 INNER JOIN Author AS T2 ON T1.AuthorId = T2.Id WHERE T2.Name = 'Randall Davis' AND T1.Name != 'Randall Davis'
authors
List all of the conferences where a paper was published in 2008.
Published in 2008 refer to Year = 2008
SELECT DISTINCT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Year = 2008
authors
What is the name of author with the ID of 1722?
SELECT Name FROM Author WHERE Id = 1722
authors
How many papers are preprint or not published?
preprint or not published refer to Year = 0;
SELECT COUNT(Id) FROM Paper WHERE Year = 0 OR (ConferenceId = 0 AND JournalId = 0)
authors
List the name of the author that affiliated with University of Illinois Chicago?
'University of Illinois Chicago' is an affiliation
SELECT Name FROM Author WHERE Affiliation = 'University of Illinois Chicago'
authors
How many papers were published in 2005. Calculate the difference between the number of paper published in 2005 and the number of paper published in the previous year.
published in 2005 refer to Year = 2005; Difference refer to SUBTRACT(SUM(Year = 2005). SUM(Year = 2004))
SELECT SUM(CASE WHEN Year = 2005 THEN 1 ELSE 0 END) , SUM(CASE WHEN year = 2005 THEN 1 ELSE 0 END) - SUM(CASE WHEN year = 2004 THEN 1 ELSE 0 END) AS diff FROM Paper
authors
State the title of papers published in the Ibm Journal of Research and Development.
Ibm Journal of Research and Development refer to FullName 'Ibm Journal of Research and Development' is the full name of paper
SELECT T2.Title FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Ibm Journal of Research and Development'
authors
State the name and affiliation of author for the 'Education, democracy and growth' paper?
Education, democracy and growth' refer to title of paper
SELECT T2.Name, T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Education, democracy and growth'
authors
How many author published papers in the 'IEEE Computer' journal?
IEEE Computer refer to FullName; How many author published papers refer to COUNT(PaperAuthor.Name) where FullName = ’IEEE Computer’
SELECT COUNT(T2.Name) 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 T3.FullName = 'IEEE Computer'
authors
Where was the 'A context-based navigation paradigm for accessing Web data' paper published? State the name of the conference.
A context-based navigation paradigm for accessing Web data' is the title of paper; name of conference refer to FullName
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Title = 'A context-based navigation paradigm for accessing Web data'
authors
How many papers were published in International Workshop on Inductive Logic Programming from 2001 to 2009?
From 2001 to 2009 refer to Year 2001 BETWEEN 2009; 'International Workshop on Inductive Logic Programming' refer to Conference.FullName
SELECT COUNT(T1.Id) FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T2.FullName = 'International Workshop on Inductive Logic Programming' AND T1.Year BETWEEN 2001 AND 2009
authors
Calculate the average of authors for each paper from the year of 1990 to 2000.
Average refer to DIVIDE(COUNT(AuthorID where Year = 1990 BETWEEN 2000), COUNT(Title where Year = 1990 BETWEEN 2000))
SELECT CAST(COUNT(DISTINCT T2.AuthorId) AS REAL) / COUNT(DISTINCT T1.Title) FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Year BETWEEN 1990 AND 2000
authors
Indicate the year and a full name of the journal in which the publication named 'Area Effects in Cepaea' was published.
'Area Effects in Cepaea' is the title of paper
SELECT T1.Year, T2.FullName FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id WHERE T1.Title = 'Area Effects in Cepaea'
authors
Who is the author of the publication named 'Real-Time Automata'?
'Real-Time Automata' is the title of paper; publication refers to title;
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Real-Time Automata'
authors
Provide the name of the author who is affiliated with the organization named 'ABB Electrical Machines'.
'ABB Electrical Machines' is an affiliation
SELECT Name FROM Author WHERE Affiliation = 'ABB Electrical Machines'
authors
Provide the number of publications published in the journal named 'Academic Medicine' between 2005 and 2010.
'Academic Medicine' is the FullName of journal; between 2005 and 2010 refer to Year 2005 BETWEEN 2010
SELECT COUNT(T2.JournalId) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Academic Medicine' AND T2.Year BETWEEN 2005 AND 2010
authors
Provide the title of the latest publication published by it's author 'Zuliang Du'.
'Zuliang Du' is the name of paper author; latest publication refers to MAX(Year)
SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id WHERE T1.Name = 'Zuliang Du' ORDER BY T2.Year DESC LIMIT 1
authors
How many publications were published in relation to the conference 'Adaptive Multimedia Retrieval' in 2007?
'Adaptive Multimedia Retrieval is the FullName of paper; in 2007 refer to Year = 2007
SELECT COUNT(T2.ConferenceId) FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T1.FullName = 'Adaptive Multimedia Retrieval' AND T2.Year = 2007
authors
Provide the average number of papers that are published in the journal named 'Information Sciences' annually.
'Information Sciences' is the FullName of journal; average = DIVIDE(COUNT(JournalId = 48), COUNT(Years))
SELECT CAST(COUNT(T2.JournalId) AS REAL) / COUNT(DISTINCT T2.Year) FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T1.FullName = 'Information Sciences'
authors
How many publications were published by author named 'Howard F. Lipson'?
'Howard F. Lipson' is the name of author
SELECT COUNT(PaperId) FROM PaperAuthor WHERE Name = 'Howard F. Lipson'
authors
Among all publications containing keywords 'Turbulent Fluids', what percentage of them was published in the journal named 'Physics of Fluids'?
'Physics of Fluids' is the FullName of journal; percentage = DIVIDE(SUM(Keyword = 'Turbulent Fluids'), SUM(FullName = 'Physics of Fluids')) as percentage
SELECT CAST(SUM(CASE WHEN T1.Keyword = 'Turbulent Fluids' THEN 1 ELSE 0 END) AS REAL) / SUM(CASE WHEN T2.FullName = 'Physics of Fluids' THEN 1 ELSE 0 END) FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id
authors
Indicate the number of authors affiliated with the organization named 'Arizona State University'.
'Arizona State University' is an affiliation
SELECT COUNT(Name) FROM Author WHERE Affiliation = 'Arizona State University'
authors
List out the full name and URL link of ICCI?
'ICCI' is the ShortName of conference; URL refer to HomePage
SELECT FullName, HomePage FROM Conference WHERE ShortName = 'ICCI'
authors
Mention the titile of paper writen by Joe Lograsso.
'Joe Lograsso' is name of paper author
SELECT T1.Title FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T2.Name = 'Joe Lograsso'
authors
How many papers were written by authors who cooperated with University of Hong Kong?
University of Hong Kong' is an affiliation
SELECT COUNT(T2.PaperId) FROM Author AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.AuthorId WHERE T1.Affiliation = 'University of Hong Kong'
authors
Mention the name of author for paper id 5 and state the keyword of this page.
SELECT T1.Name, T3.Keyword FROM Author AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.AuthorId INNER JOIN Paper AS T3 ON T2.PaperId = T3.Id WHERE T2.PaperId = 5