db_id stringclasses 146
values | schema stringclasses 146
values | question stringlengths 3 224 | sql stringlengths 18 577 |
|---|---|---|---|
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | how many papers are published in sigir ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "sigir"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | number of papers in sigir conference | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "sigir"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what papers have fewer than 5 citations by ACL papers ? | SELECT DISTINCT t3.citingpaperid FROM paper AS t1 JOIN cite AS t3 ON t1.paperid = t3.citedpaperid JOIN venue AS t2 ON t2.venueid = t1.venueid WHERE t2.venuename = "ACL" GROUP BY t3.citingpaperid HAVING COUNT ( DISTINCT t3.citedpaperid ) < 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | ACL papers with less than 5 citations | SELECT DISTINCT t3.citingpaperid FROM paper AS t1 JOIN cite AS t3 ON t1.paperid = t3.citedpaperid JOIN venue AS t2 ON t2.venueid = t1.venueid WHERE t2.venuename = "ACL" GROUP BY t3.citingpaperid HAVING COUNT ( DISTINCT t3.citedpaperid ) < 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what ACL papers have less than 5 citations ? | SELECT DISTINCT t3.citingpaperid FROM paper AS t1 JOIN cite AS t3 ON t1.paperid = t3.citedpaperid JOIN venue AS t2 ON t2.venueid = t1.venueid WHERE t2.venuename = "ACL" GROUP BY t3.citingpaperid HAVING COUNT ( DISTINCT t3.citedpaperid ) < 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what papers have fewer than 5 citations by ACL papers | SELECT DISTINCT t3.citingpaperid FROM paper AS t1 JOIN cite AS t3 ON t1.paperid = t3.citedpaperid JOIN venue AS t2 ON t2.venueid = t1.venueid WHERE t2.venuename = "ACL" GROUP BY t3.citingpaperid HAVING COUNT ( DISTINCT t3.citedpaperid ) < 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What are the 5 most recent papers of Mirella Lapata ? | SELECT DISTINCT t3.paperid , t3.year FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Mirella Lapata" ORDER BY t3.year DESC LIMIT 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What were the papers published at pldi 2015 ? | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Papers from pldi 2015 conference | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers published at pldi 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What are the papers from pldi 2015 ? | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Papers from pldi 2015 ? | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Which papers were accepted in pldi 2015 ? | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What papers were published during the conference pldi 2015 ? | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers in pldi 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | List of papers in pldi 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | pldi papers in 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what papers are published in pldi 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers from pldi 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | pldi papers 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | pldi 2015 conference | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | pldi best paper award 2015 | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | pldi 2015 list of papers | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "pldi"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | List today 's journals | SELECT DISTINCT journalid FROM paper WHERE YEAR = 2011 GROUP BY journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | List the journals published in March , 2011 | SELECT DISTINCT journalid FROM paper WHERE YEAR = 2011 GROUP BY journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | ACL papers in 2016 with neural attention in the title | SELECT DISTINCT t1.paperid FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.title LIKE "neural attention" AND t1.year = 2016 AND t2.venuename = "ACL"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who writes a lot of papers in Machine Learning ? | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename = "Machine Learning" GROUP BY t1.authorname ORDER BY COUNT ( DISTINCT t3.paperid ) DE... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who wrote sensor fusion ? | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename LIKE "sensor fusion"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Authors of papers on sensor fusion | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename LIKE "sensor fusion"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | people working on sensor fusion | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename LIKE "sensor fusion"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who publishes in sensor fusion ? | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename LIKE "sensor fusion"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who publishes papers about sensor fusion | SELECT DISTINCT t1.authorname FROM paperkeyphrase AS t2 JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid JOIN writes AS t3 ON t3.paperid = t2.paperid JOIN author AS t1 ON t3.authorid = t1.authorid WHERE t4.keyphrasename LIKE "sensor fusion"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | how many papers by dan klein are cited by michael i. jordan | SELECT DISTINCT COUNT ( t5.citingpaperid ) FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN cite AS t5 ON t3.paperid = t5.citedpaperid JOIN writes AS t4 ON t4.paperid = t5.citingpaperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "michael i. jordan" AND t1.authorn... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | how many of dan klein 's papers cite michael i. jordan | SELECT DISTINCT COUNT ( t5.citingpaperid ) FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN cite AS t5 ON t3.paperid = t5.citedpaperid JOIN writes AS t4 ON t4.paperid = t5.citingpaperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "michael i. jordan" AND t1.authorn... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who else was on the paper with Ameet Soni and Ras Bodik ? | SELECT DISTINCT t5.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN writes AS t5 ON t5.paperid = t4.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Ameet Soni" AND t1.authorname = "Ras Bodik"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | 2014 papers using ImageNet | SELECT DISTINCT t3.paperid FROM paperdataset AS t2 JOIN dataset AS t1 ON t2.datasetid = t1.datasetid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.datasetname = "ImageNet" AND t3.year = 2014; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What journals are Takashi Matsumoto 's articles published in ? | SELECT DISTINCT t3.journalid FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Takashi Matsumoto" GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What journals has Takashi Matsumoto published in ? | SELECT DISTINCT t3.journalid FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Takashi Matsumoto" GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | In what scholarly journals does Takashi Matsumoto publish ? | SELECT DISTINCT t3.journalid FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Takashi Matsumoto" GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What authors wrote papers about Bacterial Wilt in 2016 ? | SELECT DISTINCT t3.authorid FROM paperkeyphrase AS t1 JOIN keyphrase AS t2 ON t1.keyphraseid = t2.keyphraseid JOIN paper AS t4 ON t4.paperid = t1.paperid JOIN writes AS t3 ON t3.paperid = t4.paperid JOIN author AS t5 ON t3.authorid = t5.authorid WHERE t2.keyphrasename = "Bacterial Wilt" AND t4.year = 2016; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who wrote on the topic of Bacterial Wilt in 2016 ? | SELECT DISTINCT t3.authorid FROM paperkeyphrase AS t1 JOIN keyphrase AS t2 ON t1.keyphraseid = t2.keyphraseid JOIN paper AS t4 ON t4.paperid = t1.paperid JOIN writes AS t3 ON t3.paperid = t4.paperid JOIN author AS t5 ON t3.authorid = t5.authorid WHERE t2.keyphrasename = "Bacterial Wilt" AND t4.year = 2016; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | When did Luke S Zettlemoyer publish ? | SELECT DISTINCT t3.year FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Luke S Zettlemoyer" ORDER BY t3.year; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | question answering 2016 papers | SELECT DISTINCT t3.paperid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "question answering" AND t3.year = 2016; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What papers were written on question answering in 2016 ? | SELECT DISTINCT t3.paperid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "question answering" AND t3.year = 2016; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what keyphrases get most citations ? | SELECT DISTINCT COUNT ( t3.citingpaperid ) , t1.keyphrasename FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN cite AS t3 ON t2.paperid = t3.citedpaperid GROUP BY t1.keyphrasename ORDER BY COUNT ( t3.citingpaperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Find journals about Temporal Data . | SELECT DISTINCT t3.journalid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Temporal Data" GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | List the journals related to Temporal Data | SELECT DISTINCT t3.journalid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Temporal Data" GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | which ACL 2014 papers about Parsing used Jeopardy! Questions ? | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t5 ON t3.datasetid = t5.datasetid JOIN paperkeyphrase AS t4 ON t4.paperid = t3.paperid JOIN paper AS t2 ON t2.paperid = t3.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN keyphrase AS t1 ON t4.keyphraseid = t1.keyphraseid WHERE t5.dat... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Parsing papers using Jeopardy! Questions published at ACL 2014 | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t5 ON t3.datasetid = t5.datasetid JOIN paperkeyphrase AS t4 ON t4.paperid = t3.paperid JOIN paper AS t2 ON t2.paperid = t3.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN keyphrase AS t1 ON t4.keyphraseid = t1.keyphraseid WHERE t5.dat... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Parsing papers from ACL 2014 using Jeopardy! Questions | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t5 ON t3.datasetid = t5.datasetid JOIN paperkeyphrase AS t4 ON t4.paperid = t3.paperid JOIN paper AS t2 ON t2.paperid = t3.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN keyphrase AS t1 ON t4.keyphraseid = t1.keyphraseid WHERE t5.dat... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Parsing papers from ACL 2014 that used Jeopardy! Questions | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t5 ON t3.datasetid = t5.datasetid JOIN paperkeyphrase AS t4 ON t4.paperid = t3.paperid JOIN paper AS t2 ON t2.paperid = t3.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN keyphrase AS t1 ON t4.keyphraseid = t1.keyphraseid WHERE t5.dat... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers about Parsing that used Jeopardy! Questions and were published at ACL 2014 | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t5 ON t3.datasetid = t5.datasetid JOIN paperkeyphrase AS t4 ON t4.paperid = t3.paperid JOIN paper AS t2 ON t2.paperid = t3.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN keyphrase AS t1 ON t4.keyphraseid = t1.keyphraseid WHERE t5.dat... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | in what journals does linda shapiro publish ? | SELECT DISTINCT t2.journalid FROM paper AS t3 JOIN journal AS t2 ON t3.journalid = t2.journalid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname = "linda shapiro"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Which journals did linda shapiro submit papers to ? | SELECT DISTINCT t2.journalid FROM paper AS t3 JOIN journal AS t2 ON t3.journalid = t2.journalid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname = "linda shapiro"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | NIPS authors | SELECT DISTINCT t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "NIPS"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who are the authors at NIPS ? | SELECT DISTINCT t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "NIPS"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who authored papers at NIPS ? | SELECT DISTINCT t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "NIPS"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who publishes in NIPS ? | SELECT DISTINCT t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "NIPS"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who has papers at NIPS ? | SELECT DISTINCT t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "NIPS"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | which venue publishes the most papers about deep learning | SELECT DISTINCT COUNT ( t3.paperid ) , t4.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN venue AS t4 ON t4.venueid = t3.venueid WHERE t1.keyphrasename = "deep learning" GROUP BY t4.venueid ORDER BY COUNT ( t3.paperid )... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | How many publications were added to the Cell journal this year ? | SELECT DISTINCT COUNT ( t3.paperid ) FROM paper AS t3 JOIN journal AS t2 ON t3.journalid = t2.journalid JOIN paperkeyphrase AS t1 ON t3.paperid = t1.paperid WHERE t2.journalname = "Cell" AND t3.year = 2015; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | How many articles were published in the Cell journal in 2015 ? | SELECT DISTINCT COUNT ( t3.paperid ) FROM paper AS t3 JOIN journal AS t2 ON t3.journalid = t2.journalid JOIN paperkeyphrase AS t1 ON t3.paperid = t1.paperid WHERE t2.journalname = "Cell" AND t3.year = 2015; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What are all the publication titles by Donald E Knuth ? | SELECT DISTINCT t3.title FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname = "Donald E Knuth"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers published in eccv 2016 by ali farhadi | SELECT DISTINCT t3.paperid FROM venue AS t4 JOIN paper AS t3 ON t4.venueid = t3.venueid JOIN writes AS t2 ON t2.paperid = t3.paperid JOIN author AS t1 ON t2.authorid = t1.authorid WHERE t1.authorname = "ali farhadi" AND t3.year = 2016 AND t4.venuename = "eccv"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Does ali farhadi have a paper in eccv in 2016 ? | SELECT DISTINCT t3.paperid FROM venue AS t4 JOIN paper AS t3 ON t4.venueid = t3.venueid JOIN writes AS t2 ON t2.paperid = t3.paperid JOIN author AS t1 ON t2.authorid = t1.authorid WHERE t1.authorname = "ali farhadi" AND t3.year = 2016 AND t4.venuename = "eccv"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers of ali farhadi in eccv 2016 | SELECT DISTINCT t3.paperid FROM venue AS t4 JOIN paper AS t3 ON t4.venueid = t3.venueid JOIN writes AS t2 ON t2.paperid = t3.paperid JOIN author AS t1 ON t2.authorid = t1.authorid WHERE t1.authorname = "ali farhadi" AND t3.year = 2016 AND t4.venuename = "eccv"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What are some papers dealing with Semantic Data in YAGO ? | SELECT DISTINCT t2.paperid FROM paperdataset AS t3 JOIN dataset AS t1 ON t3.datasetid = t1.datasetid JOIN paperkeyphrase AS t2 ON t2.paperid = t3.paperid JOIN keyphrase AS t4 ON t2.keyphraseid = t4.keyphraseid WHERE t1.datasetname = "YAGO" AND t4.keyphrasename = "Semantic Data"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who has published more papers in chi ? | SELECT DISTINCT COUNT ( DISTINCT t2.paperid ) , t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "chi" GROUP BY t1.authorid ORDER BY COUNT ( DISTINCT t2.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Who has written the most papers at chi ? | SELECT DISTINCT COUNT ( DISTINCT t2.paperid ) , t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "chi" GROUP BY t1.authorid ORDER BY COUNT ( DISTINCT t2.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | how is the most prolific author in chi ? | SELECT DISTINCT COUNT ( DISTINCT t2.paperid ) , t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "chi" GROUP BY t1.authorid ORDER BY COUNT ( DISTINCT t2.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who published the most at chi | SELECT DISTINCT COUNT ( DISTINCT t2.paperid ) , t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "chi" GROUP BY t1.authorid ORDER BY COUNT ( DISTINCT t2.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | In what year did Ye Cao publish the most papers | SELECT DISTINCT COUNT ( DISTINCT t3.paperid ) , t3.year FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname LIKE "Ye Cao" GROUP BY t3.year ORDER BY COUNT ( DISTINCT t3.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What year did Ye Cao publish the most papers | SELECT DISTINCT COUNT ( DISTINCT t3.paperid ) , t3.year FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN paper AS t3 ON t2.paperid = t3.paperid WHERE t1.authorname LIKE "Ye Cao" GROUP BY t3.year ORDER BY COUNT ( DISTINCT t3.paperid ) DESC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | conferences that mention ImageNet | SELECT DISTINCT t3.venueid FROM paperdataset AS t2 JOIN dataset AS t1 ON t2.datasetid = t1.datasetid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.datasetname = "ImageNet"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | first deep learning paper | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "deep learning" GROUP BY t3.year ORDER BY t3.year ASC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What was the first paper on deep learning written ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "deep learning" GROUP BY t3.year ORDER BY t3.year ASC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | When was deep learning proposed ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "deep learning" GROUP BY t3.year ORDER BY t3.year ASC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | when was the first deep learning paper published ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "deep learning" GROUP BY t3.year ORDER BY t3.year ASC; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what papers were published in Academic radiology in 1995 ? | SELECT DISTINCT t2.paperid FROM paper AS t2 JOIN journal AS t1 ON t2.journalid = t1.journalid WHERE t1.journalname = "Academic radiology" AND t2.year = 1995; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what papers do parsing papers typically cite ? | SELECT DISTINCT t4.citedpaperid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN cite AS t4 ON t3.paperid = t4.citingpaperid WHERE t1.keyphrasename = "parsing"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers typically cited by parsing papers | SELECT DISTINCT t4.citedpaperid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN cite AS t4 ON t3.paperid = t4.citingpaperid WHERE t1.keyphrasename = "parsing"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | venue for Trophic Cascade | SELECT DISTINCT t3.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Trophic Cascade"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | conferences for Trophic Cascade | SELECT DISTINCT t3.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Trophic Cascade"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what conferences are related to Trophic Cascade | SELECT DISTINCT t3.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Trophic Cascade"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What was the conference name that approved Trophic Cascade ? | SELECT DISTINCT t3.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Trophic Cascade"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | How many papers were written on question answering in 2011 through 2016 ? | SELECT DISTINCT COUNT ( t3.paperid ) FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "question answering" AND t3.year >= 2011; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What are the best NLP conferences ? | SELECT DISTINCT COUNT ( DISTINCT t4.citingpaperid ) , t3.venueid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN cite AS t4 ON t3.paperid = t4.citedpaperid WHERE t1.keyphrasename = "NLP" GROUP BY t3.venueid ORDER BY COUNT ( DIS... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | ACL papers by author | SELECT DISTINCT t2.paperid , t1.authorid FROM venue AS t3 JOIN paper AS t2 ON t3.venueid = t2.venueid JOIN writes AS t1 ON t1.paperid = t2.paperid WHERE t3.venuename = "ACL"; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers with more than 10 citations | SELECT DISTINCT t2.citingpaperid FROM paper AS t1 JOIN cite AS t2 ON t1.paperid = t2.citedpaperid GROUP BY t2.citingpaperid HAVING COUNT ( DISTINCT t2.citedpaperid ) > 10; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | Which authors published papers in 2015 ? | SELECT DISTINCT t1.authorid FROM writes AS t1 JOIN paper AS t2 ON t1.paperid = t2.paperid WHERE t2.year = 2015; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | who wrote papers in 2015 | SELECT DISTINCT t1.authorid FROM writes AS t1 JOIN paper AS t2 ON t1.paperid = t2.paperid WHERE t2.year = 2015; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | what keyphrase does Brian DeRenzi write about that gets most citations ? | SELECT DISTINCT t1.keyphrasename , SUM ( t3.numcitedby ) FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t5 ON t4.authorid = t5.authorid WHERE t5.authorname = "Brian DeRe... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | main topics of work by Brian DeRenzi | SELECT DISTINCT t1.keyphrasename , SUM ( t3.numcitedby ) FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t5 ON t4.authorid = t5.authorid WHERE t5.authorname = "Brian DeRe... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | authors with at least 5 papers | SELECT DISTINCT COUNT ( t2.paperid ) , t1.authorid FROM writes AS t1 JOIN paper AS t2 ON t1.paperid = t2.paperid GROUP BY t1.authorid HAVING COUNT ( t2.paperid ) >= 5; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | papers that were not published in the last year | SELECT DISTINCT paperid FROM paper WHERE YEAR != 2015; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | When was Michael Stonebraker GIS Database published ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t5 ON t2.keyphraseid = t5.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname = "Michael Stonebraker" AND t5.keyphrasename = ... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | When did Michael Stonebraker publish his GIS Database paper ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t5 ON t2.keyphraseid = t5.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname = "Michael Stonebraker" AND t5.keyphrasename = ... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | When does Michael Stonebraker publish the GIS Database paper ? | SELECT DISTINCT t3.year FROM paperkeyphrase AS t2 JOIN keyphrase AS t5 ON t2.keyphraseid = t5.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname = "Michael Stonebraker" AND t5.keyphrasename = ... |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | In 2010 what journal published an article about Trophic Cascade ? | SELECT DISTINCT t3.journalid FROM paperkeyphrase AS t2 JOIN keyphrase AS t1 ON t2.keyphraseid = t1.keyphraseid JOIN paper AS t3 ON t3.paperid = t2.paperid WHERE t1.keyphrasename = "Trophic Cascade" AND t3.year = 2010 GROUP BY t3.journalid; |
scholar | 【DB_ID】 scholar
【Schema】
# Table: main.author
[
(authorId:INTEGER, Primary Key),
(authorName:VARCHAR)
]
# Table: main.cite
[
(citingPaperId:INTEGER, Primary Key),
(citedPaperId:INTEGER, Primary Key)
]
# Table: main.dataset
[
(datasetId:INTEGER, Primary Key),
(datasetName:VARCHAR)
]
# Table: main.journal
[
(journalId:IN... | What is the most popular paper this year in CVPR ? | SELECT DISTINCT t3.citedpaperid , COUNT ( t3.citingpaperid ) FROM paper AS t1 JOIN cite AS t3 ON t1.paperid = t3.citedpaperid JOIN venue AS t2 ON t2.venueid = t1.venueid WHERE t1.year = 2016 AND t2.venuename = "CVPR" GROUP BY t3.citedpaperid ORDER BY COUNT ( t3.citingpaperid ) DESC; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.