id
int64
0
8.66k
db_id
stringclasses
146 values
schema
stringclasses
146 values
question
stringlengths
3
224
output
stringlengths
18
577
8,300
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me all the papers in " University of Michigan " .
SELECT t4.title FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan";
8,301
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me all the papers after 2000 in " University of Michigan " .
SELECT t4.title FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan" AND t4.year > 2000;
8,302
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me all the papers in VLDB conference in " University of Michigan " .
SELECT t5.title FROM organization AS t3 JOIN author AS t1 ON t3.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN conference AS t2 ON t5.cid = t2.cid WHERE t2.name = "VLDB" AND t3.name = "University of Michigan";
8,303
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me all the papers in PVLDB in " University of Michigan " .
SELECT t5.title FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = "PVLDB" AND t2.name = "University of Michigan";
8,304
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me all the papers in PVLDB after 2000 in " University of Michigan " .
SELECT t5.title FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = "PVLDB" AND t2.name = "University of Michigan" AND t5.year > 2000;
8,305
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper in Databases area with more than 200 citations .
SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = "Databases" AND t3.citation_num > 200;
8,306
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper in PVLDB with more than 200 citations .
SELECT t2.title FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.citation_num > 200;
8,307
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper in VLDB conference with more than 200 citations .
SELECT t2.title FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.citation_num > 200;
8,308
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper by " H. V. Jagadish " with more than 200 citations .
SELECT t3.title FROM writes AS t2 JOIN author AS t1 ON t2.aid = t1.aid JOIN publication AS t3 ON t2.pid = t3.pid WHERE t1.name = "H. V. Jagadish" AND t3.citation_num > 200;
8,309
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers by " H. V. Jagadish " on PVLDB with more than 200 citations .
SELECT t4.title FROM publication AS t4 JOIN journal AS t2 ON t4.jid = t2.jid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "PVLDB" AND t4.citation_num > 200;
8,310
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers by " H. V. Jagadish " on VLDB conference with more than 200 citations .
SELECT t4.title FROM publication AS t4 JOIN conference AS t2 ON t4.cid = t2.cid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "VLDB" AND t4.citation_num > 200;
8,311
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper after 2000 with more than 200 citations .
SELECT title FROM publication WHERE citation_num > 200 AND YEAR > 2000;
8,312
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper after 2000 in Databases area with more than 200 citations .
SELECT t3.title FROM DOMAIN AS t2 JOIN domain_publication AS t1 ON t2.did = t1.did JOIN publication AS t3 ON t3.pid = t1.pid WHERE t2.name = "Databases" AND t3.citation_num > 200 AND t3.year > 2000;
8,313
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper after 2000 in PVLDB with more than 200 citations .
SELECT t2.title FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.citation_num > 200 AND t2.year > 2000;
8,314
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the paper after 2000 in VLDB conference with more than 200 citations .
SELECT t2.title FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.citation_num > 200 AND t2.year > 2000;
8,315
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of conferences which have papers by " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t2.name ) FROM publication AS t4 JOIN conference AS t2 ON t4.cid = t2.cid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish";
8,316
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of journals which have papers by " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t2.name ) FROM publication AS t4 JOIN journal AS t2 ON t4.jid = t2.jid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish";
8,317
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers written by " H. V. Jagadish " in each year .
SELECT COUNT ( DISTINCT t3.title ) , t3.year FROM writes AS t2 JOIN author AS t1 ON t2.aid = t1.aid JOIN publication AS t3 ON t2.pid = t3.pid WHERE t1.name = "H. V. Jagadish" GROUP BY t3.year;
8,318
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors of " Making database systems usable " .
SELECT COUNT ( DISTINCT t1.name ) FROM writes AS t2 JOIN author AS t1 ON t2.aid = t1.aid JOIN publication AS t3 ON t2.pid = t3.pid WHERE t3.title = "Making database systems usable";
8,319
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of citations of " Making database systems usable " in each year .
SELECT YEAR , SUM ( citation_num ) FROM publication WHERE title = "Making database systems usable" GROUP BY YEAR;
8,320
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of citations of " Making database systems usable " before 2010 .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t3 JOIN cite AS t1 ON t3.pid = t1.cited JOIN publication AS t2 ON t2.pid = t1.citing WHERE t3.title = "Making database systems usable" AND t2.year < 2010;
8,321
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t3.title ) FROM writes AS t2 JOIN author AS t1 ON t2.aid = t1.aid JOIN publication AS t3 ON t2.pid = t3.pid WHERE t1.name = "H. V. Jagadish";
8,322
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers on VLDB conference .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB";
8,323
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers on PVLDB .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB";
8,324
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers after 2000 .
SELECT COUNT ( DISTINCT title ) FROM publication WHERE YEAR > 2000;
8,325
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers on PVLDB after 2000 .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.year > 2000;
8,326
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers on VLDB conference after 2000 .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.year > 2000;
8,327
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " on PVLDB .
SELECT COUNT ( DISTINCT t4.title ) FROM publication AS t4 JOIN journal AS t2 ON t4.jid = t2.jid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "PVLDB";
8,328
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " on VLDB conference .
SELECT COUNT ( DISTINCT t4.title ) FROM publication AS t4 JOIN conference AS t2 ON t4.cid = t2.cid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "VLDB";
8,329
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " after 2000 .
SELECT COUNT ( DISTINCT t3.title ) FROM writes AS t2 JOIN author AS t1 ON t2.aid = t1.aid JOIN publication AS t3 ON t2.pid = t3.pid WHERE t1.name = "H. V. Jagadish" AND t3.year > 2000;
8,330
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " on PVLDB after 2000 .
SELECT COUNT ( DISTINCT t4.title ) FROM publication AS t4 JOIN journal AS t2 ON t4.jid = t2.jid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "PVLDB" AND t4.year > 2000;
8,331
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers by " H. V. Jagadish " on VLDB conference after 2000 .
SELECT COUNT ( DISTINCT t4.title ) FROM publication AS t4 JOIN conference AS t2 ON t4.cid = t2.cid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t2.name = "VLDB" AND t4.year > 2000;
8,332
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of keywords .
SELECT COUNT ( DISTINCT keyword ) FROM keyword;
8,333
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of keywords in Databases area .
SELECT COUNT ( DISTINCT t1.keyword ) FROM DOMAIN AS t3 JOIN domain_keyword AS t2 ON t3.did = t2.did JOIN keyword AS t1 ON t1.kid = t2.kid WHERE t3.name = "Databases";
8,334
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers which contain the keyword " Natural Language " .
SELECT COUNT ( DISTINCT t3.title ) FROM publication_keyword AS t2 JOIN keyword AS t1 ON t2.kid = t1.kid JOIN publication AS t3 ON t3.pid = t2.pid WHERE t1.keyword = "Natural Language";
8,335
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of the keywords of " Making database systems usable " .
SELECT COUNT ( DISTINCT t1.keyword ) FROM publication_keyword AS t3 JOIN keyword AS t1 ON t3.kid = t1.kid JOIN publication AS t2 ON t2.pid = t3.pid WHERE t2.title = "Making database systems usable";
8,336
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of the keywords related to " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t1.keyword ) FROM publication_keyword AS t5 JOIN keyword AS t1 ON t5.kid = t1.kid JOIN publication AS t3 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t3.pid JOIN author AS t2 ON t4.aid = t2.aid WHERE t2.name = "H. V. Jagadish";
8,337
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of keywords in VLDB conference .
SELECT COUNT ( DISTINCT t1.keyword ) FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t3 ON t3.pid = t4.pid JOIN conference AS t2 ON t3.cid = t2.cid WHERE t2.name = "VLDB";
8,338
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of keywords in PVLDB .
SELECT COUNT ( DISTINCT t1.keyword ) FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t2 ON t2.pid = t4.pid JOIN journal AS t3 ON t2.jid = t3.jid WHERE t3.name = "PVLDB";
8,339
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of keywords in the papers of " University of Michigan " .
SELECT COUNT ( DISTINCT t1.keyword ) FROM organization AS t6 JOIN author AS t2 ON t6.oid = t2.oid JOIN writes AS t4 ON t4.aid = t2.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN publication_keyword AS t3 ON t5.pid = t3.pid JOIN keyword AS t1 ON t3.kid = t1.kid WHERE t6.name = "University of Michigan";
8,340
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of the papers of " H. V. Jagadish " containing keyword " User Study " .
SELECT COUNT ( DISTINCT t5.title ) FROM publication_keyword AS t3 JOIN keyword AS t1 ON t3.kid = t1.kid JOIN publication AS t5 ON t5.pid = t3.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t2 ON t4.aid = t2.aid WHERE t2.name = "H. V. Jagadish" AND t1.keyword = "User Study";
8,341
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in PVLDB containing keyword " Keyword search " .
SELECT COUNT ( DISTINCT t4.title ) FROM publication_keyword AS t2 JOIN keyword AS t1 ON t2.kid = t1.kid JOIN publication AS t4 ON t4.pid = t2.pid JOIN journal AS t3 ON t4.jid = t3.jid WHERE t3.name = "PVLDB" AND t1.keyword = "Keyword search";
8,342
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in VLDB conference containing keyword " Information Retrieval " .
SELECT COUNT ( DISTINCT t4.title ) FROM publication_keyword AS t3 JOIN keyword AS t1 ON t3.kid = t1.kid JOIN publication AS t4 ON t4.pid = t3.pid JOIN conference AS t2 ON t4.cid = t2.cid WHERE t2.name = "VLDB" AND t1.keyword = "Information Retrieval";
8,343
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors who have papers containing keyword " Relational Database " .
SELECT COUNT ( DISTINCT t2.name ) FROM publication_keyword AS t5 JOIN keyword AS t1 ON t5.kid = t1.kid JOIN publication AS t3 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t3.pid JOIN author AS t2 ON t4.aid = t2.aid WHERE t1.keyword = "Relational Database";
8,344
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of the papers containing keyword " Natural Language "
SELECT SUM ( t3.citation_num ) FROM publication_keyword AS t2 JOIN keyword AS t1 ON t2.kid = t1.kid JOIN publication AS t3 ON t3.pid = t2.pid WHERE t1.keyword = "Natural Language";
8,345
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of the organizations .
SELECT COUNT ( DISTINCT name ) FROM organization;
8,346
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of the organizations in " North America " .
SELECT COUNT ( DISTINCT name ) FROM organization WHERE continent = "North America";
8,347
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of organizations in Databases area .
SELECT COUNT ( DISTINCT t2.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN organization AS t2 ON t2.oid = t1.oid WHERE t3.name = "Databases";
8,348
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of organizations in Databases area located in " North America " .
SELECT COUNT ( DISTINCT t2.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN organization AS t2 ON t2.oid = t1.oid WHERE t3.name = "Databases" AND t2.continent = "North America";
8,349
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in " University of Michigan " .
SELECT COUNT ( DISTINCT t4.title ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan";
8,350
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in " University of Michigan " in Databases area .
SELECT COUNT ( DISTINCT t4.title ) FROM domain_author AS t6 JOIN author AS t1 ON t6.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t6.did JOIN domain_publication AS t2 ON t3.did = t2.did JOIN organization AS t5 ON t5.oid = t1.oid JOIN publication AS t4 ON t4.pid = t2.pid WHERE t3.name = "Databases" AND t5.name ...
8,351
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers after 2000 in " University of Michigan " .
SELECT COUNT ( DISTINCT t4.title ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan" AND t4.year > 2000;
8,352
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in VLDB conference in " University of Michigan " .
SELECT COUNT ( DISTINCT t5.title ) FROM organization AS t3 JOIN author AS t1 ON t3.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN conference AS t2 ON t5.cid = t2.cid WHERE t2.name = "VLDB" AND t3.name = "University of Michigan";
8,353
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in PVLDB in " University of Michigan " .
SELECT COUNT ( DISTINCT t5.title ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = "PVLDB" AND t2.name = "University of Michigan";
8,354
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers in PVLDB after 2000 in " University of Michigan " .
SELECT COUNT ( DISTINCT t5.title ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t4 ON t4.aid = t1.aid JOIN publication AS t5 ON t4.pid = t5.pid JOIN journal AS t3 ON t5.jid = t3.jid WHERE t3.name = "PVLDB" AND t2.name = "University of Michigan" AND t5.year > 2000;
8,355
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of the papers in " University of Michigan " .
SELECT SUM ( t4.citation_num ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan";
8,356
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of researchers in " University of Michigan " .
SELECT COUNT ( DISTINCT t1.name ) FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid WHERE t2.name = "University of Michigan";
8,357
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of researchers in Databases area in " University of Michigan " .
SELECT COUNT ( DISTINCT t1.name ) FROM domain_author AS t4 JOIN author AS t1 ON t4.aid = t1.aid JOIN DOMAIN AS t3 ON t3.did = t4.did JOIN organization AS t2 ON t2.oid = t1.oid WHERE t3.name = "Databases" AND t2.name = "University of Michigan";
8,358
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors who have papers in PVLDB .
SELECT COUNT ( DISTINCT t1.name ) FROM publication AS t4 JOIN journal AS t2 ON t4.jid = t2.jid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t2.name = "PVLDB";
8,359
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors who have papers in the VLDB conference .
SELECT COUNT ( DISTINCT t1.name ) FROM publication AS t4 JOIN conference AS t2 ON t4.cid = t2.cid JOIN writes AS t3 ON t3.pid = t4.pid JOIN author AS t1 ON t3.aid = t1.aid WHERE t2.name = "VLDB";
8,360
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers published on PVLDB before 2000 .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.year < 2000;
8,361
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers published in the VLDB conference before 2000 .
SELECT COUNT ( DISTINCT t2.title ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.year < 2000;
8,362
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of all the papers in PVLDB .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB";
8,363
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the citations of each paper in PVLDB .
SELECT t2.citation_num FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB";
8,364
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in PVLDB in 2005 .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.year = 2005;
8,365
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in PVLDB before 2005 .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" AND t2.year < 2005;
8,366
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in PVLDB in each year .
SELECT t2.year , SUM ( t2.citation_num ) FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" GROUP BY t2.year;
8,367
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers published in PVLDB in each year .
SELECT COUNT ( DISTINCT t2.title ) , t2.year FROM publication AS t2 JOIN journal AS t1 ON t2.jid = t1.jid WHERE t1.name = "PVLDB" GROUP BY t2.year;
8,368
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of all the papers in the VLDB conference .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB";
8,369
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the citations of each paper in the VLDB conference .
SELECT t2.citation_num FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB";
8,370
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in the VLDB conference in 2005 .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.year = 2005;
8,371
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in the VLDB conference before 2005 .
SELECT SUM ( t2.citation_num ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" AND t2.year < 2005;
8,372
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the total citations of papers in the VLDB conference in each year .
SELECT t2.year , SUM ( t2.citation_num ) FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" GROUP BY t2.year;
8,373
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers published in the VLDB conference in each year .
SELECT COUNT ( DISTINCT t2.title ) , t2.year FROM publication AS t2 JOIN conference AS t1 ON t2.cid = t1.cid WHERE t1.name = "VLDB" GROUP BY t2.year;
8,374
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the authors who have cooperated both with " H. V. Jagadish " and " Divesh Srivastava " .
SELECT t2.name FROM writes AS t4 JOIN author AS t2 ON t4.aid = t2.aid JOIN publication AS t7 ON t4.pid = t7.pid JOIN writes AS t5 ON t5.pid = t7.pid JOIN writes AS t6 ON t6.pid = t7.pid JOIN author AS t1 ON t5.aid = t1.aid JOIN author AS t3 ON t6.aid = t3.aid WHERE t1.name = "H. V. Jagadish" AND t3.name ...
8,375
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the authors who have cooperated with " H. V. Jagadish " after 2000 .
SELECT t2.name FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t1.name = "H. V. Jagadish" AND t5.year > 2000;
8,376
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Divesh Srivastava " .
SELECT t5.title FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Divesh Srivastava";
8,377
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Yunyao Li " after 2005 .
SELECT t5.title FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Yunyao Li" AND t5.year > 2005;
8,378
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Yunyao Li " on PVLDB .
SELECT t6.title FROM publication AS t6 JOIN journal AS t4 ON t6.jid = t4.jid JOIN writes AS t3 ON t3.pid = t6.pid JOIN writes AS t5 ON t5.pid = t6.pid JOIN author AS t1 ON t5.aid = t1.aid JOIN author AS t2 ON t3.aid = t2.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Yunyao Li" AND t4.name = "PVLDB...
8,379
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Yunyao Li " on PVLDB after 2005 .
SELECT t6.title FROM publication AS t6 JOIN journal AS t4 ON t6.jid = t4.jid JOIN writes AS t3 ON t3.pid = t6.pid JOIN writes AS t5 ON t5.pid = t6.pid JOIN author AS t1 ON t5.aid = t1.aid JOIN author AS t2 ON t3.aid = t2.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Yunyao Li" AND t4.name = "PVLDB...
8,380
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the authors who have cooperated with " H. V. Jagadish " .
SELECT t2.name FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t1.name = "H. V. Jagadish";
8,381
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Divesh Srivastava " before 2000 .
SELECT t5.title FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Divesh Srivastava" AND t5.year < 2000;
8,382
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the authors who have cited the papers by " H. V. Jagadish " .
SELECT t2.name FROM publication AS t7 JOIN cite AS t5 ON t7.pid = t5.citing JOIN publication AS t6 ON t6.pid = t5.cited JOIN writes AS t3 ON t3.pid = t7.pid JOIN writes AS t4 ON t4.pid = t6.pid JOIN author AS t2 ON t3.aid = t2.aid JOIN author AS t1 ON t4.aid = t1.aid WHERE t1.name = "H. V. Jagadish";
8,383
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers written by " H. V. Jagadish " and " Divesh Srivastava " .
SELECT COUNT ( DISTINCT t5.title ) FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Divesh Srivastava";
8,384
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers written by " H. V. Jagadish " and " Divesh Srivastava " before 2000 .
SELECT COUNT ( DISTINCT t5.title ) FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Divesh Srivastava" AND t5.year < 2000;
8,385
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of papers written by " H. V. Jagadish " , " Yunyao Li " , and " Cong Yu " .
SELECT COUNT ( DISTINCT t7.title ) FROM writes AS t4 JOIN author AS t2 ON t4.aid = t2.aid JOIN publication AS t7 ON t4.pid = t7.pid JOIN writes AS t5 ON t5.pid = t7.pid JOIN writes AS t6 ON t6.pid = t7.pid JOIN author AS t1 ON t5.aid = t1.aid JOIN author AS t3 ON t6.aid = t3.aid WHERE t2.name = "Cong Yu" ...
8,386
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors who have cooperated with " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t2.name ) FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t1.name = "H. V. Jagadish";
8,387
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the number of authors who have cited the papers by " H. V. Jagadish " .
SELECT COUNT ( DISTINCT t2.name ) FROM publication AS t7 JOIN cite AS t5 ON t7.pid = t5.citing JOIN publication AS t6 ON t6.pid = t5.cited JOIN writes AS t3 ON t3.pid = t7.pid JOIN writes AS t4 ON t4.pid = t6.pid JOIN author AS t2 ON t3.aid = t2.aid JOIN author AS t1 ON t4.aid = t1.aid WHERE t1.name = "H....
8,388
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Divesh Srivastava " with more than 200 citations .
SELECT t5.title FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "H. V. Jagadish" AND t1.name = "Divesh Srivastava" AND t5.citation_num > 200;
8,389
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the author who has the most number of papers containing keyword " Relational Database " .
SELECT t2.name FROM publication_keyword AS t5 JOIN keyword AS t1 ON t5.kid = t1.kid JOIN publication AS t3 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t3.pid JOIN author AS t2 ON t4.aid = t2.aid WHERE t1.keyword = "Relational Database" GROUP BY t2.name ORDER BY COUNT ( DISTINCT t3.title ) DESC LIMIT 1;
8,390
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the conference that has the most number of papers containing keyword " Relational Database " .
SELECT t2.name FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t3 ON t3.pid = t4.pid JOIN conference AS t2 ON t3.cid = t2.cid WHERE t1.keyword = "Relational Database" GROUP BY t2.name ORDER BY COUNT ( DISTINCT t3.title ) DESC LIMIT 1;
8,391
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the conference, which has the most number of papers containing keyword " Relational Database " .
SELECT t2.name FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t3 ON t3.pid = t4.pid JOIN conference AS t2 ON t3.cid = t2.cid WHERE t1.keyword = "Relational Database" GROUP BY t2.name ORDER BY COUNT ( DISTINCT t3.title ) DESC LIMIT 1;
8,392
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the journal that has the most number of papers containing keyword " Relational Database " .
SELECT t3.name FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t2 ON t2.pid = t4.pid JOIN journal AS t3 ON t2.jid = t3.jid WHERE t1.keyword = "Relational Database" GROUP BY t3.name ORDER BY COUNT ( DISTINCT t2.title ) DESC LIMIT 1;
8,393
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the journal, which has the most number of papers containing keyword " Relational Database " .
SELECT t3.name FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t2 ON t2.pid = t4.pid JOIN journal AS t3 ON t2.jid = t3.jid WHERE t1.keyword = "Relational Database" GROUP BY t3.name ORDER BY COUNT ( DISTINCT t2.title ) DESC LIMIT 1;
8,394
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the keyword, which have been contained by the most number of papers in VLDB conference .
SELECT t1.keyword FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t3 ON t3.pid = t4.pid JOIN conference AS t2 ON t3.cid = t2.cid WHERE t2.name = "VLDB" GROUP BY t1.keyword ORDER BY COUNT ( DISTINCT t3.title ) DESC LIMIT 1;
8,395
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the keyword, which have been contained by the most number of papers in PVLDB .
SELECT t1.keyword FROM publication_keyword AS t4 JOIN keyword AS t1 ON t4.kid = t1.kid JOIN publication AS t2 ON t2.pid = t4.pid JOIN journal AS t3 ON t2.jid = t3.jid WHERE t3.name = "PVLDB" GROUP BY t1.keyword ORDER BY COUNT ( DISTINCT t2.title ) DESC LIMIT 1;
8,396
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the keyword, which have been contained by the most number of papers by " H. V. Jagadish " .
SELECT t1.keyword FROM publication_keyword AS t5 JOIN keyword AS t1 ON t5.kid = t1.kid JOIN publication AS t3 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t3.pid JOIN author AS t2 ON t4.aid = t2.aid WHERE t2.name = "H. V. Jagadish" GROUP BY t1.keyword ORDER BY COUNT ( DISTINCT t3.title ) DESC LIMIT 1;
8,397
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the author in the " University of Michigan " whose papers have the most total citations .
SELECT t1.name FROM organization AS t2 JOIN author AS t1 ON t2.oid = t1.oid JOIN writes AS t3 ON t3.aid = t1.aid JOIN publication AS t4 ON t3.pid = t4.pid WHERE t2.name = "University of Michigan" GROUP BY t1.name ORDER BY SUM ( t4.citation_num ) DESC LIMIT 1;
8,398
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the author in the " University of Michigan " whose papers in Databases area have the most total citations .
SELECT t1.name FROM DOMAIN AS t4 JOIN domain_publication AS t2 ON t4.did = t2.did JOIN publication AS t5 ON t5.pid = t2.pid JOIN writes AS t3 ON t3.pid = t5.pid JOIN author AS t1 ON t3.aid = t1.aid JOIN organization AS t6 ON t6.oid = t1.oid WHERE t4.name = "Databases" AND t6.name = "University of Michigan...
8,399
academic
CREATE TABLE "author" ( "aid" int, "homepage" text, "name" text, "oid" int, primary key( "aid" ) ); CREATE TABLE "conference" ( "cid" int, "homepage" text, "name" text, primary key ( "cid" ) ); CREATE TABLE "domain" ( "did" int, "name" text, primary key ( "did" ) ); CREATE TABLE "domain...
return me the papers written by " H. V. Jagadish " and " Divesh Srivastava " with the most number of citations .
SELECT t5.title FROM writes AS t3 JOIN author AS t2 ON t3.aid = t2.aid JOIN publication AS t5 ON t3.pid = t5.pid JOIN writes AS t4 ON t4.pid = t5.pid JOIN author AS t1 ON t4.aid = t1.aid WHERE t2.name = "Divesh Srivastava" AND t1.name = "H. V. Jagadish" ORDER BY t5.citation_num DESC LIMIT 1;