db_id
stringlengths
4
31
SQL
stringlengths
18
1.45k
input_sequence
stringlengths
148
11k
question
stringlengths
16
325
authors
select title from paper where year = 1996
Question: find the names of papers which are published in the year 1996. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliati...
find the names of papers which are published in the year 1996.
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
Question: list the title and author's name of papers published in the 2007 neoplasia journal. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Auth...
list the title and author's name of papers published in the 2007 neoplasia journal.
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
Question: among the authors affiliated with soongsil university, list the authors' names and papers published during the year 2000. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId,...
among the authors affiliated with soongsil university, list the authors' names and papers published during the year 2000.
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 <> ''
Question: give the title and author's name of the papers published between 2000 and 2005 that include the topic optical properties. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId,...
give the title and author's name of the papers published between 2000 and 2005 that include the topic optical properties.
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
Question: what is the average number of papers published in the world computer congress each year? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId,...
what is the average number of papers published in the world computer congress each year?
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 <> ''
Question: give the title and author's name of the books that were preprint in 1997. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name...
give the title and author's name of the books that were preprint in 1997.
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
Question: write the titles of papers published by adam jones and the journal name in which it was published from 2005 to 2010. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyw...
write the titles of papers published by adam jones and the journal name in which it was published from 2005 to 2010.
authors
select count(name) from author where affiliation = 'otterbein university'
Question: how many authors is affiliated to the organization 'otterbein university'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Nam...
how many authors is affiliated to the organization 'otterbein university'?
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'
Question: how many authors drafted the paper 'subcellular localization of nuclease in barley aleurone'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Pap...
how many authors drafted the paper 'subcellular localization of nuclease in barley aleurone'?
authors
select t2.fullname from paper as t1 inner join conference as t2 on t1.conferenceid = t2.id where t1.title = 'extended fuzzy regression models'
Question: what is the full name of the conference in which the paper titled 'extended fuzzy regression models' was published? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keywo...
what is the full name of the conference in which the paper titled 'extended fuzzy regression models' was published?
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'
Question: how many papers are published under the conference 'mathematics of program construction'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId...
how many papers are published under the conference 'mathematics of program construction'?
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)'
Question: who is the author of the paper titled 'open sourcing social solutions (building communities of change)'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAu...
who is the author of the paper titled 'open sourcing social solutions (building communities of change)'?
authors
select t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'jianli hua'
Question: list all the title of the paper that jianli hua published. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. ...
list all the title of the paper that jianli hua published.
authors
select t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.title = 'testing timed automata'
Question: who authored the paper titled 'testing timed automata'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | J...
who authored the paper titled 'testing timed automata'?
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'
Question: how many papers are published in year 2000 under the conference 'sspr'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, ...
how many papers are published in year 2000 under the conference 'sspr'?
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 <> ''
Question: list all the paper that the journal 'theoretical computer science' published in 2003. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Au...
list all the paper that the journal 'theoretical computer science' published in 2003.
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'
Question: what is the conference homepage url of the paper titled 'quality evaluation of long duration audiovisual content'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keywor...
what is the conference homepage url of the paper titled 'quality evaluation of long duration audiovisual content'?
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'
Question: 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? | Tables: Author -> Id, Name, Aff...
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?
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'
Question: how many papers are published under the journal 'software - practice and experience'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Au...
how many papers are published under the journal 'software - practice and experience'?
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/'
Question: list all the paper that were under the conference homepage url 'http://www.irma-international.org/'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor...
list all the paper that were under the conference homepage url 'http://www.irma-international.org/'.
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
Question: calculate the total average number of papers published from 2002 to 2010 under the conference 'information and knowledge engineering'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceI...
calculate the total average number of papers published from 2002 to 2010 under the conference 'information and knowledge engineering'.
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
Question: 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'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, Ful...
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'?
authors
select shortname from journal where fullname = 'software - concepts and tools / structured programming'
Question: what is the short name for 'software - concepts and tools / structured programming'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Aut...
what is the short name for 'software - concepts and tools / structured programming'?
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'
Question: which journal was the paper 'education, democracy and growth' published on? give the full name of the journal. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. P...
which journal was the paper 'education, democracy and growth' published on? give the full name of the journal.
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
Question: give the number of papers that were published on 'ieee transactions on nuclear science' in 1999. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> ...
give the number of papers that were published on 'ieee transactions on nuclear science' in 1999.
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 <> ''
Question: what was the name of the paper that was published on 'ieee transactions on pattern analysis and machine intelligence' in 2011? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Journ...
what was the name of the paper that was published on 'ieee transactions on pattern analysis and machine intelligence' in 2011?
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
Question: what are the keywords for the paper which was published on 'modeling identification and control' in 1994? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperA...
what are the keywords for the paper which was published on 'modeling identification and control' in 1994?
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
Question: for the paper which was presented by 'zvezdan proti', was it preprinted? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name,...
for the paper which was presented by 'zvezdan proti', was it preprinted?
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'
Question: at which conference was the paper 'skew-circulant preconditioners for systems of lmf-based ode codes' presented? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword....
at which conference was the paper 'skew-circulant preconditioners for systems of lmf-based ode codes' presented?
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'
Question: tell the number of papers that were presented at 'international symposium on software testing and analysis' conference. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, K...
tell the number of papers that were presented at 'international symposium on software testing and analysis' conference.
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'
Question: gives the home page of the conference where the paper 'increasing the concurrency in estelle' is presented. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pape...
gives the home page of the conference where the paper 'increasing the concurrency in estelle' is presented.
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'
Question: how many authors finished the paper 'an improved active suspension model for attitude control of electric vehicles' together? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Journa...
how many authors finished the paper 'an improved active suspension model for attitude control of electric vehicles' together?
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
Question: in the year 2012, which conference had the most papers presented? give the short name of the conference. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAu...
in the year 2012, which conference had the most papers presented? give the short name of the conference.
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'
Question: how many papers were presented at 'ecsqaru' in 2003? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Join...
how many papers were presented at 'ecsqaru' in 2003?
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
Question: show the keywords of the paper that was presented at 'international radar symposium' in 2012. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Pap...
show the keywords of the paper that was presented at 'international radar symposium' in 2012.
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
Question: 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? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage...
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?
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'
Question: what is the percentage of preprints of john van reenen's papers? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affilia...
what is the percentage of preprints of john van reenen's papers?
authors
select title from paper where year > 0 order by year asc limit 1
Question: what is the oldest published book? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Paper.JournalId...
what is the oldest published book?
authors
select fullname from conference order by length(fullname) desc limit 1
Question: which conference has the longest name? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Paper.Journ...
which conference has the longest name?
authors
select count(name) from author where affiliation = 'nasa langley research center'
Question: how many authors are affiliated with nasa langley research center? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affil...
how many authors are affiliated with nasa langley research center?
authors
select count(shortname) from journal where shortname = ''
Question: how many journals dont have a short name? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Paper.Jo...
how many journals dont have a short name?
authors
select count(id) from paper where conferenceid = 0 and journalid = 0
Question: how many of the papers are preprinted? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Paper.Journ...
how many of the papers are preprinted?
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
Question: what is the title of the paper with the most authors? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joi...
what is the title of the paper with the most authors?
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
Question: which paper published by the 'tubercle lung dis' journal is the oldest? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, ...
which paper published by the 'tubercle lung dis' journal is the oldest?
authors
select t2.title from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.name = 'karin rengefors'
Question: list all of the papers written by the author 'karin rengefors.' | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliat...
list all of the papers written by the author 'karin rengefors.'
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
Question: how many papers were published by the 'virtual reality, ieee annual international symposium' conference in 2012? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword....
how many papers were published by the 'virtual reality, ieee annual international symposium' conference in 2012?
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'
Question: what is the short name for the journal that published the paper 'a case of unilateral ashy dermatosis'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAut...
what is the short name for the journal that published the paper 'a case of unilateral ashy dermatosis'?
authors
select t1.affiliation from paperauthor as t1 inner join author as t2 on t1.authorid = t2.id where t2.name = 'mark a. musen'
Question: what are the affiliations of the author 'mark a. musen' written on and off paper? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Author...
what are the affiliations of the author 'mark a. musen' written on and off paper?
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'
Question: who are the authors of the paper 'determination of planetary meteorology from aerobot flight sensors'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
who are the authors of the paper 'determination of planetary meteorology from aerobot flight sensors'?
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
Question: list all the titles and their publishing journals from the 60's. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affilia...
list all the titles and their publishing journals from the 60's.
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
Question: which year did the 'internet, multimedia systems and applications' conference publish the most papers? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
which year did the 'internet, multimedia systems and applications' conference publish the most papers?
authors
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'
Question: what are the different ways the name of the author, randall davis, is written on their papers? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Pa...
what are the different ways the name of the author, randall davis, is written on their papers?
authors
select distinct t2.fullname from paper as t1 inner join conference as t2 on t1.conferenceid = t2.id where t1.year = 2008
Question: list all of the conferences where a paper was published in 2008. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affilia...
list all of the conferences where a paper was published in 2008.
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
Question: what is the homepage url for the journal that published the most papers? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name,...
what is the homepage url for the journal that published the most papers?
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
Question: what is the proportion of the papers that have the keyword 'cancer'? please provide a list of authors and their affiliations. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Journa...
what is the proportion of the papers that have the keyword 'cancer'? please provide a list of authors and their affiliations.
authors
select name from author where id = 1722
Question: what is the name of author with the id of 1722? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Pa...
what is the name of author with the id of 1722?
authors
select count(id) from paper where year = 0 or (conferenceid = 0 and journalid = 0)
Question: how many papers are preprint or not published? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Pap...
how many papers are preprint or not published?
authors
select name from author where affiliation = 'university of illinois chicago'
Question: list the name of the author that affiliated with university of illinois chicago? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorI...
list the name of the author that affiliated with university of illinois chicago?
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
Question: 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. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper...
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.
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'
Question: state the title of papers published in the ibm journal of research and development. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Auth...
state the title of papers published in the ibm journal of research and development.
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'
Question: state the name and affiliation of author for the 'education, democracy and growth' paper? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId...
state the name and affiliation of author for the 'education, democracy and growth' paper?
authors
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'
Question: how many author published papers in the 'ieee computer' journal? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affilia...
how many author published papers in the 'ieee computer' journal?
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'
Question: where was the 'a context-based navigation paradigm for accessing web data' paper published? state the name of the conference. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Journa...
where was the 'a context-based navigation paradigm for accessing web data' paper published? state the name of the conference.
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
Question: how many papers were published in international workshop on inductive logic programming from 2001 to 2009? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Paper...
how many papers were published in international workshop on inductive logic programming from 2001 to 2009?
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
Question: calculate the average of authors for each paper from the year of 1990 to 2000. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId,...
calculate the average of authors for each paper from the year of 1990 to 2000.
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'
Question: indicate the year and a full name of the journal in which the publication named 'area effects in cepaea' was published. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, K...
indicate the year and a full name of the journal in which the publication named 'area effects in cepaea' was published.
authors
select t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.title = 'real-time automata'
Question: who is the author of the publication named 'real-time automata'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affilia...
who is the author of the publication named 'real-time automata'?
authors
select name from author where affiliation = 'abb electrical machines'
Question: provide the name of the author who is affiliated with the organization named 'abb electrical machines'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAut...
provide the name of the author who is affiliated with the organization named 'abb electrical machines'.
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
Question: provide the number of publications published in the journal named 'academic medicine' between 2005 and 2010. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pap...
provide the number of publications published in the journal named 'academic medicine' between 2005 and 2010.
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
Question: provide the title of the latest publication published by it's author 'zuliang du'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Autho...
provide the title of the latest publication published by it's author 'zuliang du'.
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
Question: how many publications were published in relation to the conference 'adaptive multimedia retrieval' in 2007? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pape...
how many publications were published in relation to the conference 'adaptive multimedia retrieval' in 2007?
authors
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'
Question: provide the average number of papers that are published in the journal named 'information sciences' annually. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pa...
provide the average number of papers that are published in the journal named 'information sciences' annually.
authors
select count(paperid) from paperauthor where name = 'howard f. lipson'
Question: how many publications were published by author named 'howard f. lipson'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name,...
how many publications were published by author named 'howard f. lipson'?
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
Question: among all publications containing keywords 'turbulent fluids', what percentage of them was published in the journal named 'physics of fluids'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Con...
among all publications containing keywords 'turbulent fluids', what percentage of them was published in the journal named 'physics of fluids'?
authors
select count(name) from author where affiliation = 'arizona state university'
Question: indicate the number of authors affiliated with the organization named 'arizona state university'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor ->...
indicate the number of authors affiliated with the organization named 'arizona state university'.
authors
select fullname, homepage from conference where shortname = 'icci'
Question: list out the full name and url link of icci? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins: Paper...
list out the full name and url link of icci?
authors
select t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'joe lograsso'
Question: mention the titile of paper writen by joe lograsso. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Joins...
mention the titile of paper writen by joe lograsso.
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'
Question: how many papers were written by authors who cooperated with university of hong kong? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Aut...
how many papers were written by authors who cooperated with university of hong kong?
authors
select t1.year, t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'barrasa'
Question: state the year and title of papers written by barrasa. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | Jo...
state the year and title of papers written by barrasa.
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
Question: sate the author name and published year for paper id 2? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, Name, Affiliation. | J...
sate the author name and published year for paper id 2?
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
Question: mention the name of author for paper id 5 and state the keyword of this page. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, AuthorId, ...
mention the name of author for paper id 5 and state the keyword of this page.
authors
select t1.fullname from conference as t1 inner join paper as t2 on t1.id = t2.conferenceid where t2.title = '2004 yd5'
Question: what is the full name of the conference in which the paper '2004 yd5' was published? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, Aut...
what is the full name of the conference in which the paper '2004 yd5' was published?
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
Question: list the all the institutes from the state with the most number of american indian in 2007. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_val...
list the all the institutes from the state with the most number of american indian in 2007.
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
Question: state the name and website of the institutes from the state with 209 graduate cohort in 2011. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_v...
state the name and website of the institutes from the state with 209 graduate cohort in 2011.
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'
Question: what is the number of female graduates between 2011 to 2013 from the state where 'gateway community college' is located? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_...
what is the number of female graduates between 2011 to 2013 from the state where 'gateway community college' is located?
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
Question: 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? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, a...
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?
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
Question: state the average median sat value for institutes in the state with the most male graduate cohort in 2013. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value...
state the average median sat value for institutes in the state with the most male graduate cohort in 2013.
college_completion
select t1.state, t1.chronname from institution_details as t1 inner join state_sector_grads as t2 on t1.state = t2.state where t2.year = 2012 and t1.control = 'private for-profit' group by t2.grad_cohort order by count(t2.grad_cohort) desc limit 1
Question: name the state with the most number of graduate cohort in 2012 from private institute for profit? list all such institutes in the mentioned state. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, award...
name the state with the most number of graduate cohort in 2012 from private institute for profit? list all such institutes in the mentioned state.
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 = 2013 and t1.control = 'public' order by t2.grad_cohort limit 1
Question: list all the public institutes from the state with the least number of graduate cohort in 2013. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award...
list all the public institutes from the state with the least number of graduate cohort in 2013.
college_completion
select t1.chronname, t2.grad_cohort from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.year = 2013 and t2.gender = 'b' and t2.race = 'x' and t2.grad_cohort < 200
Question: provide the institute name with less than 200 graduate cohort of all races and genders in 2013. also, please state the total number of full-time equivalent undergraduates for the institute. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, s...
provide the institute name with less than 200 graduate cohort of all races and genders in 2013. also, please state the total number of full-time equivalent undergraduates for the institute.
college_completion
select count(*) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.year = 2013 and t2.gender = 'f' and t2.race = 'x' and t1.chronname = 'oakwood university'
Question: what is the number of female graduate for all students cohort from oakwood university in 2013? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_...
what is the number of female graduate for all students cohort from oakwood university in 2013?
college_completion
select count(*) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.gender = 'f' and t2.race = 'a' and t1.chronname = 'university of alaska at anchorage' and t2.cohort = '4y other'
Question: in 2012, how many asian female graduates were seeking another type of degree or certificate at the 4-year institution at university of alaska at anchorage? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_val...
in 2012, how many asian female graduates were seeking another type of degree or certificate at the 4-year institution at university of alaska at anchorage?
college_completion
select sum(case when t2.year = 2011 then t2.grad_cohort else 0 end), sum(case when t2.year = 2012 then t2.grad_cohort else 0 end), sum(case when t2.year = 2013 then t2.grad_cohort else 0 end) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.gender = 'b' and t2.race = '...
Question: compare the graduate cohort for auburn university from 2011 to 2013? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_value, exp_award_state_val...
compare the graduate cohort for auburn university from 2011 to 2013?
college_completion
select cast(sum(case when t2.race = 'b' then 1 else 0 end) as real) * 100 / sum(t2.grad_cohort) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.race = 'b' and t1.control = 'private for-profit'
Question: calculate the percentage of black students in all private for profit institutions. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_value, exp_a...
calculate the percentage of black students in all private for profit institutions.
college_completion
select cast(sum(case when t2.race = 'a' then 1 else 0 end) as real) * 100 / sum(t2.grad_cohort) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t2.year = 2013 and t1.state = 'alabama'
Question: calculate the percentage of asian students among students of other races who graduated from institution in alabama in year 2013 within 100 percent of normal / expected time. | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_cou...
calculate the percentage of asian students among students of other races who graduated from institution in alabama in year 2013 within 100 percent of normal / expected time.
college_completion
select cast(sum(case when t2.gender = 'm' then t2.grad_cohort else 0 end) as real) / sum(case when t2.gender = 'f' then t2.grad_cohort else 0 end) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t1.chronname = 'harvard university' and t2.year = 2013 and t2.race = 'a'
Question: what is the ratio of asian male graduates to asian female graduates from harvard university in 2013? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_...
what is the ratio of asian male graduates to asian female graduates from harvard university in 2013?
college_completion
select chronname from institution_details where chronname in ('amridge university', 'auburn university') order by grad_100_value limit 1
Question: from which institute is harder to graduate for a bachelor, amridge university or auburn university? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_a...
from which institute is harder to graduate for a bachelor, amridge university or auburn university?
college_completion
select count(*) from institution_details where control = 'private not-for-profit'
Question: how many institutes are private and not-for profit? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_value, exp_award_state_value, exp_award_nat...
how many institutes are private and not-for profit?
college_completion
select sum(t2.grad_cohort) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t1.chronname = 'amridge university' and t2.gender = 'm' and t2.race = 'h'
Question: in total, how many hispanic male students graduated from amridge university? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, awards_per_state_value, awards_per_natl_value, exp_award_value, exp_award_s...
in total, how many hispanic male students graduated from amridge university?
college_completion
select count(t1.unitid) from institution_details as t1 inner join institution_grads as t2 on t1.unitid = t2.unitid where t1.chronname = 'lincoln college' and t2.year = 2011 and t2.cohort = '4y bach'
Question: how many students that graduated from lincoln college in 2011 belong to the cohort type of bachelor's/equivalent seeking cohort at 4-year institutions? | Tables: institution_details -> unitid, chronname, city, state, level, control, basic, hbcu, flagship, long_x, lat_y, site, student_count, awards_per_value, ...
how many students that graduated from lincoln college in 2011 belong to the cohort type of bachelor's/equivalent seeking cohort at 4-year institutions?