problem
stringlengths
121
422
db_id
stringclasses
69 values
solution
stringlengths
23
804
Write SQL query to solve given problem: State the full name of conference for paper "The Dissimilarity Representation as a Tool for Three-Way Data Classification: A 2D Measure".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: What is the homepage address for paper "Energy-efficiency bounds for noise-tolerant dynamic circuits"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Write down the name of authors for paper with id from 101 to 105.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Among the papers published in 2009, pick 10 and list down the conference's short name of these papers.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: 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".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: List down all paper name that were published in conference "International Conference on Internet Computing".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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 <> ''
Write SQL query to solve given problem: Among papers that were published in 2005, provide the author name of paper with key words of "LOAD; IDE; SNP; haplotype; asso- ciation studies".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many authors have written paper "145 GROWTH HORMONE RECEPTORS AND THE ONSET OF HYPERINSULINEMIA IN THE OBESE ZUCKER RAT: "?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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: '
Write SQL query to solve given problem: How many papers were preprinted between the years 1990 and 2000?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT COUNT(id) FROM Paper WHERE Year BETWEEN '1990' AND '2000' AND ConferenceId = 0 AND JournalId = 0
Write SQL query to solve given problem: List the names of all authors affiliated with Birkbeck University of London.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Name FROM Author WHERE Affiliation = 'Birkbeck University of London'
Write SQL query to solve given problem: List author name for articles that are preprinted but not published.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Year = 0
Write SQL query to solve given problem: Identify by conference full name all papers in which a journal was not published but a conference.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: 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'?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Indicate the name of all the journals published in the paper database in the year 2001.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: 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'?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: In how many papers and in what years was the International Conference on Database Theory published?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: What percentage of authors of the paper about Charged particle multiplicity are affiliated with INFN?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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%'
Write SQL query to solve given problem: What percentage of journals whose short name begins with ANN were published in the paper database in 1989?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What was the topic of the article "A Formal Approach to Service Component Architecture" and when was it published?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Keyword, Year FROM Paper WHERE Title = 'A Formal Approach to Service Component Architecture'
Write SQL query to solve given problem: What percentage of papers were preprinted after the year 2000?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT CAST(SUM(CASE WHEN Year > 2000 THEN 1 ELSE 0 END) AS REAL) * 100 / COUNT(Id) FROM Paper
Write SQL query to solve given problem: Please list the names of the authors of the paper "Hypermethylation of the <I>TPEF/HPP1</I> Gene in Primary and Metastatic Colorectal Cancers".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: 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"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many papers were in the journal "Iet Software/iee Proceedings - Software"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: What is the full name of the conference where paper number 5 was published?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Id = 5
Write SQL query to solve given problem: Please list the titles of any two papers that Jundu has written.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Please provide the full name of the conference where one of the papers of Jean-luc Hainaut were published.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Please list all of the associations that the authors of the paper "FIBER: A Generalized Framework for Auto-tuning Software" are affiliated with.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: 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.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: List the names of authors affiliated with the University of Oxford in alphabetical order.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Name FROM Author WHERE Affiliation = 'University of Oxford' ORDER BY Name ASC
Write SQL query to solve given problem: List the short name and home page URL of all the international conferences on artificial intelligence.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT ShortName, HomePage FROM Conference WHERE FullName LIKE 'International Conference on Artificial Intelligence%'
Write SQL query to solve given problem: Find the names of papers which are published in the year 1996.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Title FROM Paper WHERE year = 1996
Write SQL query to solve given problem: List the title and author's name of papers published in the 2007 Neoplasia journal.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Among the authors affiliated with Soongsil University, list the authors' names and papers published during the year 2000.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Give the title and author's name of the papers published between 2000 and 2005 that include the topic optical properties.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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 <> ''
Write SQL query to solve given problem: What is the average number of papers published in the World Computer Congress each year?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT CAST(SUM(CASE WHEN T2.FullName = 'International Congress Series' THEN 1 ELSE 0 END) AS REAL) / COUNT(T1.Id) AS Div1, T1.Year FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id GROUP BY T1.YEAR HAVING Div1 != 0
Write SQL query to solve given problem: Give the Title and author's name of the books that were preprint in 1997.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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 <> ''
Write SQL query to solve given problem: Write the titles of papers published by Adam Jones and the journal name in which it was published from 2005 to 2010.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: How many authors drafted the paper "Subcellular localization of nuclease in barley aleurone"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many papers are published under the conference "Mathematics of Program Construction "?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Who is the author of the paper titled "Open Sourcing Social Solutions (Building Communities of Change)"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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)'
Write SQL query to solve given problem: Who authored the paper titled "Testing timed automata "?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Testing timed automata'
Write SQL query to solve given problem: How many papers are published in year 2000 under the conference "SSPR"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: List all the paper that the journal "Theoretical Computer Science " published in 2003.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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 <> ''
Write SQL query to solve given problem: What is the conference homepage URL of the paper titled "Quality evaluation of long duration audiovisual content"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: 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 ?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many papers are published under the journal "Software - Practice and Experience"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: List all the paper that were under the conference homepage URL "http://www.irma-international.org/".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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/'
Write SQL query to solve given problem: Calculate the total average number of papers published from 2002 to 2010 under the conference "Information and Knowledge Engineering".. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: 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"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What is the short name for "Software - Concepts and Tools / Structured Programming"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT ShortName FROM Journal WHERE FullName = 'Software - Concepts and Tools / Structured Programming'
Write SQL query to solve given problem: Which journal was the paper "Education, democracy and growth" published on? Give the full name of the journal.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T1.FullName FROM Journal AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.JournalId WHERE T2.Title = 'Education, democracy and growth'
Write SQL query to solve given problem: Give the number of papers that were published on "IEEE Transactions on Nuclear Science" in 1999.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What was the name of the paper that was published on "IEEE Transactions on Pattern Analysis and Machine Intelligence" in 2011?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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 <> ''
Write SQL query to solve given problem: What are the keywords for the paper which was published on "Modeling Identification and Control" in 1994?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: For the paper which was presented by "Zvezdan Protić", was it preprinted?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: At which conference was the paper "Skew-Circulant Preconditioners for Systems of LMF-Based ODE Codes" presented?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Tell the number of papers that were presented at "International Symposium on Software Testing and Analysis" conference.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Gives the home page of the conference where the paper "Increasing the Concurrency in Estelle" is presented.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many authors finished the paper "An Improved Active Suspension Model for Attitude Control of Electric Vehicles" together?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: In the year 2012, which conference had the most papers presented? Give the short name of the conference.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.ShortName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Year = '2012' GROUP BY T1.ConferenceId ORDER BY COUNT(T1.Id) DESC LIMIT 1
Write SQL query to solve given problem: How many papers were presented at 'ECSQARU' in 2003?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Show the keywords of the paper that was presented at "International Radar Symposium" in 2012.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: 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?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What is the percentage of preprints of John Van Reenen's papers?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: What is the oldest published book?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Title FROM Paper WHERE Year > 0 ORDER BY Year ASC LIMIT 1
Write SQL query to solve given problem: Which conference has the longest name?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT FullName FROM Conference ORDER BY LENGTH(FullName) DESC LIMIT 1
Write SQL query to solve given problem: How many of the papers are preprinted?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT COUNT(Id) FROM Paper WHERE ConferenceId = 0 AND JournalId = 0
Write SQL query to solve given problem: What is the title of the paper with the most authors?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.Title FROM PaperAuthor AS T1 INNER JOIN Paper AS T2 ON T1.PaperId = T2.Id GROUP BY T1.PaperId ORDER BY COUNT(T1.PaperId) DESC LIMIT 1
Write SQL query to solve given problem: Which paper published by the "TUBERCLE LUNG DIS" journal is the oldest?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: How many papers were published by the "Virtual Reality, IEEE Annual International Symposium" conference in 2012?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What is the short name for the journal that published the paper "A Case of Unilateral Ashy Dermatosis"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Who are the authors of the paper "Determination of Planetary Meteorology from Aerobot Flight Sensors"?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.Name FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId WHERE T1.Title = 'Determination of Planetary Meteorology FROM Aerobot Flight Sensors'
Write SQL query to solve given problem: List all the titles and their publishing journals from the 60's.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Which year did the "Internet, Multimedia Systems and Applications" conference publish the most papers?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: List all of the conferences where a paper was published in 2008.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT DISTINCT T2.FullName FROM Paper AS T1 INNER JOIN Conference AS T2 ON T1.ConferenceId = T2.Id WHERE T1.Year = 2008
Write SQL query to solve given problem: What is the homepage URL for the journal that published the most papers?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T2.HomePage FROM Paper AS T1 INNER JOIN Journal AS T2 ON T1.JournalId = T2.Id GROUP BY T1.JournalId ORDER BY COUNT(T1.JournalId) DESC LIMIT 1
Write SQL query to solve given problem: What is the proportion of the papers that have the keyword "cancer"? Please provide a list of authors and their affiliations.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT CAST(SUM(CASE WHEN T1.Keyword = 'cancer' THEN 1 ELSE 0 END) AS REAL) / COUNT(T1.Id), T2.Name, T2.Affiliation FROM Paper AS T1 INNER JOIN PaperAuthor AS T2 ON T1.Id = T2.PaperId
Write SQL query to solve given problem: What is the name of author with the ID of 1722?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Name FROM Author WHERE Id = 1722
Write SQL query to solve given problem: How many papers are preprint or not published?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT COUNT(Id) FROM Paper WHERE Year = 0 OR (ConferenceId = 0 AND JournalId = 0)
Write SQL query to solve given problem: List the name of the author that affiliated with University of Illinois Chicago?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT Name FROM Author WHERE Affiliation = 'University of Illinois Chicago'
Write SQL query to solve given problem: 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.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: State the title of papers published in the Ibm Journal of Research and Development.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: State the name and affiliation of author for the 'Education, democracy and growth' paper?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Where was the 'A context-based navigation paradigm for accessing Web data' paper published? State the name of the conference.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: How many papers were published in International Workshop on Inductive Logic Programming from 2001 to 2009?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Calculate the average of authors for each paper from the year of 1990 to 2000.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Indicate the year and a full name of the journal in which the publication named 'Area Effects in Cepaea' was published.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Provide the number of publications published in the journal named 'Academic Medicine' between 2005 and 2010.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Provide the title of the latest publication published by it's author 'Zuliang Du'.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: How many publications were published in relation to the conference 'Adaptive Multimedia Retrieval' in 2007?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: Among all publications containing keywords 'Turbulent Fluids', what percentage of them was published in the journal named 'Physics of Fluids'?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: How many papers were written by authors who cooperated with University of Hong Kong?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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'
Write SQL query to solve given problem: Sate the author name and published year for paper id 2?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T1.Name, T3.Year 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 = 2
Write SQL query to solve given problem: Mention the name of author for paper id 5 and state the keyword of this page.. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
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
Write SQL query to solve given problem: What is the full name of the conference in which the paper "2004 YD5" was published?. Keep the solution inside sql tag ```sql [SQL-Query] ```
authors
SELECT T1.FullName FROM Conference AS T1 INNER JOIN Paper AS T2 ON T1.Id = T2.ConferenceId WHERE T2.Title = '2004 YD5'
Write SQL query to solve given problem: List the all the institutes from the state with the most number of American Indian in 2007.. Keep the solution inside sql tag ```sql [SQL-Query] ```
college_completion
SELECT T1.chronname FROM institution_details AS T1 INNER JOIN state_sector_grads AS T2 ON T1.state = T2.state WHERE T2.year = 2007 AND T2.race = 'Ai' GROUP BY T1.chronname ORDER BY COUNT(T1.chronname) DESC LIMIT 1
Write SQL query to solve given problem: State the name and website of the institutes from the state with 209 graduate cohort in 2011.. Keep the solution inside sql tag ```sql [SQL-Query] ```
college_completion
SELECT T1.chronname, T1.site FROM institution_details AS T1 INNER JOIN state_sector_grads AS T2 ON T1.state = T2.state WHERE T2.year = 2011 AND T2.grad_cohort = 209
Write SQL query to solve given problem: What is the number of female graduates between 2011 to 2013 from the state where 'Gateway Community College' is located?. Keep the solution inside sql tag ```sql [SQL-Query] ```
college_completion
SELECT COUNT(T2.grad_cohort) FROM institution_details AS T1 INNER JOIN state_sector_grads AS T2 ON T1.state = T2.state WHERE T2.year BETWEEN 2011 AND 2013 AND T1.chronname = 'Gateway Community College' AND T2.gender = 'F'
Write SQL query to solve given problem: What is the total male graduates in 2012 in the state whereby the institute with the highest average amount of student aid going to undergraduate recipients is located?. Keep the solution inside sql tag ```sql [SQL-Query] ```
college_completion
SELECT COUNT(T2.grad_cohort) FROM institution_details AS T1 INNER JOIN state_sector_grads AS T2 ON T1.state = T2.state WHERE T2.year = 2012 AND T2.gender = 'M' ORDER BY T1.aid_value DESC LIMIT 1
Write SQL query to solve given problem: State the average median SAT value for institutes in the state with the most male graduate cohort in 2013.. Keep the solution inside sql tag ```sql [SQL-Query] ```
college_completion
SELECT AVG(T1.med_sat_value) FROM institution_details AS T1 INNER JOIN state_sector_grads AS T2 ON T1.state = T2.state WHERE T2.year = 2013 AND T2.gender = 'M' GROUP BY T2.grad_cohort ORDER BY COUNT(T2.grad_cohort) DESC LIMIT 1