db_id
stringlengths
4
31
SQL
stringlengths
18
1.45k
input_sequence
stringlengths
148
11k
question
stringlengths
16
325
video_games
select t.publisher_name from ( select distinct t5.publisher_name from region as t1 inner join region_sales as t2 on t1.id = t2.region_id inner join game_platform as t3 on t2.game_platform_id = t3.id inner join game_publisher as t4 on t3.game_publisher_id = t4.id inner join publisher as t5 on t4.publisher_id = t5.id whe...
Question: list down at least five publishers of the games with number of sales less than 10000. | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platfor...
list down at least five publishers of the games with number of sales less than 10000.
video_games
select t1.platform_id from game_platform as t1 inner join game_publisher as t2 on t1.game_publisher_id = t2.id inner join game as t3 on t2.game_id = t3.id where t3.game_name = 'airborne troops: countdown to d-day'
Question: list the platform id of the game titled airborne troops: countdown to d-day. | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platform_id, rel...
list the platform id of the game titled airborne troops: countdown to d-day.
video_games
select count(t3.game_id) from platform as t1 inner join game_platform as t2 on t1.id = t2.platform_id inner join game_publisher as t3 on t2.game_publisher_id = t3.id where t1.platform_name = 'psp' and t2.release_year = 2004
Question: how many games available on psp were released in 2004? | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platform_id, release_year. region -> i...
how many games available on psp were released in 2004?
video_games
select t2.genre_name from game as t1 inner join genre as t2 on t1.genre_id = t2.id where t1.game_name = '999: nine hours, nine persons, nine doors'
Question: what is the genre of the game titled '999: nine hours, nine persons, nine doors' ? | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platform_i...
what is the genre of the game titled '999: nine hours, nine persons, nine doors' ?
video_games
select t1.release_year from game_platform as t1 inner join game_publisher as t2 on t1.game_publisher_id = t2.id where t2.game_id = 156
Question: when was the game id 156 released? | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platform_id, release_year. region -> id, region_name. regi...
when was the game id 156 released?
video_games
select count(case when t1.platform_name = 'snes' then t3.game_id else null end) - count(case when t1.platform_name = 'ds' then t3.game_id else null end) from platform as t1 inner join game_platform as t2 on t1.id = t2.platform_id inner join game_publisher as t3 on t2.game_publisher_id = t3.id inner join publisher as t4...
Question: what is the diffrence between the number of games produced by culture brain that can be played on snes and ds? | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, g...
what is the diffrence between the number of games produced by culture brain that can be played on snes and ds?
video_games
select cast(count(case when t2.release_year = 2007 then t3.game_id else null end) as real) * 100 / count(t3.game_id) from platform as t1 inner join game_platform as t2 on t1.id = t2.platform_id inner join game_publisher as t3 on t2.game_publisher_id = t3.id where t1.platform_name = 'wii'
Question: in games that can be played on wii, what is the percentage of games released in 2007? | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform -> id, game_publisher_id, platfor...
in games that can be played on wii, what is the percentage of games released in 2007?
video_games
select distinct t3.platform_id from region as t1 inner join region_sales as t2 on t1.id = t2.region_id inner join game_platform as t3 on t2.game_platform_id = t3.id where t1.region_name = 'europe' and t2.num_sales * 100 * 100000 < ( select avg(t2.num_sales * 100000) * 30 from region as t1 inner join region_sales as t2 ...
Question: among games sold in europe, list the platform id of games with sales lesser than 30% of the average number of sales. | Tables: genre -> id, genre_name. game -> id, genre_id, game_name. platform -> id, platform_name. publisher -> id, publisher_name. game_publisher -> id, game_id, publisher_id. game_platform ->...
among games sold in europe, list the platform id of games with sales lesser than 30% of the average number of sales.
authors
select count(id) from author where affiliation = 'university of california berkeley'
Question: how many authors are affiliated with university of california berkeley? | 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 authors are affiliated with university of california berkeley?
authors
select keyword from paper where title = 'stitching videos streamed by mobile phones in real-time'
Question: what is the paper 'stitching videos streamed by mobile phones in real-time' about? | 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...
what is the paper 'stitching videos streamed by mobile phones in real-time' about?
authors
select t2.title from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t1.fullname = 'concepts in magnetic resonance part a' and t2.year = 2008
Question: please list the titles of the papers published in the journal 'concepts in magnetic resonance part a' in 2008. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. P...
please list the titles of the papers published in the journal 'concepts in magnetic resonance part a' in 2008.
authors
select count(t2.id) from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t1.fullname = 'concepts in magnetic resonance part a'
Question: how many papers were published in the journal 'concepts in magnetic resonance part a'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, A...
how many papers were published in the journal 'concepts in magnetic resonance part a'?
authors
select t1.homepage from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t2.title = 'area effects in cepaea'
Question: what is the url of the journal in which the paper '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, Keyword. PaperAuthor -> PaperId...
what is the url of the journal in which the paper 'area effects in cepaea' was published?
authors
select count(t2.id) from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t2.year = 2011 and t1.fullname = 'molecular brain'
Question: among the papers published in the journal 'molecular brain', how many of them were published in the year 2011? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. P...
among the papers published in the journal 'molecular brain', how many of them were published in the year 2011?
authors
select count(t2.id) from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t2.year = 2011 and t1.shortname = 'mol brain'
Question: how many papers were published in 2011 in the journal whose short name is 'mol brain'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, A...
how many papers were published in 2011 in the journal whose short name is 'mol brain'?
authors
select count(t1.authorid) from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t2.title = 'equation solving in geometrical theories'
Question: how many authors does the paper 'equation solving in geometrical theories' have? | 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...
how many authors does the paper 'equation solving in geometrical theories' have?
authors
select t1.name from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t2.title = 'area effects in cepaea'
Question: please list the names of the authors of the paper 'area effects in cepaea'. | 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, Na...
please list the names of the authors of the paper 'area effects in cepaea'.
authors
select count(t1.authorid) from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.affiliation = 'university of tokyo' and t2.title = 'fiber: a generalized framework for auto-tuning software'
Question: among the authors of the paper 'stitching videos streamed by mobile phones in real-time', how many of them are affiliated with cairo microsoft innovation lab? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, ...
among the authors of the paper 'stitching videos streamed by mobile phones in real-time', how many of them are affiliated with cairo microsoft innovation lab?
authors
select t2.title from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.name = 'klaus zimmermann'
Question: please list the titles of the paper whose authors include klaus zimmermann. | 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, Na...
please list the titles of the paper whose authors include klaus zimmermann.
authors
select t1.name from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t2.title = 'incremental extraction of keyterms for classifying multilingual documents in the web' and t1.affiliation = 'national taiwan university department of computer science and information engineering taiwan'
Question: which author of the paper 'incremental extraction of keyterms for classifying multilingual documents in the web' is affiliated with national taiwan university department of computer science and information engineering taiwan? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, Ho...
which author of the paper 'incremental extraction of keyterms for classifying multilingual documents in the web' is affiliated with national taiwan university department of computer science and information engineering taiwan?
authors
select t2.title from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.name = 'thomas wiegand' and t2.year = 1995
Question: what is the title of the paper published in 1995 and whose author included thomas wiegand? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperI...
what is the title of the paper published in 1995 and whose author included thomas wiegand?
authors
select count(t2.title) from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.name = 'thomas wiegand' and t2.year = 1995
Question: how many papers whose authors include thomas wiegand were published in 1995? | 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, N...
how many papers whose authors include thomas wiegand were published in 1995?
authors
select cast(count(t2.id) as real) / count(distinct t2.year) from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t1.fullname = 'molecular brain' and t2.year between 2008 and 2011
Question: what is the average number of papers published in the journal 'molecular brain' every year from 2008 to 2011? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pa...
what is the average number of papers published in the journal 'molecular brain' every year from 2008 to 2011?
authors
select sum(case when t1.fullname = 'cases journal' then 1 else 0 end) - sum(case when t1.fullname = 'molecular brain' then 1 else 0 end) as diff from journal as t1 inner join paper as t2 on t1.id = t2.journalid
Question: how many more papers in total were published in the journal 'cases journal' than in the journal 'molecular brain' in percentage? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Jou...
how many more papers in total were published in the journal 'cases journal' than in the journal 'molecular brain' in percentage?
authors
select count(id) from journal where fullname like '%computing%'
Question: how many journals have a word 'computing' in its full 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....
how many journals have a word 'computing' in its full name?
authors
select paperid, authorid from paperauthor where affiliation like 'cairo microsoft innovation lab%'
Question: enumerate the paper and author id of authors with affiliation with cairo microsoft innovation lab. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -...
enumerate the paper and author id of authors with affiliation with cairo microsoft innovation lab.
authors
select shortname, fullname from conference where homepage = 'http://www.informatik.uni-trier.de/~ley/db/conf/ices/index.html'
Question: what is the short name and full name of conference uses the homepage 'http://www.informatik.uni-trier.de/~ley/db/conf/ices/index.html'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Conference...
what is the short name and full name of conference uses the homepage 'http://www.informatik.uni-trier.de/~ley/db/conf/ices/index.html'?
authors
select authorid from paperauthor where name = 'peter'
Question: list down the author id of authors with a name of 'peter'. | 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 down the author id of authors with a name of 'peter'.
authors
select distinct t1.title, t2.shortname from paper as t1 inner join conference as t2 on t1.conferenceid = t2.id where t1.conferenceid between 160 and 170
Question: list the title of papers with a conference id from 160 to 170, include their conference 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 ...
list the title of papers with a conference id from 160 to 170, include their conference short name.
authors
select t1.title, t2.homepage from paper as t1 inner join journal as t2 on t1.journalid = t2.id order by t1.year desc limit 1
Question: what is the title and journal homepage of the latest published 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, AuthorId, Name, Af...
what is the title and journal homepage of the latest published paper?
authors
select t1.title, t3.shortname from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join conference as t3 on t1.conferenceid = t3.id where t1.year = 1999 and t2.name like 'philip%'
Question: in year 1999, list the titles and conference's short name of paper authored by someone named 'philip'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
in year 1999, list the titles and conference's short name of paper authored by someone named 'philip'.
authors
select count(t2.conferenceid), t1.homepage from conference as t1 inner join paper as t2 on t1.id = t2.conferenceid where t2.year between 1990 and 2000 and t2.conferenceid = 187
Question: what is the total number and conference's homepage of papers held in a conference with an id of 187 during 1990 to 2000? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, ...
what is the total number and conference's homepage of papers held in a conference with an id of 187 during 1990 to 2000?
authors
select distinct t2.title from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.affiliation = 'department of network science, graduate school of information systems, the university of electro-communications' and t2.year = 2003
Question: what is the title of the paper published in 2003 by an author with affiliation with department of network science, graduate school of information systems, the university of electro-communications? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortN...
what is the title of the paper published in 2003 by an author with affiliation with department of network science, graduate school of information systems, the university of electro-communications?
authors
select t2.name, t3.shortname from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join journal as t3 on t1.journalid = t3.id where t1.journalid between 245 and 250 and t1.title like '%chemiluminescence%'
Question: list the authors and journal short name of the papers with 'chemiluminescence' in its title and has a journal id from 245 to 250. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Jo...
list the authors and journal short name of the papers with 'chemiluminescence' in its title and has a journal id from 245 to 250.
authors
select distinct t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.conferenceid = 0 and t1.journalid < 100
Question: among the papers with conference id of 0, list down the authors of papers with a journal id less than 100. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Paper...
among the papers with conference id of 0, list down the authors of papers with a journal id less than 100.
authors
select distinct t1.title, t2.authorid from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.year = 2006 and t1.conferenceid < 100
Question: what is the title and author id of paper with conference id less than 100 in year 2006? | 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 title and author id of paper with conference id less than 100 in year 2006?
authors
select t1.id from paper as t1 inner join conference as t2 on t1.conferenceid = t2.id where t2.homepage like 'http://www.informatik.uni-trier.de/~ley/db/conf/%'
Question: what are the paper ids of papers presented in conferences has a homepage starts with 'http://www.informatik.uni-trier.de/~ley/db/conf/'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Conferenc...
what are the paper ids of papers presented in conferences has a homepage starts with 'http://www.informatik.uni-trier.de/~ley/db/conf/'?
authors
select t3.homepage, t2.authorid from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join journal as t3 on t1.journalid = t3.id where t1.year between 2000 and 2005 and t1.title like '%social%'
Question: what are the journal homepages and author id of the papers published in 2000 to 2005 with a word 'social' in its title? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, K...
what are the journal homepages and author id of the papers published in 2000 to 2005 with a word 'social' in its title?
authors
select distinct t2.authorid, t2.affiliation from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.journalid = 0 and t1.year = 2009 and t2.affiliation is not null
Question: what is the author id and their affiliations of authors of the papers with a journal id of 0 and published in 2009. | 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 author id and their affiliations of authors of the papers with a journal id of 0 and published in 2009.
authors
select cast(sum(case when t1.conferenceid = 0 then 1 else 0 end) as real) * 100 / count(t1.conferenceid) from paper as t1 inner join journal as t2 on t1.journalid = t2.id where t1.journalid between 200 and 300 and t2.shortname like 'a%'
Question: in papers with journal ids from 200 to 300 and with its short name starts with a, what is the percentage of papers with conference id of 0? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Confer...
in papers with journal ids from 200 to 300 and with its short name starts with a, what is the percentage of papers with conference id of 0?
authors
select cast(sum(case when year = 2001 then 1 else 0 end) as real) / count(id) from paper where year >= 2001 and year < 2011
Question: within the year of 2001 to 2010, find the paper published rate of 2001. | 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, ...
within the year of 2001 to 2010, find the paper published rate of 2001.
authors
select fullname, homepage from conference where shortname = 'icwe'
Question: write down the conference full name of 'icwe' and it's homepage address. | 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,...
write down the conference full name of 'icwe' and it's homepage address.
authors
select affiliation from author where affiliation in ('stanford university', 'massachusetts institute of technology') group by affiliation order by count(id) desc limit 1
Question: between 'standford university' and 'massachusetts institute of technolgy', which organization had affiliated with more author.? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Jour...
between 'standford university' and 'massachusetts institute of technolgy', which organization had affiliated with more author.?
authors
select cast(sum(case when affiliation is null then 1 else 0 end) as real) / count(*) from author
Question: what is the ratio of author with affiliation and without affiliation? | 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, Af...
what is the ratio of author with affiliation and without affiliation?
authors
select name, id from author where affiliation = 'university of oulu'
Question: write down the author's name and ids who are affiliated with univeristiy of oulu. | 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...
write down the author's name and ids who are affiliated with univeristiy of oulu.
authors
select t1.title, t2.affiliation from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'roger j. marshall' and t1.conferenceid = 0 and t1.journalid = 0
Question: write down the title and affiliation of the preprinted paper written by 'roger j.marshal'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperI...
write down the title and affiliation of the preprinted paper written by 'roger j.marshal'.
authors
select t1.id, t1.title, t1.year, t3.fullname from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join journal as t3 on t1.journalid = t3.id group by t2.authorid order by count(t2.authorid) desc limit 1
Question: find the paper id, title, published year and journal's full name of the paper which included the most number in author. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, K...
find the paper id, title, published year and journal's full name of the paper which included the most number in author.
authors
select distinct t1.title, t1.year, t3.shortname, t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join conference as t3 on t1.conferenceid = t3.id where t1.id = 15
Question: describe the paper title, published year, conference's short name and included author names in the paper id of 15. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keywor...
describe the paper title, published year, conference's short name and included author names in the paper id of 15.
authors
select t2.id, t2.year, t2.keyword from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.authorid < 1000 and t1.affiliation = 'zurich, eth'
Question: among author id of under 1000, who published the paper in affiliation with zurich, eth, provide paper id, year and keyword if any. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, J...
among author id of under 1000, who published the paper in affiliation with zurich, eth, provide paper id, year and keyword if any.
authors
select t2.name, t1.id from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.title = 'inspection resistant memory: architectural support for security from physical examination' and t2.affiliation = 'microsoft research, usa'
Question: among the author included in the paper of 'inspection resistant memory: architectural support for security from physical examination', write down the author name and id who were affiliated with microsoft research, usa. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage....
among the author included in the paper of 'inspection resistant memory: architectural support for security from physical examination', write down the author name and id who were affiliated with microsoft research, usa.
authors
select t2.name, t2.affiliation, t3.shortname, t3.fullname from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join journal as t3 on t1.journalid = t3.id where t1.title = 'decreased saliva secretion and down-regulation of aqp5 in submandibular gland in irradiated rats'
Question: write down the author name, affiliation, jounal short name and full name of the paper 'decreased saliva secretion and down-regulation of aqp5 in submandibular gland in irradiated rats'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullNa...
write down the author name, affiliation, jounal short name and full name of the paper 'decreased saliva secretion and down-regulation of aqp5 in submandibular gland in irradiated rats'.
authors
select distinct t2.title, t2.journalid from conference as t1 inner join paper as t2 on t1.id = t2.conferenceid where t1.fullname = 'international symposium of robotics research' and t2.year = 2003
Question: list the paper title and journal id which were published under the conference name of 'international symposium of robotics research'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId...
list the paper title and journal id which were published under the conference name of 'international symposium of robotics research'.
authors
select t2.title, t2.year, t2.keyword from paperauthor as t1 inner join paper as t2 on t1.paperid = t2.id where t1.authorid = 661002 and t1.affiliation = 'scientific computing and imaging institute, university of utah, ut 84112, usa'
Question: name the title, year and keyword of the paper which were written by the author id of 661002 with the affiliation of 'scientific computing and imaging institute, university of utah, ut 84112, usa' organization. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal ...
name the title, year and keyword of the paper which were written by the author id of 661002 with the affiliation of 'scientific computing and imaging institute, university of utah, ut 84112, usa' organization.
authors
select sum(case when t2.year = 2000 then 1 else 0 end) - sum(case when t2.year = 2010 then 1 else 0 end) as diff from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t1.shortname = 'iwc'
Question: calculate the differences of the paper number with the journal name of iwc in 2000 and 2010. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Pape...
calculate the differences of the paper number with the journal name of iwc in 2000 and 2010.
authors
select distinct t2.journalid, t1.shortname, t1.fullname from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t2.year = 2013 and t2.journalid != 0 and t2.journalid != -1 limit 4
Question: provide any four valid journal id along with short name and full name of the papers which were made in 2013. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pap...
provide any four valid journal id along with short name and full name of the papers which were made in 2013.
authors
select t2.title, t3.name, t1.fullname from conference as t1 inner join paper as t2 on t1.id = t2.conferenceid inner join paperauthor as t3 on t1.id = t3.paperid where t1.shortname = 'micro' and t2.year between '1971' and '1980'
Question: under the conference name of micro, calculate how many more paper is needed to published in 1971 to 1980 in average by yearly to get equivalent to the number of paper from 1991 to 2000. write down the title and author name of the paper that were actually published during 1971 to 1980 with the conference name ...
under the conference name of micro, calculate how many more paper is needed to published in 1971 to 1980 in average by yearly to get equivalent to the number of paper from 1991 to 2000. write down the title and author name of the paper that were actually published during 1971 to 1980 with the conference name with micro...
authors
select count(id) from paper where year = 0
Question: how many of the papers are preprinted 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. | J...
how many of the papers are preprinted or not published?
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'
Question: state the full name of conference for paper 'the dissimilarity representation as a tool for three-way data classification: a 2d measure'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Conferen...
state the full name of conference for paper 'the dissimilarity representation as a tool for three-way data classification: a 2d measure'.
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'
Question: what is the homepage address for paper 'energy-efficiency bounds for noise-tolerant dynamic circuits'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
what is the homepage address for paper 'energy-efficiency bounds for noise-tolerant dynamic circuits'?
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
Question: write down the name of authors for paper with id from 101 to 105. | 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, Affili...
write down the name of authors for paper with id from 101 to 105.
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
Question: among the papers published in 2009, pick 10 and list down the conference's short name of these papers. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
among the papers published in 2009, pick 10 and list down the conference's short name of these papers.
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'
Question: 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'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. P...
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'.
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 <> ''
Question: list down all paper name that were published in conference 'international conference on internet computing'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Pap...
list down all paper name that were published in conference 'international conference on internet computing'.
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'
Question: among papers that were published in 2005, provide the author name of paper with key words of 'load; ide; snp; haplotype; asso- ciation studies'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, C...
among papers that were published in 2005, provide the author name of paper with key words of 'load; ide; snp; haplotype; asso- ciation studies'.
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: '
Question: how many authors have written paper '145 growth hormone receptors and the onset of hyperinsulinemia in the obese zucker rat: '? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Jour...
how many authors have written paper '145 growth hormone receptors and the onset of hyperinsulinemia in the obese zucker rat: '?
authors
select t2.authorid, t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'jei keon chae'
Question: who are the co-authors for jei keon chae and what is the title of paper written by them? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId,...
who are the co-authors for jei keon chae and what is the title of paper written by them?
authors
select t1.conferenceid, t1.journalid, t2.name, t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join conference as t3 on t1.conferenceid = t3.id inner join journal as t4 on t1.journalid = t4.id where t2.name = 'shueh-lin yau'
Question: what are the conference name and journal name of paper written by shueh-lin yau? list down the name of co-authors and provide the title of that paper. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Y...
what are the conference name and journal name of paper written by shueh-lin yau? list down the name of co-authors and provide the title of that paper.
authors
select count(id) from paper where year between '1990' and '2000' and conferenceid = 0 and journalid = 0
Question: how many papers were preprinted between the years 1990 and 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, Name, Affilia...
how many papers were preprinted between the years 1990 and 2000?
authors
select name from author where affiliation = 'birkbeck university of london'
Question: list the names of all authors affiliated with birkbeck university of london. | 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, N...
list the names of all authors affiliated with birkbeck university of london.
authors
select shortname from conference where fullname like 'international symposium%'
Question: list the short name of all conferences whose full name begins with international symposium. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Paper...
list the short name of all conferences whose full name begins with international symposium.
authors
select count(homepage) from journal where homepage = ''
Question: how many journals do not have a website? | 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.Jou...
how many journals do not have a website?
authors
select t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.year = 0
Question: list author name for articles that are preprinted but 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, Aff...
list author name for articles that are preprinted but not published.
authors
select t2.affiliation from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t1.keyword = 'quantum physics'
Question: list author affiliation for papers whose topic is quantum physics. | 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...
list author affiliation for papers whose topic is quantum physics.
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
Question: identify by conference full name all papers in which a journal was not published but a conference. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -...
identify by conference full name all papers in which a journal was not published but a conference.
authors
select t2.title from conference as t1 inner join paper as t2 on t1.id = t2.conferenceid where t1.homepage = '' and t2.title <> ''
Question: identify by papers title those in which conferences have been published that do not have a website.. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor...
identify by papers title those in which conferences have been published that do not have a website..
authors
select distinct t2.year, fullname from journal as t1 inner join paper as t2 on t1.id = t2.journalid where t1.shortname = ''
Question: identify by publication year in the paper database all journals that don't have 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 -> Paper...
identify by publication year in the paper database all journals that don't have short name.
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'
Question: 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'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId...
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'?
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
Question: indicate the name of all the journals published in the paper database in the year 2001. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId, ...
indicate the name of all the journals published in the paper database in the year 2001.
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'
Question: 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'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id...
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'?
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'
Question: in how many papers and in what years was the international conference on database theory published? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor ...
in how many papers and in what years was the international conference on database theory published?
authors
select t2.fullname from paper as t1 inner join journal as t2 on t1.journalid = t2.id where t1.keyword = 'sustainability'
Question: what is the full name of the journals that are published in the database papers whose topic is sustainability? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. P...
what is the full name of the journals that are published in the database papers whose topic is sustainability?
authors
select t2.name from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join conference as t3 on t1.conferenceid = t3.id where t3.fullname like '%workshop%'
Question: what is the name of the authors of papers in which conferences have been published whose full name includes the word workshop? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, Journ...
what is the name of the authors of papers in which conferences have been published whose full name includes the word workshop?
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%'
Question: what percentage of authors of the paper about charged particle multiplicity are affiliated with infn? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAutho...
what percentage of authors of the paper about charged particle multiplicity are affiliated with infn?
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
Question: what percentage of journals whose short name begins with ann were published in the paper database in 1989? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Paper...
what percentage of journals whose short name begins with ann were published in the paper database in 1989?
authors
select count(paperid) from paperauthor where affiliation like '%microsoft research%'
Question: how many authors were associated with the microsoft research when paper number 1 was written? | 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 were associated with the microsoft research when paper number 1 was written?
authors
select keyword, year from paper where title = 'a formal approach to service component architecture'
Question: what was the topic of the article 'a formal approach to service component architecture' and when was it published? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keywor...
what was the topic of the article 'a formal approach to service component architecture' and when was it published?
authors
select cast(sum(case when year > 2000 then 1 else 0 end) as real) * 100 / count(id) from paper
Question: what percentage of papers were preprinted after the year 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, Name, Affiliati...
what percentage of papers were preprinted after the year 2000?
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'
Question: please list the names of the authors of the paper 'hypermethylation of the <i>tpef/hpp1</i> gene in primary and metastatic colorectal cancers'. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, Co...
please list the names of the authors of the paper 'hypermethylation of the <i>tpef/hpp1</i> gene in primary and metastatic colorectal cancers'.
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'
Question: 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'? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title,...
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'?
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'
Question: how many papers were in the journal 'iet software/iee proceedings - software'? | 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,...
how many papers were in the journal 'iet software/iee proceedings - software'?
authors
select t2.fullname from paper as t1 inner join conference as t2 on t1.conferenceid = t2.id where t1.id = 5
Question: what is the full name of the conference where paper number 5 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, AuthorId, Na...
what is the full name of the conference where paper number 5 was published?
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
Question: please list the titles of any two papers that jundu has written. | 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...
please list the titles of any two papers that jundu has written.
authors
select t1.title from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid where t2.name = 'cheng huang' and t2.affiliation = 'microsoft'
Question: what is the title of the paper that was written by cheng huang and affiliated with microsoft? | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> Pap...
what is the title of the paper that was written by cheng huang and affiliated with microsoft?
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
Question: please provide the full name of the conference where one of the papers of jean-luc hainaut were published. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. Paper...
please provide the full name of the conference where one of the papers of jean-luc hainaut were published.
authors
select t3.fullname from paper as t1 inner join paperauthor as t2 on t1.id = t2.paperid inner join journal as t3 on t1.journalid = t3.id where t2.name = 'andrew cain'
Question: what are the three journals that the papers written by andrew cain were published in? please provide your answer with the full name of each journal. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Yea...
what are the three journals that the papers written by andrew cain were published in? please provide your answer with the full name of each journal.
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'
Question: please list all of the associations that the authors of the paper 'fiber: a generalized framework for auto-tuning software' are affiliated with. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, C...
please list all of the associations that the authors of the paper 'fiber: a generalized framework for auto-tuning software' are affiliated with.
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
Question: 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. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Tit...
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.
authors
select t2.shortname, t2.fullname from paper as t1 inner join journal as t2 on t1.journalid = t2.id where t1.keyword like '%materials%'
Question: what is the journal's short and full names that feature papers on the 'materials' topic? | 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 journal's short and full names that feature papers on the 'materials' topic?
authors
select name from author where affiliation = 'university of oxford' order by name asc
Question: list the names of authors affiliated with the university of oxford in alphabetical order. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuthor -> PaperId...
list the names of authors affiliated with the university of oxford in alphabetical order.
authors
select shortname, homepage from conference where fullname like 'international conference on artificial intelligence%'
Question: list the short name and home page url of all the international conferences on artificial intelligence. | Tables: Author -> Id, Name, Affiliation. Conference -> Id, ShortName, FullName, HomePage. Journal -> Id, ShortName, FullName, HomePage. Paper -> Id, Title, Year, ConferenceId, JournalId, Keyword. PaperAuth...
list the short name and home page url of all the international conferences on artificial intelligence.