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... | What are keyphrases by Christof Dallermassl in 2000 ? | SELECT DISTINCT t2.keyphraseid FROM paper AS t3 JOIN paperkeyphrase AS t2 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 = "Christof Dallermassl" AND t3.year = 2000; |
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 author is most cited ? | SELECT DISTINCT t1.authorname , COUNT ( t3.citingpaperid ) FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN cite AS t3 ON t2.paperid = t3.citedpaperid GROUP BY t1.authorname 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... | journal articles by mohammad rastegari | SELECT DISTINCT t3.paperid 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 = "mohammad rastegari" AND t3.journalid >= 0; |
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... | Journal Papers by mohammad rastegari | SELECT DISTINCT t3.paperid 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 = "mohammad rastegari" AND t3.journalid >= 0; |
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... | best paper in TACL 2014 ? | SELECT DISTINCT COUNT ( DISTINCT t3.citingpaperid ) , t1.paperid 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 = 2014 AND t2.venuename = "TACL" GROUP BY t1.paperid ORDER BY COUNT ( DISTINCT 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... | What was the best paper at TACL 2014 ? | SELECT DISTINCT COUNT ( DISTINCT t3.citingpaperid ) , t1.paperid 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 = 2014 AND t2.venuename = "TACL" GROUP BY t1.paperid ORDER BY COUNT ( DISTINCT 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... | who published at acl 2016 ? | 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 t2.year = 2016 AND 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... | acl 2016 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 t2.year = 2016 AND 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... | authors of acl 2016 papers | 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 t2.year = 2016 AND 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... | List of authors acl 2016 | 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 t2.year = 2016 AND 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... | author published acl 2016 | 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 t2.year = 2016 AND 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... | who had papers at acl 2016 ? | 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 t2.year = 2016 AND 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... | List of authors in acl 2016 | 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 t2.year = 2016 AND 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... | How many papers were written on Multiuser Receiver in the Decision Feedback this year ? | 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 = "Multiuser Receiver in the Decision Feedback" AND t3.year = 2016 GROUP BY t3.paperid HAVING COUNT ( DISTINCT t1.keyphrasename ) > 1; |
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 run experiments on ImageNet ? | SELECT DISTINCT COUNT ( 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 LIKE "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... | How many papers used ImageNet dataset ? | SELECT DISTINCT COUNT ( 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 LIKE "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... | How many papers written on ImageNet ? | SELECT DISTINCT COUNT ( 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 LIKE "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... | how many papers are based on ImageNet | SELECT DISTINCT COUNT ( 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 LIKE "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... | how many papers use ImageNet ? | SELECT DISTINCT COUNT ( 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 LIKE "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... | How many papers did Mirella Lapata cite ? | SELECT DISTINCT COUNT ( t3.citedpaperid ) FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN cite AS t3 ON t2.paperid = t3.citingpaperid WHERE t1.authorname = "Mirella Lapata"; |
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 does Mirella Lapata cite | SELECT DISTINCT COUNT ( t3.citedpaperid ) FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN cite AS t3 ON t2.paperid = t3.citingpaperid WHERE t1.authorname = "Mirella Lapata"; |
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 has Mirella Lapata cited ? | SELECT DISTINCT COUNT ( t3.citedpaperid ) FROM writes AS t2 JOIN author AS t1 ON t2.authorid = t1.authorid JOIN cite AS t3 ON t2.paperid = t3.citingpaperid WHERE t1.authorname = "Mirella Lapata"; |
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 first VLDB paper ? | SELECT DISTINCT t3.year 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 = "Michael Stonebraker" AND t4.venuename = "VLDB" 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... | semantic parsing dataset | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | data sets for semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | list datasets for semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets for semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | Datasets with semantic parsing information | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets used by semantic parsing papers | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets in semantic parsing papers | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | semantic parsing datasets | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets in papers about semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets used for semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | large-scale datasets used in semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets with semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | datasets used for evaluating semantic parsing | SELECT DISTINCT t2.datasetid FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN keyphrase AS t4 ON t1.keyphraseid = t4.keyphraseid WHERE t4.keyphrasename = "semantic 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... | where does Peter Mertens publish ? | SELECT DISTINCT t3.journalid , t4.venueid 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 = "Peter Mertens"; |
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 venues does Peter Mertens publish ? | SELECT DISTINCT t3.journalid , t4.venueid 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 = "Peter Mertens"; |
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... | Where does Peter Mertens publish ? | SELECT DISTINCT t3.journalid , t4.venueid 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 = "Peter Mertens"; |
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 appeared at nature communications last year | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 at nature communications 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 accepted in nature communications 2015 | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 published in nature communications in 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 on nature communications in 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 in nature communications 2015 | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 accepted at nature communications 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 presented in nature communications 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 published in nature communications in 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 published in nature communications 2015 ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 published in nature communications 2015 conference ? | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 was published in nature communications in 2015 | SELECT DISTINCT COUNT ( t1.paperid ) FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t1.year = 2015 AND t2.venuename = "nature communications"; |
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 deep learning paper ? | SELECT DISTINCT t2.datasetid , t4.year FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN paper AS t4 ON t4.paperid = t3.paperid JOIN keyphrase AS t5 ON t1.keyphraseid = t5.keyphraseid WHERE t5.keyphrasename = "deep learning" O... |
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 was the first deep learning paper published ? | SELECT DISTINCT t2.datasetid , t4.year FROM paperdataset AS t3 JOIN dataset AS t2 ON t3.datasetid = t2.datasetid JOIN paperkeyphrase AS t1 ON t1.paperid = t3.paperid JOIN paper AS t4 ON t4.paperid = t3.paperid JOIN keyphrase AS t5 ON t1.keyphraseid = t5.keyphraseid WHERE t5.keyphrasename = "deep learning" O... |
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... | datasets mentioned at ACL | SELECT DISTINCT t1.datasetid FROM paperdataset AS t2 JOIN dataset AS t1 ON t2.datasetid = t1.datasetid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN venue AS t4 ON t4.venueid = t3.venueid WHERE t4.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... | what datasets do papers at ACL use most ? | SELECT DISTINCT t1.datasetid FROM paperdataset AS t2 JOIN dataset AS t1 ON t2.datasetid = t1.datasetid JOIN paper AS t3 ON t3.paperid = t2.paperid JOIN venue AS t4 ON t4.venueid = t3.venueid WHERE t4.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... | the papers on semantic parsing by li dong at acl in 2016 | SELECT DISTINCT t2.paperid FROM paperkeyphrase AS t5 JOIN keyphrase AS t3 ON t5.keyphraseid = t3.keyphraseid JOIN paper AS t2 ON t2.paperid = t5.paperid JOIN venue AS t6 ON t6.venueid = t2.venueid JOIN writes AS t4 ON t4.paperid = t2.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t1.authorname ... |
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 convolutional neural networks in the past year ? | 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 = "convolutional neural networks" 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... | How many papers were published on convolutional neural networks in 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 = "convolutional neural networks" 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... | How many papers were written on convolutional neural networks in 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 = "convolutional neural networks" 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... | How many papers were written on the convolutional neural networks this year ? | 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 = "convolutional neural networks" 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... | how many papers on convolutional neural networks have been published in the past year ? | 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 = "convolutional neural networks" 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 this year ? | 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... | which year had the most NIPS papers ? | SELECT DISTINCT COUNT ( t1.paperid ) , t1.year FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "NIPS" GROUP BY t1.year ORDER BY COUNT ( t1.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 had the most NIPS papers ? | SELECT DISTINCT COUNT ( t1.paperid ) , t1.year FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "NIPS" GROUP BY t1.year ORDER BY COUNT ( t1.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 had the most number of NIPS papers ? | SELECT DISTINCT COUNT ( t1.paperid ) , t1.year FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "NIPS" GROUP BY t1.year ORDER BY COUNT ( t1.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... | when were most NIPS papers published ? | SELECT DISTINCT COUNT ( t1.paperid ) , t1.year FROM venue AS t2 JOIN paper AS t1 ON t2.venueid = t1.venueid WHERE t2.venuename = "NIPS" GROUP BY t1.year ORDER BY COUNT ( t1.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 writes papers with Noah A Smith ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 is a coauthor with Noah A Smith ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 Noah A Smith 's co-authors | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 coauthored with Noah A Smith ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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... | co-authors of Noah A Smith | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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... | author who wrote papers with Noah A Smith | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 who collaborated with Noah A Smith | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 does Noah A Smith author with ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 Noah A Smith 's coauthors | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 all the co-authors of Noah A Smith ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 does Noah A Smith work with ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 does Noah A Smith collaborate with ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 Noah A Smith 's coauthors ? | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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... | coauthors of Noah A Smith | SELECT DISTINCT t1.authorid FROM writes AS t3 JOIN author AS t2 ON t3.authorid = t2.authorid JOIN writes AS t4 ON t4.paperid = t3.paperid JOIN author AS t1 ON t4.authorid = t1.authorid WHERE t2.authorname = "Noah A Smith"; |
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 datasets did jitendra malik use ? | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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 datasets are used in papers by jitendra malik | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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 datasets did jitendra malik use in his papers ? | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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 datasets were used by jitendra malik ? | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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... | datasets used in papers written by jitendra malik ? | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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... | Datasets by jitendra malik | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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 datasets have jitendra malik used | SELECT DISTINCT t2.datasetid FROM paper AS t3 JOIN paperdataset AS t2 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 = "jitendra malik"; |
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... | recent deep learning papers | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | new deep learning papers | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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 are the latest publications on deep learning ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | Most recent deep learning conference ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | Show me some recent papers on deep learning ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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 are some recent papers written in deep learning ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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 is the most recent paper of deep learning ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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 are recent papers on deep learning ? | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | Current research on deep learning | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | latest deep learning papers | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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... | newest deep learning papers | SELECT DISTINCT t3.paperid , 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" ORDER BY t3.year 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 years did Pedro Domingos publish papers in ? | 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 = "Pedro Domingos" GROUP 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... | In what years did Pedro Domingos publish a paper ? | 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 = "Pedro Domingos" GROUP BY t3.year; |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.