db_id
stringclasses
140 values
schema
listlengths
0
26
question
stringlengths
16
224
query
stringlengths
18
577
query_toks
listlengths
4
90
query_toks_no_value
listlengths
4
125
question_toks
listlengths
4
44
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
How many members of "Bootup Baltimore" are older than 18?
SELECT count(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.age > 18
[ "SELECT", "count", "(", "*", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Baltimo...
[ "select", "count", "(", "*", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "where", "t1"...
[ "How", "many", "members", "of", "``", "Bootup", "Baltimore", "''", "are", "older", "than", "18", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Count the number of members in club "Bootup Baltimore" whose age is above 18.
SELECT count(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.age > 18
[ "SELECT", "count", "(", "*", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Baltimo...
[ "select", "count", "(", "*", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "where", "t1"...
[ "Count", "the", "number", "of", "members", "in", "club", "``", "Bootup", "Baltimore", "''", "whose", "age", "is", "above", "18", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
How many members of club "Bootup Baltimore" are younger than 18?
SELECT count(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.age < 18
[ "SELECT", "count", "(", "*", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Baltimo...
[ "select", "count", "(", "*", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "where", "t1"...
[ "How", "many", "members", "of", "club", "``", "Bootup", "Baltimore", "''", "are", "younger", "than", "18", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Count the number of members in club "Bootup Baltimore" whose age is below 18.
SELECT count(*) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore" AND t3.age < 18
[ "SELECT", "count", "(", "*", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Baltimo...
[ "select", "count", "(", "*", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "where", "t1"...
[ "Count", "the", "number", "of", "members", "in", "club", "``", "Bootup", "Baltimore", "''", "whose", "age", "is", "below", "18", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Find the names of all the clubs that have at least a member from the city with city code "BAL".
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = "BAL"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.city_code", "=", "``", "BAL", "''" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "Find", "the", "names", "of", "all", "the", "clubs", "that", "have", "at", "least", "a", "member", "from", "the", "city", "with", "city", "code", "``", "BAL", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Which clubs have one or more members from the city with code "BAL"? Give me the names of the clubs.
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = "BAL"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.city_code", "=", "``", "BAL", "''" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "Which", "clubs", "have", "one", "or", "more", "members", "from", "the", "city", "with", "code", "``", "BAL", "''", "?", "Give", "me", "the", "names", "of", "the", "clubs", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Find the names of the clubs that have at least a member from the city with city code "HOU".
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = "HOU"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.city_code", "=", "``", "HOU", "''" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "Find", "the", "names", "of", "the", "clubs", "that", "have", "at", "least", "a", "member", "from", "the", "city", "with", "city", "code", "``", "HOU", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Which clubs have one or more members from the city with code "HOU"? Give me the names of the clubs.
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.city_code = "HOU"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.city_code", "=", "``", "HOU", "''" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "Which", "clubs", "have", "one", "or", "more", "members", "from", "the", "city", "with", "code", "``", "HOU", "''", "?", "Give", "me", "the", "names", "of", "the", "clubs", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
How many clubs does the student named "Eric Tai" belong to?
SELECT count(DISTINCT t1.clubname) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Eric" AND t3.lname = "Tai"
[ "SELECT", "count", "(", "DISTINCT", "t1.clubname", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.fname", "=", "``", ...
[ "select", "count", "(", "distinct", "t1", ".", "clubname", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3",...
[ "How", "many", "clubs", "does", "the", "student", "named", "``", "Eric", "Tai", "''", "belong", "to", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Count the number of clubs for which the student named "Eric Tai" is a member.
SELECT count(DISTINCT t1.clubname) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Eric" AND t3.lname = "Tai"
[ "SELECT", "count", "(", "DISTINCT", "t1.clubname", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.fname", "=", "``", ...
[ "select", "count", "(", "distinct", "t1", ".", "clubname", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3",...
[ "Count", "the", "number", "of", "clubs", "for", "which", "the", "student", "named", "``", "Eric", "Tai", "''", "is", "a", "member", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
List the clubs having "Davis Steven" as a member.
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Davis" AND t3.lname = "Steven"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.fname", "=", "``", "Davis", "''", "AND"...
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "List", "the", "clubs", "having", "``", "Davis", "Steven", "''", "as", "a", "member", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
What are the names of the clubs that have "Davis Steven" as a member?
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.fname = "Davis" AND t3.lname = "Steven"
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.fname", "=", "``", "Davis", "''", "AND"...
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "What", "are", "the", "names", "of", "the", "clubs", "that", "have", "``", "Davis", "Steven", "''", "as", "a", "member", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
List the clubs that have at least a member with advisor "1121".
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.advisor = 1121
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.advisor", "=", "1121" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "List", "the", "clubs", "that", "have", "at", "least", "a", "member", "with", "advisor", "``", "1121", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Which clubs have one or more members whose advisor is "1121"?
SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.advisor = 1121
[ "SELECT", "DISTINCT", "t1.clubname", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t3.advisor", "=", "1121" ]
[ "select", "distinct", "t1", ".", "clubname", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", "whe...
[ "Which", "clubs", "have", "one", "or", "more", "members", "whose", "advisor", "is", "``", "1121", "''", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
What is the average age of the members of the club "Bootup Baltimore"?
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Balt...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "What", "is", "the", "average", "age", "of", "the", "members", "of", "the", "club", "``", "Bootup", "Baltimore", "''", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Find the average age of the members in the club "Bootup Baltimore".
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Bootup Baltimore"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Bootup", "Balt...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "Find", "the", "average", "age", "of", "the", "members", "in", "the", "club", "``", "Bootup", "Baltimore", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Find the average age of members of the club "Hopkins Student Enterprises".
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Hopkins Student Enterprises"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Hopkins", "Stu...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "Find", "the", "average", "age", "of", "members", "of", "the", "club", "``", "Hopkins", "Student", "Enterprises", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
On average, how old are the members in the club "Hopkins Student Enterprises"?
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Hopkins Student Enterprises"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Hopkins", "Stu...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "On", "average", ",", "how", "old", "are", "the", "members", "in", "the", "club", "``", "Hopkins", "Student", "Enterprises", "''", "?" ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Retrieve the average age of members of the club "Tennis Club".
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Tennis Club"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Tennis", "Club...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "Retrieve", "the", "average", "age", "of", "members", "of", "the", "club", "``", "Tennis", "Club", "''", "." ]
club_1
[ "create table Student (\n StuID INTEGER PRIMARY KEY,\n LName VARCHAR(12),\n Fname VARCHAR(12),\n Age INTEGER,\n Sex VARCHAR(1),\n Major INTEGER,\n Advisor INTEGER,\n city_code VARCHAR(3)\n );", "create t...
Compute the average age of the members in the club "Tennis Club".
SELECT avg(t3.age) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t1.clubname = "Tennis Club"
[ "SELECT", "avg", "(", "t3.age", ")", "FROM", "club", "AS", "t1", "JOIN", "member_of_club", "AS", "t2", "ON", "t1.clubid", "=", "t2.clubid", "JOIN", "student", "AS", "t3", "ON", "t2.stuid", "=", "t3.stuid", "WHERE", "t1.clubname", "=", "``", "Tennis", "Club...
[ "select", "avg", "(", "t3", ".", "age", ")", "from", "club", "as", "t1", "join", "member_of_club", "as", "t2", "on", "t1", ".", "clubid", "=", "t2", ".", "clubid", "join", "student", "as", "t3", "on", "t2", ".", "stuid", "=", "t3", ".", "stuid", ...
[ "Compute", "the", "average", "age", "of", "the", "members", "in", "the", "club", "``", "Tennis", "Club", "''", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the distinct grant amount for the grants where the documents were sent before '1986-08-26 20:49:27' and grant were ended after '1989-03-16 18:27:16'?
SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16'
[ "SELECT", "T1.grant_amount", "FROM", "Grants", "AS", "T1", "JOIN", "Documents", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "WHERE", "T2.sent_date", "<", "'1986-08-26", "20:49:27", "'", "INTERSECT", "SELECT", "grant_amount", "FROM", "grants", "WHERE", "gr...
[ "select", "t1", ".", "grant_amount", "from", "grants", "as", "t1", "join", "documents", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "where", "t2", ".", "sent_date", "<", "value", "intersect", "select", "grant_amount", "from", "gran...
[ "What", "are", "the", "distinct", "grant", "amount", "for", "the", "grants", "where", "the", "documents", "were", "sent", "before", "'1986-08-26", "20:49:27", "'", "and", "grant", "were", "ended", "after", "'1989-03-16", "18:27:16", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the different grant amounts for documents sent before '1986-08-26 20:49:27' and after the grant ended on '1989-03-16 18:27:16'?
SELECT T1.grant_amount FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id WHERE T2.sent_date < '1986-08-26 20:49:27' INTERSECT SELECT grant_amount FROM grants WHERE grant_end_date > '1989-03-16 18:27:16'
[ "SELECT", "T1.grant_amount", "FROM", "Grants", "AS", "T1", "JOIN", "Documents", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "WHERE", "T2.sent_date", "<", "'1986-08-26", "20:49:27", "'", "INTERSECT", "SELECT", "grant_amount", "FROM", "grants", "WHERE", "gr...
[ "select", "t1", ".", "grant_amount", "from", "grants", "as", "t1", "join", "documents", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "where", "t2", ".", "sent_date", "<", "value", "intersect", "select", "grant_amount", "from", "gran...
[ "What", "are", "the", "different", "grant", "amounts", "for", "documents", "sent", "before", "'1986-08-26", "20:49:27", "'", "and", "after", "the", "grant", "ended", "on", "'1989-03-16", "18:27:16", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the project details of the project both producing patent and paper as outcomes.
SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent'
[ "SELECT", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "WHERE", "T2.outcome_code", "=", "'Paper", "'", "INTERSECT", "SELECT", "T1.project_details", "FROM", "Projects", "AS", ...
[ "select", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "where", "t2", ".", "outcome_code", "=", "value", "intersect", "select", "t1", ".", ...
[ "List", "the", "project", "details", "of", "the", "project", "both", "producing", "patent", "and", "paper", "as", "outcomes", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details of the project that is producing both patents and papers as outcomes?
SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Paper' INTERSECT SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id WHERE T2.outcome_code = 'Patent'
[ "SELECT", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "WHERE", "T2.outcome_code", "=", "'Paper", "'", "INTERSECT", "SELECT", "T1.project_details", "FROM", "Projects", "AS", ...
[ "select", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "where", "t2", ".", "outcome_code", "=", "value", "intersect", "select", "t1", ".", ...
[ "What", "are", "the", "details", "of", "the", "project", "that", "is", "producing", "both", "patents", "and", "papers", "as", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the total grant amount of the organisations described as research?
SELECT sum(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research'
[ "SELECT", "sum", "(", "grant_amount", ")", "FROM", "Grants", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.organisation_id", "JOIN", "organisation_Types", "AS", "T3", "ON", "T2.organisation_type", "=", "T3.organisation_type", ...
[ "select", "sum", "(", "grant_amount", ")", "from", "grants", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "organisation_id", "join", "organisation_types", "as", "t3", "on", "t2", ".", "organisation_type",...
[ "What", "is", "the", "total", "grant", "amount", "of", "the", "organisations", "described", "as", "research", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the total amount of grant money for research?
SELECT sum(grant_amount) FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id JOIN organisation_Types AS T3 ON T2.organisation_type = T3.organisation_type WHERE T3.organisation_type_description = 'Research'
[ "SELECT", "sum", "(", "grant_amount", ")", "FROM", "Grants", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.organisation_id", "JOIN", "organisation_Types", "AS", "T3", "ON", "T2.organisation_type", "=", "T3.organisation_type", ...
[ "select", "sum", "(", "grant_amount", ")", "from", "grants", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "organisation_id", "join", "organisation_types", "as", "t3", "on", "t2", ".", "organisation_type",...
[ "What", "is", "the", "total", "amount", "of", "grant", "money", "for", "research", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List from which date and to which date these staff work: project staff of the project which hires the most staffs
SELECT date_from , date_to FROM Project_Staff WHERE project_id IN( SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY count(*) DESC LIMIT 1 ) UNION SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'leader'
[ "SELECT", "date_from", ",", "date_to", "FROM", "Project_Staff", "WHERE", "project_id", "IN", "(", "SELECT", "project_id", "FROM", "Project_Staff", "GROUP", "BY", "project_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")", "UNION", "SELECT",...
[ "select", "date_from", ",", "date_to", "from", "project_staff", "where", "project_id", "in", "(", "select", "project_id", "from", "project_staff", "group", "by", "project_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")", "union", "sele...
[ "List", "from", "which", "date", "and", "to", "which", "date", "these", "staff", "work", ":", "project", "staff", "of", "the", "project", "which", "hires", "the", "most", "staffs" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
From what date and to what date do the staff work on a project that has the most staff and has staff in a leader role?
SELECT date_from , date_to FROM Project_Staff WHERE project_id IN( SELECT project_id FROM Project_Staff GROUP BY project_id ORDER BY count(*) DESC LIMIT 1 ) UNION SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'leader'
[ "SELECT", "date_from", ",", "date_to", "FROM", "Project_Staff", "WHERE", "project_id", "IN", "(", "SELECT", "project_id", "FROM", "Project_Staff", "GROUP", "BY", "project_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")", "UNION", "SELECT",...
[ "select", "date_from", ",", "date_to", "from", "project_staff", "where", "project_id", "in", "(", "select", "project_id", "from", "project_staff", "group", "by", "project_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")", "union", "sele...
[ "From", "what", "date", "and", "to", "what", "date", "do", "the", "staff", "work", "on", "a", "project", "that", "has", "the", "most", "staff", "and", "has", "staff", "in", "a", "leader", "role", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Find the organisation ids and details of the organisations which are involved in
SELECT T2.organisation_id , T2.organisation_details FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_id HAVING sum(T1.grant_amount) > 6000
[ "SELECT", "T2.organisation_id", ",", "T2.organisation_details", "FROM", "Grants", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.organisation_id", "GROUP", "BY", "T2.organisation_id", "HAVING", "sum", "(", "T1.grant_amount", ")", ...
[ "select", "t2", ".", "organisation_id", ",", "t2", ".", "organisation_details", "from", "grants", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "organisation_id", "group", "by", "t2", ".", "organisation_id...
[ "Find", "the", "organisation", "ids", "and", "details", "of", "the", "organisations", "which", "are", "involved", "in" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the ids and details for all organizations that have grants of more than 6000 dollars?
SELECT T2.organisation_id , T2.organisation_details FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_id HAVING sum(T1.grant_amount) > 6000
[ "SELECT", "T2.organisation_id", ",", "T2.organisation_details", "FROM", "Grants", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.organisation_id", "GROUP", "BY", "T2.organisation_id", "HAVING", "sum", "(", "T1.grant_amount", ")", ...
[ "select", "t2", ".", "organisation_id", ",", "t2", ".", "organisation_details", "from", "grants", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "organisation_id", "group", "by", "t2", ".", "organisation_id...
[ "What", "are", "the", "ids", "and", "details", "for", "all", "organizations", "that", "have", "grants", "of", "more", "than", "6000", "dollars", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the organisation type and id of the organisation which has the most number of research staff?
SELECT T1.organisation_type , T1.organisation_id FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_type", ",", "T1.organisation_id", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_id", "ORDER", "BY", "count", "(", "*",...
[ "select", "t1", ".", "organisation_type", ",", "t1", ".", "organisation_id", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisation_id", "group", "by", "t1", ".", "o...
[ "What", "is", "the", "organisation", "type", "and", "id", "of", "the", "organisation", "which", "has", "the", "most", "number", "of", "research", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the type and id of the organization that has the most research staff?
SELECT T1.organisation_type , T1.organisation_id FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_type", ",", "T1.organisation_id", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_id", "ORDER", "BY", "count", "(", "*",...
[ "select", "t1", ".", "organisation_type", ",", "t1", ".", "organisation_id", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisation_id", "group", "by", "t1", ".", "o...
[ "What", "is", "the", "type", "and", "id", "of", "the", "organization", "that", "has", "the", "most", "research", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which organisation type hires most research staff?
SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_type", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_type", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", ...
[ "select", "t1", ".", "organisation_type", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisation_id", "group", "by", "t1", ".", "organisation_type", "order", "by", "co...
[ "Which", "organisation", "type", "hires", "most", "research", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the type of the organization with the most research staff?
SELECT T1.organisation_type FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_type ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_type", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_type", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", ...
[ "select", "t1", ".", "organisation_type", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisation_id", "group", "by", "t1", ".", "organisation_type", "order", "by", "co...
[ "What", "is", "the", "type", "of", "the", "organization", "with", "the", "most", "research", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described
SELECT T1.sent_date FROM documents AS T1 JOIN Grants AS T2 ON T1.grant_id = T2.grant_id JOIN Organisations AS T3 ON T2.organisation_id = T3.organisation_id JOIN organisation_Types AS T4 ON T3.organisation_type = T4.organisation_type WHERE T2.grant_amount > 5000 AND T4.organisation_type_description = 'Research...
[ "SELECT", "T1.sent_date", "FROM", "documents", "AS", "T1", "JOIN", "Grants", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "JOIN", "Organisations", "AS", "T3", "ON", "T2.organisation_id", "=", "T3.organisation_id", "JOIN", "organisation_Types", "AS", "T4", ...
[ "select", "t1", ".", "sent_date", "from", "documents", "as", "t1", "join", "grants", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "join", "organisations", "as", "t3", "on", "t2", ".", "organisation_id", "=", "t3", ".", "organisati...
[ "Find", "out", "the", "send", "dates", "of", "the", "documents", "with", "the", "grant", "amount", "of", "more", "than", "5000", "were", "granted", "by", "organisation", "type", "described" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the send dates for all documents that have a grant amount of more than 5000 and are involved in research?
SELECT T1.sent_date FROM documents AS T1 JOIN Grants AS T2 ON T1.grant_id = T2.grant_id JOIN Organisations AS T3 ON T2.organisation_id = T3.organisation_id JOIN organisation_Types AS T4 ON T3.organisation_type = T4.organisation_type WHERE T2.grant_amount > 5000 AND T4.organisation_type_description = 'Research...
[ "SELECT", "T1.sent_date", "FROM", "documents", "AS", "T1", "JOIN", "Grants", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "JOIN", "Organisations", "AS", "T3", "ON", "T2.organisation_id", "=", "T3.organisation_id", "JOIN", "organisation_Types", "AS", "T4", ...
[ "select", "t1", ".", "sent_date", "from", "documents", "as", "t1", "join", "grants", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "join", "organisations", "as", "t3", "on", "t2", ".", "organisation_id", "=", "t3", ".", "organisati...
[ "What", "are", "the", "send", "dates", "for", "all", "documents", "that", "have", "a", "grant", "amount", "of", "more", "than", "5000", "and", "are", "involved", "in", "research", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the response received dates for the documents described as 'Regular' or granted with more than 100?
SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100
[ "SELECT", "T1.response_received_date", "FROM", "Documents", "AS", "T1", "JOIN", "Document_Types", "AS", "T2", "ON", "T1.document_type_code", "=", "T2.document_type_code", "JOIN", "Grants", "AS", "T3", "ON", "T1.grant_id", "=", "T3.grant_id", "WHERE", "T2.document_descri...
[ "select", "t1", ".", "response_received_date", "from", "documents", "as", "t1", "join", "document_types", "as", "t2", "on", "t1", ".", "document_type_code", "=", "t2", ".", "document_type_code", "join", "grants", "as", "t3", "on", "t1", ".", "grant_id", "=", ...
[ "What", "are", "the", "response", "received", "dates", "for", "the", "documents", "described", "as", "'Regular", "'", "or", "granted", "with", "more", "than", "100", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the response received date for the document described as Regular that was granted more than 100 dollars?
SELECT T1.response_received_date FROM Documents AS T1 JOIN Document_Types AS T2 ON T1.document_type_code = T2.document_type_code JOIN Grants AS T3 ON T1.grant_id = T3.grant_id WHERE T2.document_description = 'Regular' OR T3.grant_amount > 100
[ "SELECT", "T1.response_received_date", "FROM", "Documents", "AS", "T1", "JOIN", "Document_Types", "AS", "T2", "ON", "T1.document_type_code", "=", "T2.document_type_code", "JOIN", "Grants", "AS", "T3", "ON", "T1.grant_id", "=", "T3.grant_id", "WHERE", "T2.document_descri...
[ "select", "t1", ".", "response_received_date", "from", "documents", "as", "t1", "join", "document_types", "as", "t2", "on", "t1", ".", "document_type_code", "=", "t2", ".", "document_type_code", "join", "grants", "as", "t3", "on", "t1", ".", "grant_id", "=", ...
[ "What", "is", "the", "response", "received", "date", "for", "the", "document", "described", "as", "Regular", "that", "was", "granted", "more", "than", "100", "dollars", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the project details of the projects which did not hire any staff for a researcher role.
SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_Staff WHERE role_code = 'researcher' )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "project_id", "NOT", "IN", "(", "SELECT", "project_id", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'researcher", "'", ")" ]
[ "select", "project_details", "from", "projects", "where", "project_id", "not", "in", "(", "select", "project_id", "from", "project_staff", "where", "role_code", "=", "value", ")" ]
[ "List", "the", "project", "details", "of", "the", "projects", "which", "did", "not", "hire", "any", "staff", "for", "a", "researcher", "role", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details for all projects that did not hire any staff in a research role?
SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_Staff WHERE role_code = 'researcher' )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "project_id", "NOT", "IN", "(", "SELECT", "project_id", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'researcher", "'", ")" ]
[ "select", "project_details", "from", "projects", "where", "project_id", "not", "in", "(", "select", "project_id", "from", "project_staff", "where", "role_code", "=", "value", ")" ]
[ "What", "are", "the", "details", "for", "all", "projects", "that", "did", "not", "hire", "any", "staff", "in", "a", "research", "role", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes?
SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS ...
[ "SELECT", "T1.task_details", ",", "T1.task_id", ",", "T2.project_id", "FROM", "Tasks", "AS", "T1", "JOIN", "Projects", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "WHERE", "T2.project_details", "=", "'omnis", "'", "UNION", "SELECT", "T1.task_details", ...
[ "select", "t1", ".", "task_details", ",", "t1", ".", "task_id", ",", "t2", ".", "project_id", "from", "tasks", "as", "t1", "join", "projects", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "where", "t2", ".", "project_details",...
[ "What", "are", "the", "task", "details", ",", "task", "id", "and", "project", "id", "for", "the", "projects", "which", "are", "detailed", "as", "'omnis", "'", "or", "have", "more", "than", "2", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the task details, task ids, and project ids for the progrects that are detailed as 'omnis' or have at least 3 outcomes?
SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id WHERE T2.project_details = 'omnis' UNION SELECT T1.task_details , T1.task_id , T2.project_id FROM Tasks AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id JOIN Project_outcomes AS ...
[ "SELECT", "T1.task_details", ",", "T1.task_id", ",", "T2.project_id", "FROM", "Tasks", "AS", "T1", "JOIN", "Projects", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "WHERE", "T2.project_details", "=", "'omnis", "'", "UNION", "SELECT", "T1.task_details", ...
[ "select", "t1", ".", "task_details", ",", "t1", ".", "task_id", ",", "t2", ".", "project_id", "from", "tasks", "as", "t1", "join", "projects", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "where", "t2", ".", "project_details",...
[ "What", "are", "the", "task", "details", ",", "task", "ids", ",", "and", "project", "ids", "for", "the", "progrects", "that", "are", "detailed", "as", "'omnis", "'", "or", "have", "at", "least", "3", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
When do all the researcher role staff start to work, and when do they stop working?
SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'researcher'
[ "SELECT", "date_from", ",", "date_to", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'researcher", "'" ]
[ "select", "date_from", ",", "date_to", "from", "project_staff", "where", "role_code", "=", "value" ]
[ "When", "do", "all", "the", "researcher", "role", "staff", "start", "to", "work", ",", "and", "when", "do", "they", "stop", "working", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
When did researchers start and stop working?
SELECT date_from , date_to FROM Project_Staff WHERE role_code = 'researcher'
[ "SELECT", "date_from", ",", "date_to", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'researcher", "'" ]
[ "select", "date_from", ",", "date_to", "from", "project_staff", "where", "role_code", "=", "value" ]
[ "When", "did", "researchers", "start", "and", "stop", "working", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many kinds of roles are there for the staff?
SELECT count(DISTINCT role_code) FROM Project_Staff
[ "SELECT", "count", "(", "DISTINCT", "role_code", ")", "FROM", "Project_Staff" ]
[ "select", "count", "(", "distinct", "role_code", ")", "from", "project_staff" ]
[ "How", "many", "kinds", "of", "roles", "are", "there", "for", "the", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many different roles are there on the project staff?
SELECT count(DISTINCT role_code) FROM Project_Staff
[ "SELECT", "count", "(", "DISTINCT", "role_code", ")", "FROM", "Project_Staff" ]
[ "select", "count", "(", "distinct", "role_code", ")", "from", "project_staff" ]
[ "How", "many", "different", "roles", "are", "there", "on", "the", "project", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the total amount of grants given by each organisations? Also list the organisation id.
SELECT sum(grant_amount) , organisation_id FROM Grants GROUP BY organisation_id
[ "SELECT", "sum", "(", "grant_amount", ")", ",", "organisation_id", "FROM", "Grants", "GROUP", "BY", "organisation_id" ]
[ "select", "sum", "(", "grant_amount", ")", ",", "organisation_id", "from", "grants", "group", "by", "organisation_id" ]
[ "What", "is", "the", "total", "amount", "of", "grants", "given", "by", "each", "organisations", "?", "Also", "list", "the", "organisation", "id", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the total amount of grant money given to each organization and what is its id?
SELECT sum(grant_amount) , organisation_id FROM Grants GROUP BY organisation_id
[ "SELECT", "sum", "(", "grant_amount", ")", ",", "organisation_id", "FROM", "Grants", "GROUP", "BY", "organisation_id" ]
[ "select", "sum", "(", "grant_amount", ")", ",", "organisation_id", "from", "grants", "group", "by", "organisation_id" ]
[ "What", "is", "the", "total", "amount", "of", "grant", "money", "given", "to", "each", "organization", "and", "what", "is", "its", "id", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the project details of the projects with the research outcome described with the substring 'Published'.
SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id JOIN Research_outcomes AS T3 ON T2.outcome_code = T3.outcome_code WHERE T3.outcome_description LIKE '%Published%'
[ "SELECT", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "JOIN", "Research_outcomes", "AS", "T3", "ON", "T2.outcome_code", "=", "T3.outcome_code", "WHERE", "T3.outcome_descriptio...
[ "select", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "join", "research_outcomes", "as", "t3", "on", "t2", ".", "outcome_code", "=", "t3", ...
[ "List", "the", "project", "details", "of", "the", "projects", "with", "the", "research", "outcome", "described", "with", "the", "substring", "'Published", "'", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details for the project whose research has been published?
SELECT T1.project_details FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id JOIN Research_outcomes AS T3 ON T2.outcome_code = T3.outcome_code WHERE T3.outcome_description LIKE '%Published%'
[ "SELECT", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "JOIN", "Research_outcomes", "AS", "T3", "ON", "T2.outcome_code", "=", "T3.outcome_code", "WHERE", "T3.outcome_descriptio...
[ "select", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "join", "research_outcomes", "as", "t3", "on", "t2", ".", "outcome_code", "=", "t3", ...
[ "What", "are", "the", "details", "for", "the", "project", "whose", "research", "has", "been", "published", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many staff does each project has? List the project id and the number in an ascending order.
SELECT T1.project_id , count(*) FROM Project_Staff AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) ASC
[ "SELECT", "T1.project_id", ",", "count", "(", "*", ")", "FROM", "Project_Staff", "AS", "T1", "JOIN", "Projects", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id", "ORDER", "BY", "count", "(", "*", ")", "ASC" ]
[ "select", "t1", ".", "project_id", ",", "count", "(", "*", ")", "from", "project_staff", "as", "t1", "join", "projects", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id", "order", "by", "co...
[ "How", "many", "staff", "does", "each", "project", "has", "?", "List", "the", "project", "id", "and", "the", "number", "in", "an", "ascending", "order", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For each project id, how many staff does it have? List them in increasing order.
SELECT T1.project_id , count(*) FROM Project_Staff AS T1 JOIN Projects AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) ASC
[ "SELECT", "T1.project_id", ",", "count", "(", "*", ")", "FROM", "Project_Staff", "AS", "T1", "JOIN", "Projects", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id", "ORDER", "BY", "count", "(", "*", ")", "ASC" ]
[ "select", "t1", ".", "project_id", ",", "count", "(", "*", ")", "from", "project_staff", "as", "t1", "join", "projects", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id", "order", "by", "co...
[ "For", "each", "project", "id", ",", "how", "many", "staff", "does", "it", "have", "?", "List", "them", "in", "increasing", "order", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the complete description of the researcher role.
SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher'
[ "SELECT", "role_description", "FROM", "Staff_Roles", "WHERE", "role_code", "=", "'researcher", "'" ]
[ "select", "role_description", "from", "staff_roles", "where", "role_code", "=", "value" ]
[ "What", "is", "the", "complete", "description", "of", "the", "researcher", "role", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the complete description of the job of a researcher?
SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher'
[ "SELECT", "role_description", "FROM", "Staff_Roles", "WHERE", "role_code", "=", "'researcher", "'" ]
[ "select", "role_description", "from", "staff_roles", "where", "role_code", "=", "value" ]
[ "What", "is", "the", "complete", "description", "of", "the", "job", "of", "a", "researcher", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
When did the first staff for the projects started working?
SELECT date_from FROM Project_Staff ORDER BY date_from ASC LIMIT 1
[ "SELECT", "date_from", "FROM", "Project_Staff", "ORDER", "BY", "date_from", "ASC", "LIMIT", "1" ]
[ "select", "date_from", "from", "project_staff", "order", "by", "date_from", "asc", "limit", "value" ]
[ "When", "did", "the", "first", "staff", "for", "the", "projects", "started", "working", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
When did the first staff member start working?
SELECT date_from FROM Project_Staff ORDER BY date_from ASC LIMIT 1
[ "SELECT", "date_from", "FROM", "Project_Staff", "ORDER", "BY", "date_from", "ASC", "LIMIT", "1" ]
[ "select", "date_from", "from", "project_staff", "order", "by", "date_from", "asc", "limit", "value" ]
[ "When", "did", "the", "first", "staff", "member", "start", "working", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which project made the most number of outcomes? List the project details and the project id.
SELECT T1.project_details , T1.project_id FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.project_details", ",", "T1.project_id", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1"...
[ "select", "t1", ".", "project_details", ",", "t1", ".", "project_id", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id", "order", "by"...
[ "Which", "project", "made", "the", "most", "number", "of", "outcomes", "?", "List", "the", "project", "details", "and", "the", "project", "id", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details and id of the project with the most outcomes?
SELECT T1.project_details , T1.project_id FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.project_details", ",", "T1.project_id", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1"...
[ "select", "t1", ".", "project_details", ",", "t1", ".", "project_id", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id", "order", "by"...
[ "What", "are", "the", "details", "and", "id", "of", "the", "project", "with", "the", "most", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which projects have no outcome? List the project details.
SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_outcomes )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "project_id", "NOT", "IN", "(", "SELECT", "project_id", "FROM", "Project_outcomes", ")" ]
[ "select", "project_details", "from", "projects", "where", "project_id", "not", "in", "(", "select", "project_id", "from", "project_outcomes", ")" ]
[ "Which", "projects", "have", "no", "outcome", "?", "List", "the", "project", "details", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details of the project with no outcomes?
SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_outcomes )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "project_id", "NOT", "IN", "(", "SELECT", "project_id", "FROM", "Project_outcomes", ")" ]
[ "select", "project_details", "from", "projects", "where", "project_id", "not", "in", "(", "select", "project_id", "from", "project_outcomes", ")" ]
[ "What", "are", "the", "details", "of", "the", "project", "with", "no", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which organisation hired the most number of research staff? List the organisation id, type and detail.
SELECT T1.organisation_id , T1.organisation_type , T1.organisation_details FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_id", ",", "T1.organisation_type", ",", "T1.organisation_details", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_id", "ORDE...
[ "select", "t1", ".", "organisation_id", ",", "t1", ".", "organisation_type", ",", "t1", ".", "organisation_details", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisa...
[ "Which", "organisation", "hired", "the", "most", "number", "of", "research", "staff", "?", "List", "the", "organisation", "id", ",", "type", "and", "detail", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the ids, types, and details of the organization with the most research staff?
SELECT T1.organisation_id , T1.organisation_type , T1.organisation_details FROM Organisations AS T1 JOIN Research_Staff AS T2 ON T1.organisation_id = T2.employer_organisation_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_id", ",", "T1.organisation_type", ",", "T1.organisation_details", "FROM", "Organisations", "AS", "T1", "JOIN", "Research_Staff", "AS", "T2", "ON", "T1.organisation_id", "=", "T2.employer_organisation_id", "GROUP", "BY", "T1.organisation_id", "ORDE...
[ "select", "t1", ".", "organisation_id", ",", "t1", ".", "organisation_type", ",", "t1", ".", "organisation_details", "from", "organisations", "as", "t1", "join", "research_staff", "as", "t2", "on", "t1", ".", "organisation_id", "=", "t2", ".", "employer_organisa...
[ "What", "are", "the", "ids", ",", "types", ",", "and", "details", "of", "the", "organization", "with", "the", "most", "research", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Show the role description and the id of the project staff involved in most number of project outcomes?
SELECT T1.role_description , T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.role_description", ",", "T2.staff_id", "FROM", "Staff_Roles", "AS", "T1", "JOIN", "Project_Staff", "AS", "T2", "ON", "T1.role_code", "=", "T2.role_code", "JOIN", "Project_outcomes", "AS", "T3", "ON", "T2.project_id", "=", "T3.project_id", "GROUP", "BY"...
[ "select", "t1", ".", "role_description", ",", "t2", ".", "staff_id", "from", "staff_roles", "as", "t1", "join", "project_staff", "as", "t2", "on", "t1", ".", "role_code", "=", "t2", ".", "role_code", "join", "project_outcomes", "as", "t3", "on", "t2", ".",...
[ "Show", "the", "role", "description", "and", "the", "id", "of", "the", "project", "staff", "involved", "in", "most", "number", "of", "project", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For each staff id, what is the description of the role that is involved with the most number of projects?
SELECT T1.role_description , T2.staff_id FROM Staff_Roles AS T1 JOIN Project_Staff AS T2 ON T1.role_code = T2.role_code JOIN Project_outcomes AS T3 ON T2.project_id = T3.project_id GROUP BY T2.staff_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.role_description", ",", "T2.staff_id", "FROM", "Staff_Roles", "AS", "T1", "JOIN", "Project_Staff", "AS", "T2", "ON", "T1.role_code", "=", "T2.role_code", "JOIN", "Project_outcomes", "AS", "T3", "ON", "T2.project_id", "=", "T3.project_id", "GROUP", "BY"...
[ "select", "t1", ".", "role_description", ",", "t2", ".", "staff_id", "from", "staff_roles", "as", "t1", "join", "project_staff", "as", "t2", "on", "t1", ".", "role_code", "=", "t2", ".", "role_code", "join", "project_outcomes", "as", "t3", "on", "t2", ".",...
[ "For", "each", "staff", "id", ",", "what", "is", "the", "description", "of", "the", "role", "that", "is", "involved", "with", "the", "most", "number", "of", "projects", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which document type is described with the prefix 'Initial'?
SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%'
[ "SELECT", "document_type_code", "FROM", "Document_Types", "WHERE", "document_description", "LIKE", "'Initial", "%", "'" ]
[ "select", "document_type_code", "from", "document_types", "where", "document_description", "like", "value" ]
[ "Which", "document", "type", "is", "described", "with", "the", "prefix", "'Initial", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the type of the document whose description starts with the word 'Initial'?
SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%'
[ "SELECT", "document_type_code", "FROM", "Document_Types", "WHERE", "document_description", "LIKE", "'Initial", "%", "'" ]
[ "select", "document_type_code", "from", "document_types", "where", "document_description", "like", "value" ]
[ "What", "is", "the", "type", "of", "the", "document", "whose", "description", "starts", "with", "the", "word", "'Initial", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.
SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.gran...
[ "SELECT", "T1.grant_start_date", "FROM", "Grants", "AS", "T1", "JOIN", "Documents", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "JOIN", "Document_Types", "AS", "T3", "ON", "T2.document_type_code", "=", "T3.document_type_code", "WHERE", "T3.document_description"...
[ "select", "t1", ".", "grant_start_date", "from", "grants", "as", "t1", "join", "documents", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "join", "document_types", "as", "t3", "on", "t2", ".", "document_type_code", "=", "t3", ".", ...
[ "For", "grants", "with", "both", "documents", "described", "as", "'Regular", "'", "and", "documents", "described", "as", "'Initial", "Application", "'", ",", "list", "its", "start", "date", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For grants that have descriptions of Regular and Initial Applications, what are their start dates?
SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Regular' INTERSECT SELECT T1.grant_start_date FROM Grants AS T1 JOIN Documents AS T2 ON T1.grant_id = T2.gran...
[ "SELECT", "T1.grant_start_date", "FROM", "Grants", "AS", "T1", "JOIN", "Documents", "AS", "T2", "ON", "T1.grant_id", "=", "T2.grant_id", "JOIN", "Document_Types", "AS", "T3", "ON", "T2.document_type_code", "=", "T3.document_type_code", "WHERE", "T3.document_description"...
[ "select", "t1", ".", "grant_start_date", "from", "grants", "as", "t1", "join", "documents", "as", "t2", "on", "t1", ".", "grant_id", "=", "t2", ".", "grant_id", "join", "document_types", "as", "t3", "on", "t2", ".", "document_type_code", "=", "t3", ".", ...
[ "For", "grants", "that", "have", "descriptions", "of", "Regular", "and", "Initial", "Applications", ",", "what", "are", "their", "start", "dates", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many documents can one grant have at most? List the grant id and number.
SELECT grant_id , count(*) FROM Documents GROUP BY grant_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "grant_id", ",", "count", "(", "*", ")", "FROM", "Documents", "GROUP", "BY", "grant_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "grant_id", ",", "count", "(", "*", ")", "from", "documents", "group", "by", "grant_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "How", "many", "documents", "can", "one", "grant", "have", "at", "most", "?", "List", "the", "grant", "id", "and", "number", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For each grant id, how many documents does it have, and which one has the most?
SELECT grant_id , count(*) FROM Documents GROUP BY grant_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "grant_id", ",", "count", "(", "*", ")", "FROM", "Documents", "GROUP", "BY", "grant_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "grant_id", ",", "count", "(", "*", ")", "from", "documents", "group", "by", "grant_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "For", "each", "grant", "id", ",", "how", "many", "documents", "does", "it", "have", ",", "and", "which", "one", "has", "the", "most", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Find the organisation type description of the organisation detailed as 'quo'.
SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo'
[ "SELECT", "T1.organisation_type_description", "FROM", "organisation_Types", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_type", "=", "T2.organisation_type", "WHERE", "T2.organisation_details", "=", "'quo", "'" ]
[ "select", "t1", ".", "organisation_type_description", "from", "organisation_types", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_type", "=", "t2", ".", "organisation_type", "where", "t2", ".", "organisation_details", "=", "value" ]
[ "Find", "the", "organisation", "type", "description", "of", "the", "organisation", "detailed", "as", "'quo", "'", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the type description of the organization whose detail is listed as 'quo'?
SELECT T1.organisation_type_description FROM organisation_Types AS T1 JOIN Organisations AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_details = 'quo'
[ "SELECT", "T1.organisation_type_description", "FROM", "organisation_Types", "AS", "T1", "JOIN", "Organisations", "AS", "T2", "ON", "T1.organisation_type", "=", "T2.organisation_type", "WHERE", "T2.organisation_details", "=", "'quo", "'" ]
[ "select", "t1", ".", "organisation_type_description", "from", "organisation_types", "as", "t1", "join", "organisations", "as", "t2", "on", "t1", ".", "organisation_type", "=", "t2", ".", "organisation_type", "where", "t2", ".", "organisation_details", "=", "value" ]
[ "What", "is", "the", "type", "description", "of", "the", "organization", "whose", "detail", "is", "listed", "as", "'quo", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order.
SELECT organisation_details FROM Organisations AS T1 JOIN organisation_Types AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_type_description = 'Sponsor' ORDER BY organisation_details
[ "SELECT", "organisation_details", "FROM", "Organisations", "AS", "T1", "JOIN", "organisation_Types", "AS", "T2", "ON", "T1.organisation_type", "=", "T2.organisation_type", "WHERE", "T2.organisation_type_description", "=", "'Sponsor", "'", "ORDER", "BY", "organisation_detail...
[ "select", "organisation_details", "from", "organisations", "as", "t1", "join", "organisation_types", "as", "t2", "on", "t1", ".", "organisation_type", "=", "t2", ".", "organisation_type", "where", "t2", ".", "organisation_type_description", "=", "value", "order", "b...
[ "What", "are", "all", "the", "details", "of", "the", "organisations", "described", "as", "'Sponsor", "'", "?", "Sort", "the", "result", "in", "an", "ascending", "order", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details of all organizations that are described as Sponsors and sort the results in ascending order?
SELECT organisation_details FROM Organisations AS T1 JOIN organisation_Types AS T2 ON T1.organisation_type = T2.organisation_type WHERE T2.organisation_type_description = 'Sponsor' ORDER BY organisation_details
[ "SELECT", "organisation_details", "FROM", "Organisations", "AS", "T1", "JOIN", "organisation_Types", "AS", "T2", "ON", "T1.organisation_type", "=", "T2.organisation_type", "WHERE", "T2.organisation_type_description", "=", "'Sponsor", "'", "ORDER", "BY", "organisation_detail...
[ "select", "organisation_details", "from", "organisations", "as", "t1", "join", "organisation_types", "as", "t2", "on", "t1", ".", "organisation_type", "=", "t2", ".", "organisation_type", "where", "t2", ".", "organisation_type_description", "=", "value", "order", "b...
[ "What", "are", "the", "details", "of", "all", "organizations", "that", "are", "described", "as", "Sponsors", "and", "sort", "the", "results", "in", "ascending", "order", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many Patent outcomes are generated from all the projects?
SELECT count(*) FROM Project_outcomes WHERE outcome_code = 'Patent'
[ "SELECT", "count", "(", "*", ")", "FROM", "Project_outcomes", "WHERE", "outcome_code", "=", "'Patent", "'" ]
[ "select", "count", "(", "*", ")", "from", "project_outcomes", "where", "outcome_code", "=", "value" ]
[ "How", "many", "Patent", "outcomes", "are", "generated", "from", "all", "the", "projects", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many patents outcomes were listed for all the projects?
SELECT count(*) FROM Project_outcomes WHERE outcome_code = 'Patent'
[ "SELECT", "count", "(", "*", ")", "FROM", "Project_outcomes", "WHERE", "outcome_code", "=", "'Patent", "'" ]
[ "select", "count", "(", "*", ")", "from", "project_outcomes", "where", "outcome_code", "=", "value" ]
[ "How", "many", "patents", "outcomes", "were", "listed", "for", "all", "the", "projects", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many project staff worked as leaders or started working before '1989-04-24 23:51:54'?
SELECT count(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54'
[ "SELECT", "count", "(", "*", ")", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'leader", "'", "OR", "date_from", "<", "'1989-04-24", "23:51:54", "'" ]
[ "select", "count", "(", "*", ")", "from", "project_staff", "where", "role_code", "=", "value", "or", "date_from", "<", "value" ]
[ "How", "many", "project", "staff", "worked", "as", "leaders", "or", "started", "working", "before", "'1989-04-24", "23:51:54", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many project members were leaders or started working before '1989-04-24 23:51:54'?
SELECT count(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54'
[ "SELECT", "count", "(", "*", ")", "FROM", "Project_Staff", "WHERE", "role_code", "=", "'leader", "'", "OR", "date_from", "<", "'1989-04-24", "23:51:54", "'" ]
[ "select", "count", "(", "*", ")", "from", "project_staff", "where", "role_code", "=", "value", "or", "date_from", "<", "value" ]
[ "How", "many", "project", "members", "were", "leaders", "or", "started", "working", "before", "'1989-04-24", "23:51:54", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the last date of the staff leaving the projects?
SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1
[ "SELECT", "date_to", "FROM", "Project_Staff", "ORDER", "BY", "date_to", "DESC", "LIMIT", "1" ]
[ "select", "date_to", "from", "project_staff", "order", "by", "date_to", "desc", "limit", "value" ]
[ "What", "is", "the", "last", "date", "of", "the", "staff", "leaving", "the", "projects", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the last date that a staff member left a project?
SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1
[ "SELECT", "date_to", "FROM", "Project_Staff", "ORDER", "BY", "date_to", "DESC", "LIMIT", "1" ]
[ "select", "date_to", "from", "project_staff", "order", "by", "date_to", "desc", "limit", "value" ]
[ "What", "is", "the", "last", "date", "that", "a", "staff", "member", "left", "a", "project", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the result description of the project whose detail is 'sint'?
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint'
[ "SELECT", "T1.outcome_description", "FROM", "Research_outcomes", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.outcome_code", "=", "T2.outcome_code", "JOIN", "Projects", "AS", "T3", "ON", "T2.project_id", "=", "T3.project_id", "WHERE", "T3.project_detail...
[ "select", "t1", ".", "outcome_description", "from", "research_outcomes", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "outcome_code", "=", "t2", ".", "outcome_code", "join", "projects", "as", "t3", "on", "t2", ".", "project_id", "=", ...
[ "What", "are", "the", "result", "description", "of", "the", "project", "whose", "detail", "is", "'sint", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the description for the results whose project detail is 'sint'?
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code JOIN Projects AS T3 ON T2.project_id = T3.project_id WHERE T3.project_details = 'sint'
[ "SELECT", "T1.outcome_description", "FROM", "Research_outcomes", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.outcome_code", "=", "T2.outcome_code", "JOIN", "Projects", "AS", "T3", "ON", "T2.project_id", "=", "T3.project_id", "WHERE", "T3.project_detail...
[ "select", "t1", ".", "outcome_description", "from", "research_outcomes", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "outcome_code", "=", "t2", ".", "outcome_code", "join", "projects", "as", "t3", "on", "t2", ".", "project_id", "=", ...
[ "What", "is", "the", "description", "for", "the", "results", "whose", "project", "detail", "is", "'sint", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the organisation id with the maximum outcome count, and the count.
SELECT T1.organisation_id , count(*) FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_id", ",", "count", "(", "*", ")", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.organisation_id", "ORDER", "BY", "count", "(", "*", ")", "DESC"...
[ "select", "t1", ".", "organisation_id", ",", "count", "(", "*", ")", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "organisation_id", "order", ...
[ "List", "the", "organisation", "id", "with", "the", "maximum", "outcome", "count", ",", "and", "the", "count", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the id of the organization with the maximum number of outcomes and how many outcomes are there?
SELECT T1.organisation_id , count(*) FROM Projects AS T1 JOIN Project_outcomes AS T2 ON T1.project_id = T2.project_id GROUP BY T1.organisation_id ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "T1.organisation_id", ",", "count", "(", "*", ")", "FROM", "Projects", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.organisation_id", "ORDER", "BY", "count", "(", "*", ")", "DESC"...
[ "select", "t1", ".", "organisation_id", ",", "count", "(", "*", ")", "from", "projects", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "organisation_id", "order", ...
[ "What", "is", "the", "id", "of", "the", "organization", "with", "the", "maximum", "number", "of", "outcomes", "and", "how", "many", "outcomes", "are", "there", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the project details of the projects launched by the organisation
SELECT project_details FROM Projects WHERE organisation_id IN ( SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY count(*) DESC LIMIT 1 )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "organisation_id", "IN", "(", "SELECT", "organisation_id", "FROM", "Projects", "GROUP", "BY", "organisation_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")" ]
[ "select", "project_details", "from", "projects", "where", "organisation_id", "in", "(", "select", "organisation_id", "from", "projects", "group", "by", "organisation_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")" ]
[ "List", "the", "project", "details", "of", "the", "projects", "launched", "by", "the", "organisation" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the details for the projects which were launched by the organization with the most projects?
SELECT project_details FROM Projects WHERE organisation_id IN ( SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY count(*) DESC LIMIT 1 )
[ "SELECT", "project_details", "FROM", "Projects", "WHERE", "organisation_id", "IN", "(", "SELECT", "organisation_id", "FROM", "Projects", "GROUP", "BY", "organisation_id", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1", ")" ]
[ "select", "project_details", "from", "projects", "where", "organisation_id", "in", "(", "select", "organisation_id", "from", "projects", "group", "by", "organisation_id", "order", "by", "count", "(", "*", ")", "desc", "limit", "value", ")" ]
[ "What", "are", "the", "details", "for", "the", "projects", "which", "were", "launched", "by", "the", "organization", "with", "the", "most", "projects", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the research staff details, and order in ascending order.
SELECT staff_details FROM Research_Staff ORDER BY staff_details ASC
[ "SELECT", "staff_details", "FROM", "Research_Staff", "ORDER", "BY", "staff_details", "ASC" ]
[ "select", "staff_details", "from", "research_staff", "order", "by", "staff_details", "asc" ]
[ "List", "the", "research", "staff", "details", ",", "and", "order", "in", "ascending", "order", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What details are there on the research staff? List the result in ascending alphabetical order.
SELECT staff_details FROM Research_Staff ORDER BY staff_details ASC
[ "SELECT", "staff_details", "FROM", "Research_Staff", "ORDER", "BY", "staff_details", "ASC" ]
[ "select", "staff_details", "from", "research_staff", "order", "by", "staff_details", "asc" ]
[ "What", "details", "are", "there", "on", "the", "research", "staff", "?", "List", "the", "result", "in", "ascending", "alphabetical", "order", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many tasks are there in total?
SELECT count(*) FROM Tasks
[ "SELECT", "count", "(", "*", ")", "FROM", "Tasks" ]
[ "select", "count", "(", "*", ")", "from", "tasks" ]
[ "How", "many", "tasks", "are", "there", "in", "total", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many tasks are there?
SELECT count(*) FROM Tasks
[ "SELECT", "count", "(", "*", ")", "FROM", "Tasks" ]
[ "select", "count", "(", "*", ")", "from", "tasks" ]
[ "How", "many", "tasks", "are", "there", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
How many tasks does each project have? List the task count and the project detail.
SELECT count(*) , T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id
[ "SELECT", "count", "(", "*", ")", ",", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Tasks", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id" ]
[ "select", "count", "(", "*", ")", ",", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "tasks", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id" ]
[ "How", "many", "tasks", "does", "each", "project", "have", "?", "List", "the", "task", "count", "and", "the", "project", "detail", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
For each project id, how many tasks are there?
SELECT count(*) , T1.project_details FROM Projects AS T1 JOIN Tasks AS T2 ON T1.project_id = T2.project_id GROUP BY T1.project_id
[ "SELECT", "count", "(", "*", ")", ",", "T1.project_details", "FROM", "Projects", "AS", "T1", "JOIN", "Tasks", "AS", "T2", "ON", "T1.project_id", "=", "T2.project_id", "GROUP", "BY", "T1.project_id" ]
[ "select", "count", "(", "*", ")", ",", "t1", ".", "project_details", "from", "projects", "as", "t1", "join", "tasks", "as", "t2", "on", "t1", ".", "project_id", "=", "t2", ".", "project_id", "group", "by", "t1", ".", "project_id" ]
[ "For", "each", "project", "id", ",", "how", "many", "tasks", "are", "there", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the staff roles of the staff who
SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18'
[ "SELECT", "role_code", "FROM", "Project_Staff", "WHERE", "date_from", ">", "'2003-04-19", "15:06:20", "'", "AND", "date_to", "<", "'2016-03-15", "00:33:18", "'" ]
[ "select", "role_code", "from", "project_staff", "where", "date_from", ">", "value", "and", "date_to", "<", "value" ]
[ "What", "are", "the", "staff", "roles", "of", "the", "staff", "who" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What roles did staff members play between '2003-04-19 15:06:20' and '2016-03-15 00:33:18'?
SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18'
[ "SELECT", "role_code", "FROM", "Project_Staff", "WHERE", "date_from", ">", "'2003-04-19", "15:06:20", "'", "AND", "date_to", "<", "'2016-03-15", "00:33:18", "'" ]
[ "select", "role_code", "from", "project_staff", "where", "date_from", ">", "value", "and", "date_to", "<", "value" ]
[ "What", "roles", "did", "staff", "members", "play", "between", "'2003-04-19", "15:06:20", "'", "and", "'2016-03-15", "00:33:18", "'", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What are the descriptions of all the project outcomes?
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
[ "SELECT", "T1.outcome_description", "FROM", "Research_outcomes", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.outcome_code", "=", "T2.outcome_code" ]
[ "select", "t1", ".", "outcome_description", "from", "research_outcomes", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "outcome_code", "=", "t2", ".", "outcome_code" ]
[ "What", "are", "the", "descriptions", "of", "all", "the", "project", "outcomes", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
List the description of the outcomes for all projects.
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
[ "SELECT", "T1.outcome_description", "FROM", "Research_outcomes", "AS", "T1", "JOIN", "Project_outcomes", "AS", "T2", "ON", "T1.outcome_code", "=", "T2.outcome_code" ]
[ "select", "t1", ".", "outcome_description", "from", "research_outcomes", "as", "t1", "join", "project_outcomes", "as", "t2", "on", "t1", ".", "outcome_code", "=", "t2", ".", "outcome_code" ]
[ "List", "the", "description", "of", "the", "outcomes", "for", "all", "projects", "." ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
Which role is most common for the staff?
SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "role_code", "FROM", "Project_Staff", "GROUP", "BY", "role_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "role_code", "from", "project_staff", "group", "by", "role_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "Which", "role", "is", "most", "common", "for", "the", "staff", "?" ]
tracking_grants_for_research
[ "CREATE TABLE `Document_Types` (\n`document_type_code` VARCHAR(10) PRIMARY KEY,\n`document_description` VARCHAR(255) NOT NULL\n);", "CREATE TABLE `Documents` (\n`document_id` INTEGER PRIMARY KEY,\n`document_type_code` VARCHAR(10),\n`grant_id` INTEGER NOT NULL,\n`sent_date` DATETIME NOT NULL,\n`response_received_d...
What is the most common role for the staff?
SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY count(*) DESC LIMIT 1
[ "SELECT", "role_code", "FROM", "Project_Staff", "GROUP", "BY", "role_code", "ORDER", "BY", "count", "(", "*", ")", "DESC", "LIMIT", "1" ]
[ "select", "role_code", "from", "project_staff", "group", "by", "role_code", "order", "by", "count", "(", "*", ")", "desc", "limit", "value" ]
[ "What", "is", "the", "most", "common", "role", "for", "the", "staff", "?" ]
network_2
[ "CREATE TABLE Person (\n name varchar(20) PRIMARY KEY,\n age INTEGER,\n city TEXT,\n gender TEXT,\n job TEXT\n);", "CREATE TABLE PersonFriend (\n name varchar(20),\n friend varchar(20),\n year INTEGER,\n FOREIGN KEY (name) REFERENCES Person(name),\n FOREIGN KEY (friend) REFERENCES Person(name)\n);" ]
How many friends does Dan have?
SELECT count(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan'
[ "SELECT", "count", "(", "T2.friend", ")", "FROM", "Person", "AS", "T1", "JOIN", "PersonFriend", "AS", "T2", "ON", "T1.name", "=", "T2.name", "WHERE", "T1.name", "=", "'Dan", "'" ]
[ "select", "count", "(", "t2", ".", "friend", ")", "from", "person", "as", "t1", "join", "personfriend", "as", "t2", "on", "t1", ".", "name", "=", "t2", ".", "name", "where", "t1", ".", "name", "=", "value" ]
[ "How", "many", "friends", "does", "Dan", "have", "?" ]
network_2
[ "CREATE TABLE Person (\n name varchar(20) PRIMARY KEY,\n age INTEGER,\n city TEXT,\n gender TEXT,\n job TEXT\n);", "CREATE TABLE PersonFriend (\n name varchar(20),\n friend varchar(20),\n year INTEGER,\n FOREIGN KEY (name) REFERENCES Person(name),\n FOREIGN KEY (friend) REFERENCES Person(name)\n);" ]
How many friends does Dan have?
SELECT count(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan'
[ "SELECT", "count", "(", "T2.friend", ")", "FROM", "Person", "AS", "T1", "JOIN", "PersonFriend", "AS", "T2", "ON", "T1.name", "=", "T2.name", "WHERE", "T1.name", "=", "'Dan", "'" ]
[ "select", "count", "(", "t2", ".", "friend", ")", "from", "person", "as", "t1", "join", "personfriend", "as", "t2", "on", "t1", ".", "name", "=", "t2", ".", "name", "where", "t1", ".", "name", "=", "value" ]
[ "How", "many", "friends", "does", "Dan", "have", "?" ]