question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described
CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, organisation_id VARCHAR, grant_amount VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR); CREATE TABLE documents (sent_date VARCHAR, grant_id VARCHAR)
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'
### Context: CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, organisation_id VARCHAR, grant_amount VARCHAR); CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR); CREATE TABLE documents (sent_date VARCHAR, grant_id VARCHAR) ### Question: Find out the send dates of the documents with the grant amount of more than 5000 were granted by organisation type described ### Answer: 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'
What are the response received dates for the documents described as 'Regular' or granted with more than 100?
CREATE TABLE Documents (response_received_date VARCHAR, document_type_code VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, grant_amount VARCHAR)
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
### Context: CREATE TABLE Documents (response_received_date VARCHAR, document_type_code VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Grants (grant_id VARCHAR, grant_amount VARCHAR) ### Question: What are the response received dates for the documents described as 'Regular' or granted with more than 100? ### Answer: 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
List the project details of the projects which did not hire any staff for a researcher role.
CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR); CREATE TABLE Project_Staff (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR)
SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_Staff WHERE role_code = 'researcher')
### Context: CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR); CREATE TABLE Project_Staff (project_details VARCHAR, project_id VARCHAR, role_code VARCHAR) ### Question: List the project details of the projects which did not hire any staff for a researcher role. ### Answer: SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_Staff WHERE role_code = 'researcher')
What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes?
CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Tasks (task_details VARCHAR, task_id VARCHAR, project_id VARCHAR)
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 T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING COUNT(*) > 2
### Context: CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Tasks (task_details VARCHAR, task_id VARCHAR, project_id VARCHAR) ### Question: What are the task details, task id and project id for the projects which are detailed as 'omnis' or have more than 2 outcomes? ### Answer: 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 T3 ON T2.project_id = T3.project_id GROUP BY T2.project_id HAVING COUNT(*) > 2
When do all the researcher role staff start to work, and when do they stop working?
CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, role_code VARCHAR)
SELECT date_from, date_to FROM Project_Staff WHERE role_code = 'researcher'
### Context: CREATE TABLE Project_Staff (date_from VARCHAR, date_to VARCHAR, role_code VARCHAR) ### Question: When do all the researcher role staff start to work, and when do they stop working? ### Answer: SELECT date_from, date_to FROM Project_Staff WHERE role_code = 'researcher'
How many kinds of roles are there for the staff?
CREATE TABLE Project_Staff (role_code VARCHAR)
SELECT COUNT(DISTINCT role_code) FROM Project_Staff
### Context: CREATE TABLE Project_Staff (role_code VARCHAR) ### Question: How many kinds of roles are there for the staff? ### Answer: SELECT COUNT(DISTINCT role_code) FROM Project_Staff
What is the total amount of grants given by each organisations? Also list the organisation id.
CREATE TABLE Grants (organisation_id VARCHAR, grant_amount INTEGER)
SELECT SUM(grant_amount), organisation_id FROM Grants GROUP BY organisation_id
### Context: CREATE TABLE Grants (organisation_id VARCHAR, grant_amount INTEGER) ### Question: What is the total amount of grants given by each organisations? Also list the organisation id. ### Answer: SELECT SUM(grant_amount), organisation_id FROM Grants GROUP BY organisation_id
List the project details of the projects with the research outcome described with the substring 'Published'.
CREATE TABLE Research_outcomes (outcome_code VARCHAR, outcome_description VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)
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%'
### Context: CREATE TABLE Research_outcomes (outcome_code VARCHAR, outcome_description VARCHAR); CREATE TABLE Project_outcomes (project_id VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR) ### Question: List the project details of the projects with the research outcome described with the substring 'Published'. ### Answer: 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%'
How many staff does each project has? List the project id and the number in an ascending order.
CREATE TABLE Project_Staff (project_id VARCHAR); CREATE TABLE Projects (project_id VARCHAR)
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(*)
### Context: CREATE TABLE Project_Staff (project_id VARCHAR); CREATE TABLE Projects (project_id VARCHAR) ### Question: How many staff does each project has? List the project id and the number in an ascending order. ### Answer: 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(*)
What is the complete description of the researcher role.
CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR)
SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher'
### Context: CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR) ### Question: What is the complete description of the researcher role. ### Answer: SELECT role_description FROM Staff_Roles WHERE role_code = 'researcher'
When did the first staff for the projects started working?
CREATE TABLE Project_Staff (date_from VARCHAR)
SELECT date_from FROM Project_Staff ORDER BY date_from LIMIT 1
### Context: CREATE TABLE Project_Staff (date_from VARCHAR) ### Question: When did the first staff for the projects started working? ### Answer: SELECT date_from FROM Project_Staff ORDER BY date_from LIMIT 1
Which project made the most number of outcomes? List the project details and the project id.
CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)
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
### Context: CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR) ### Question: Which project made the most number of outcomes? List the project details and the project id. ### Answer: 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
Which projects have no outcome? List the project details.
CREATE TABLE Project_outcomes (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR)
SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_outcomes)
### Context: CREATE TABLE Project_outcomes (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR) ### Question: Which projects have no outcome? List the project details. ### Answer: SELECT project_details FROM Projects WHERE NOT project_id IN (SELECT project_id FROM Project_outcomes)
Which organisation hired the most number of research staff? List the organisation id, type and detail.
CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE Research_Staff (employer_organisation_id VARCHAR)
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
### Context: CREATE TABLE Organisations (organisation_id VARCHAR, organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE Research_Staff (employer_organisation_id VARCHAR) ### Question: Which organisation hired the most number of research staff? List the organisation id, type and detail. ### Answer: 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
Show the role description and the id of the project staff involved in most number of project outcomes?
CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Project_Staff (staff_id VARCHAR, role_code VARCHAR, project_id VARCHAR); CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR)
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
### Context: CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Project_Staff (staff_id VARCHAR, role_code VARCHAR, project_id VARCHAR); CREATE TABLE Staff_Roles (role_description VARCHAR, role_code VARCHAR) ### Question: Show the role description and the id of the project staff involved in most number of project outcomes? ### Answer: 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
Which document type is described with the prefix 'Initial'?
CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR)
SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%'
### Context: CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR) ### Question: Which document type is described with the prefix 'Initial'? ### Answer: SELECT document_type_code FROM Document_Types WHERE document_description LIKE 'Initial%'
For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date.
CREATE TABLE Grants (grant_start_date VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, document_type_code VARCHAR)
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.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application'
### Context: CREATE TABLE Grants (grant_start_date VARCHAR, grant_id VARCHAR); CREATE TABLE Document_Types (document_type_code VARCHAR, document_description VARCHAR); CREATE TABLE Documents (grant_id VARCHAR, document_type_code VARCHAR) ### Question: For grants with both documents described as 'Regular' and documents described as 'Initial Application', list its start date. ### Answer: 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.grant_id JOIN Document_Types AS T3 ON T2.document_type_code = T3.document_type_code WHERE T3.document_description = 'Initial Application'
How many documents can one grant have at most? List the grant id and number.
CREATE TABLE Documents (grant_id VARCHAR)
SELECT grant_id, COUNT(*) FROM Documents GROUP BY grant_id ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE Documents (grant_id VARCHAR) ### Question: How many documents can one grant have at most? List the grant id and number. ### Answer: SELECT grant_id, COUNT(*) FROM Documents GROUP BY grant_id ORDER BY COUNT(*) DESC LIMIT 1
Find the organisation type description of the organisation detailed as 'quo'.
CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR)
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'
### Context: CREATE TABLE Organisations (organisation_type VARCHAR, organisation_details VARCHAR); CREATE TABLE organisation_Types (organisation_type_description VARCHAR, organisation_type VARCHAR) ### Question: Find the organisation type description of the organisation detailed as 'quo'. ### Answer: 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'
What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order.
CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR)
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
### Context: CREATE TABLE organisation_Types (organisation_type VARCHAR, organisation_type_description VARCHAR); CREATE TABLE Organisations (organisation_type VARCHAR) ### Question: What are all the details of the organisations described as 'Sponsor'? Sort the result in an ascending order. ### Answer: 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
How many Patent outcomes are generated from all the projects?
CREATE TABLE Project_outcomes (outcome_code VARCHAR)
SELECT COUNT(*) FROM Project_outcomes WHERE outcome_code = 'Patent'
### Context: CREATE TABLE Project_outcomes (outcome_code VARCHAR) ### Question: How many Patent outcomes are generated from all the projects? ### Answer: SELECT COUNT(*) FROM Project_outcomes WHERE outcome_code = 'Patent'
How many project staff worked as leaders or started working before '1989-04-24 23:51:54'?
CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR)
SELECT COUNT(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54'
### Context: CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR) ### Question: How many project staff worked as leaders or started working before '1989-04-24 23:51:54'? ### Answer: SELECT COUNT(*) FROM Project_Staff WHERE role_code = 'leader' OR date_from < '1989-04-24 23:51:54'
What is the last date of the staff leaving the projects?
CREATE TABLE Project_Staff (date_to VARCHAR)
SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1
### Context: CREATE TABLE Project_Staff (date_to VARCHAR) ### Question: What is the last date of the staff leaving the projects? ### Answer: SELECT date_to FROM Project_Staff ORDER BY date_to DESC LIMIT 1
What are the result description of the project whose detail is 'sint'?
CREATE TABLE Project_outcomes (outcome_code VARCHAR, project_id VARCHAR); CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR)
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'
### Context: CREATE TABLE Project_outcomes (outcome_code VARCHAR, project_id VARCHAR); CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Projects (project_id VARCHAR, project_details VARCHAR) ### Question: What are the result description of the project whose detail is 'sint'? ### Answer: 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'
List the organisation id with the maximum outcome count, and the count.
CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (organisation_id VARCHAR, project_id VARCHAR)
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
### Context: CREATE TABLE Project_outcomes (project_id VARCHAR); CREATE TABLE Projects (organisation_id VARCHAR, project_id VARCHAR) ### Question: List the organisation id with the maximum outcome count, and the count. ### Answer: 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
List the project details of the projects launched by the organisation
CREATE TABLE Projects (project_details VARCHAR, organisation_id VARCHAR)
SELECT project_details FROM Projects WHERE organisation_id IN (SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY COUNT(*) DESC LIMIT 1)
### Context: CREATE TABLE Projects (project_details VARCHAR, organisation_id VARCHAR) ### Question: List the project details of the projects launched by the organisation ### Answer: SELECT project_details FROM Projects WHERE organisation_id IN (SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY COUNT(*) DESC LIMIT 1)
List the research staff details, and order in ascending order.
CREATE TABLE Research_Staff (staff_details VARCHAR)
SELECT staff_details FROM Research_Staff ORDER BY staff_details
### Context: CREATE TABLE Research_Staff (staff_details VARCHAR) ### Question: List the research staff details, and order in ascending order. ### Answer: SELECT staff_details FROM Research_Staff ORDER BY staff_details
How many tasks are there in total?
CREATE TABLE Tasks (Id VARCHAR)
SELECT COUNT(*) FROM Tasks
### Context: CREATE TABLE Tasks (Id VARCHAR) ### Question: How many tasks are there in total? ### Answer: SELECT COUNT(*) FROM Tasks
How many tasks does each project have? List the task count and the project detail.
CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Tasks (project_id VARCHAR)
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
### Context: CREATE TABLE Projects (project_details VARCHAR, project_id VARCHAR); CREATE TABLE Tasks (project_id VARCHAR) ### Question: How many tasks does each project have? List the task count and the project detail. ### Answer: 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
What are the staff roles of the staff who
CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR, date_to VARCHAR)
SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18'
### Context: CREATE TABLE Project_Staff (role_code VARCHAR, date_from VARCHAR, date_to VARCHAR) ### Question: What are the staff roles of the staff who ### Answer: SELECT role_code FROM Project_Staff WHERE date_from > '2003-04-19 15:06:20' AND date_to < '2016-03-15 00:33:18'
What are the descriptions of all the project outcomes?
CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR)
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
### Context: CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR) ### Question: What are the descriptions of all the project outcomes? ### Answer: SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
Which role is most common for the staff?
CREATE TABLE Project_Staff (role_code VARCHAR)
SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE Project_Staff (role_code VARCHAR) ### Question: Which role is most common for the staff? ### Answer: SELECT role_code FROM Project_Staff GROUP BY role_code ORDER BY COUNT(*) DESC LIMIT 1
How many friends does Dan have?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT COUNT(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan'
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: How many friends does Dan have? ### Answer: SELECT COUNT(T2.friend) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Dan'
How many females does this network has?
CREATE TABLE Person (gender VARCHAR)
SELECT COUNT(*) FROM Person WHERE gender = 'female'
### Context: CREATE TABLE Person (gender VARCHAR) ### Question: How many females does this network has? ### Answer: SELECT COUNT(*) FROM Person WHERE gender = 'female'
What is the average age for all person?
CREATE TABLE Person (age INTEGER)
SELECT AVG(age) FROM Person
### Context: CREATE TABLE Person (age INTEGER) ### Question: What is the average age for all person? ### Answer: SELECT AVG(age) FROM Person
How many different cities are they from?
CREATE TABLE Person (city VARCHAR)
SELECT COUNT(DISTINCT city) FROM Person
### Context: CREATE TABLE Person (city VARCHAR) ### Question: How many different cities are they from? ### Answer: SELECT COUNT(DISTINCT city) FROM Person
How many type of jobs do they have?
CREATE TABLE Person (job VARCHAR)
SELECT COUNT(DISTINCT job) FROM Person
### Context: CREATE TABLE Person (job VARCHAR) ### Question: How many type of jobs do they have? ### Answer: SELECT COUNT(DISTINCT job) FROM Person
Who is the oldest person?
CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, age INTEGER)
SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person)
### Context: CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, age INTEGER) ### Question: Who is the oldest person? ### Answer: SELECT name FROM Person WHERE age = (SELECT MAX(age) FROM person)
Who is the oldest person whose job is student?
CREATE TABLE person (name VARCHAR, job VARCHAR, age INTEGER); CREATE TABLE Person (name VARCHAR, job VARCHAR, age INTEGER)
SELECT name FROM Person WHERE job = 'student' AND age = (SELECT MAX(age) FROM person WHERE job = 'student')
### Context: CREATE TABLE person (name VARCHAR, job VARCHAR, age INTEGER); CREATE TABLE Person (name VARCHAR, job VARCHAR, age INTEGER) ### Question: Who is the oldest person whose job is student? ### Answer: SELECT name FROM Person WHERE job = 'student' AND age = (SELECT MAX(age) FROM person WHERE job = 'student')
Who is the youngest male?
CREATE TABLE Person (name VARCHAR, gender VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, gender VARCHAR, age INTEGER)
SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT MIN(age) FROM person WHERE gender = 'male')
### Context: CREATE TABLE Person (name VARCHAR, gender VARCHAR, age INTEGER); CREATE TABLE person (name VARCHAR, gender VARCHAR, age INTEGER) ### Question: Who is the youngest male? ### Answer: SELECT name FROM Person WHERE gender = 'male' AND age = (SELECT MIN(age) FROM person WHERE gender = 'male')
How old is the doctor named Zach?
CREATE TABLE Person (age VARCHAR, job VARCHAR, name VARCHAR)
SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach'
### Context: CREATE TABLE Person (age VARCHAR, job VARCHAR, name VARCHAR) ### Question: How old is the doctor named Zach? ### Answer: SELECT age FROM Person WHERE job = 'doctor' AND name = 'Zach'
Who is the person whose age is below 30?
CREATE TABLE Person (name VARCHAR, age INTEGER)
SELECT name FROM Person WHERE age < 30
### Context: CREATE TABLE Person (name VARCHAR, age INTEGER) ### Question: Who is the person whose age is below 30? ### Answer: SELECT name FROM Person WHERE age < 30
How many people whose age is greater 30 and job is engineer?
CREATE TABLE Person (age VARCHAR, job VARCHAR)
SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'
### Context: CREATE TABLE Person (age VARCHAR, job VARCHAR) ### Question: How many people whose age is greater 30 and job is engineer? ### Answer: SELECT COUNT(*) FROM Person WHERE age > 30 AND job = 'engineer'
What is the average age for each gender?
CREATE TABLE Person (gender VARCHAR, age INTEGER)
SELECT AVG(age), gender FROM Person GROUP BY gender
### Context: CREATE TABLE Person (gender VARCHAR, age INTEGER) ### Question: What is the average age for each gender? ### Answer: SELECT AVG(age), gender FROM Person GROUP BY gender
What is average age for different job title?
CREATE TABLE Person (job VARCHAR, age INTEGER)
SELECT AVG(age), job FROM Person GROUP BY job
### Context: CREATE TABLE Person (job VARCHAR, age INTEGER) ### Question: What is average age for different job title? ### Answer: SELECT AVG(age), job FROM Person GROUP BY job
What is average age of male for different job title?
CREATE TABLE Person (job VARCHAR, age INTEGER, gender VARCHAR)
SELECT AVG(age), job FROM Person WHERE gender = 'male' GROUP BY job
### Context: CREATE TABLE Person (job VARCHAR, age INTEGER, gender VARCHAR) ### Question: What is average age of male for different job title? ### Answer: SELECT AVG(age), job FROM Person WHERE gender = 'male' GROUP BY job
What is minimum age for different job title?
CREATE TABLE Person (job VARCHAR, age INTEGER)
SELECT MIN(age), job FROM Person GROUP BY job
### Context: CREATE TABLE Person (job VARCHAR, age INTEGER) ### Question: What is minimum age for different job title? ### Answer: SELECT MIN(age), job FROM Person GROUP BY job
Find the number of people who is under 40 for each gender.
CREATE TABLE Person (gender VARCHAR, age INTEGER)
SELECT COUNT(*), gender FROM Person WHERE age < 40 GROUP BY gender
### Context: CREATE TABLE Person (gender VARCHAR, age INTEGER) ### Question: Find the number of people who is under 40 for each gender. ### Answer: SELECT COUNT(*), gender FROM Person WHERE age < 40 GROUP BY gender
Find the name of people whose age is greater than any engineer sorted by their age.
CREATE TABLE Person (name VARCHAR, age INTEGER, job VARCHAR); CREATE TABLE person (name VARCHAR, age INTEGER, job VARCHAR)
SELECT name FROM Person WHERE age > (SELECT MIN(age) FROM person WHERE job = 'engineer') ORDER BY age
### Context: CREATE TABLE Person (name VARCHAR, age INTEGER, job VARCHAR); CREATE TABLE person (name VARCHAR, age INTEGER, job VARCHAR) ### Question: Find the name of people whose age is greater than any engineer sorted by their age. ### Answer: SELECT name FROM Person WHERE age > (SELECT MIN(age) FROM person WHERE job = 'engineer') ORDER BY age
Find the number of people whose age is greater than all engineers.
CREATE TABLE Person (age INTEGER, job VARCHAR); CREATE TABLE person (age INTEGER, job VARCHAR)
SELECT COUNT(*) FROM Person WHERE age > (SELECT MAX(age) FROM person WHERE job = 'engineer')
### Context: CREATE TABLE Person (age INTEGER, job VARCHAR); CREATE TABLE person (age INTEGER, job VARCHAR) ### Question: Find the number of people whose age is greater than all engineers. ### Answer: SELECT COUNT(*) FROM Person WHERE age > (SELECT MAX(age) FROM person WHERE job = 'engineer')
list the name, job title of all people ordered by their names.
CREATE TABLE Person (name VARCHAR, job VARCHAR)
SELECT name, job FROM Person ORDER BY name
### Context: CREATE TABLE Person (name VARCHAR, job VARCHAR) ### Question: list the name, job title of all people ordered by their names. ### Answer: SELECT name, job FROM Person ORDER BY name
Find the names of all person sorted in the descending order using age.
CREATE TABLE Person (name VARCHAR, age VARCHAR)
SELECT name FROM Person ORDER BY age DESC
### Context: CREATE TABLE Person (name VARCHAR, age VARCHAR) ### Question: Find the names of all person sorted in the descending order using age. ### Answer: SELECT name FROM Person ORDER BY age DESC
Find the name and age of all males in order of their age.
CREATE TABLE Person (name VARCHAR, gender VARCHAR, age VARCHAR)
SELECT name FROM Person WHERE gender = 'male' ORDER BY age
### Context: CREATE TABLE Person (name VARCHAR, gender VARCHAR, age VARCHAR) ### Question: Find the name and age of all males in order of their age. ### Answer: SELECT name FROM Person WHERE gender = 'male' ORDER BY age
Find the name and age of the person who is a friend of both Dan and Alice.
CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)
SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' INTERSECT SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice'
### Context: CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR) ### Question: Find the name and age of the person who is a friend of both Dan and Alice. ### Answer: SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' INTERSECT SELECT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice'
Find the name and age of the person who is a friend of Dan or Alice.
CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)
SELECT DISTINCT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' OR T2.friend = 'Alice'
### Context: CREATE TABLE Person (name VARCHAR, age VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR) ### Question: Find the name and age of the person who is a friend of Dan or Alice. ### Answer: SELECT DISTINCT T1.name, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Dan' OR T2.friend = 'Alice'
Find the name of the person who has friends with age above 40 and under age 30?
CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) INTERSECT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)
### Context: CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: Find the name of the person who has friends with age above 40 and under age 30? ### Answer: SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) INTERSECT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)
Find the name of the person who has friends with age above 40 but not under age 30?
CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)
### Context: CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: Find the name of the person who has friends with age above 40 but not under age 30? ### Answer: SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)
Find the name of the person who has no student friends.
CREATE TABLE Person (name VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE person (name VARCHAR)
SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student'
### Context: CREATE TABLE Person (name VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE person (name VARCHAR) ### Question: Find the name of the person who has no student friends. ### Answer: SELECT name FROM person EXCEPT SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.job = 'student'
Find the person who has exactly one friend.
CREATE TABLE PersonFriend (name VARCHAR)
SELECT name FROM PersonFriend GROUP BY name HAVING COUNT(*) = 1
### Context: CREATE TABLE PersonFriend (name VARCHAR) ### Question: Find the person who has exactly one friend. ### Answer: SELECT name FROM PersonFriend GROUP BY name HAVING COUNT(*) = 1
Who are the friends of Bob?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob'
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: Who are the friends of Bob? ### Answer: SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T1.name = 'Bob'
Find the name of persons who are friends with Bob.
CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob'
### Context: CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: Find the name of persons who are friends with Bob. ### Answer: SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Bob'
Find the names of females who are friends with Zach
CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR)
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female'
### Context: CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR) ### Question: Find the names of females who are friends with Zach ### Answer: SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Zach' AND T1.gender = 'female'
Find the female friends of Alice.
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR)
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female'
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, gender VARCHAR) ### Question: Find the female friends of Alice. ### Answer: SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'female'
Find the male friend of Alice whose job is a doctor?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, job VARCHAR, gender VARCHAR)
SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor'
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR); CREATE TABLE Person (name VARCHAR, job VARCHAR, gender VARCHAR) ### Question: Find the male friend of Alice whose job is a doctor? ### Answer: SELECT T2.friend FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Alice' AND T1.gender = 'male' AND T1.job = 'doctor'
Who has a friend that is from new york city?
CREATE TABLE Person (name VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)
SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.city = 'new york city'
### Context: CREATE TABLE Person (name VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR) ### Question: Who has a friend that is from new york city? ### Answer: SELECT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.city = 'new york city'
Who has friends that are younger than the average age?
CREATE TABLE person (age INTEGER); CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR)
SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT AVG(age) FROM person)
### Context: CREATE TABLE person (age INTEGER); CREATE TABLE Person (name VARCHAR, age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR) ### Question: Who has friends that are younger than the average age? ### Answer: SELECT DISTINCT T2.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age < (SELECT AVG(age) FROM person)
Who has friends that are older than the average age? Print their friends and their ages as well
CREATE TABLE person (age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR)
SELECT DISTINCT T2.name, T2.friend, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age > (SELECT AVG(age) FROM person)
### Context: CREATE TABLE person (age INTEGER); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR) ### Question: Who has friends that are older than the average age? Print their friends and their ages as well ### Answer: SELECT DISTINCT T2.name, T2.friend, T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T1.age > (SELECT AVG(age) FROM person)
Who is the friend of Zach with longest year relationship?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, YEAR INTEGER)
SELECT friend FROM PersonFriend WHERE name = 'Zach' AND YEAR = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, YEAR INTEGER) ### Question: Who is the friend of Zach with longest year relationship? ### Answer: SELECT friend FROM PersonFriend WHERE name = 'Zach' AND YEAR = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')
What is the age of the friend of Zach with longest year relationship?
CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, year VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, name VARCHAR); CREATE TABLE Person (age VARCHAR, name VARCHAR)
SELECT T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Zach' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')
### Context: CREATE TABLE PersonFriend (friend VARCHAR, name VARCHAR, year VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, name VARCHAR); CREATE TABLE Person (age VARCHAR, name VARCHAR) ### Question: What is the age of the friend of Zach with longest year relationship? ### Answer: SELECT T1.age FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend WHERE T2.name = 'Zach' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE name = 'Zach')
Find the name of persons who are friends with Alice for the shortest years.
CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, YEAR INTEGER)
SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT MIN(YEAR) FROM PersonFriend WHERE friend = 'Alice')
### Context: CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, YEAR INTEGER) ### Question: Find the name of persons who are friends with Alice for the shortest years. ### Answer: SELECT name FROM PersonFriend WHERE friend = 'Alice' AND YEAR = (SELECT MIN(YEAR) FROM PersonFriend WHERE friend = 'Alice')
Find the name, age, and job title of persons who are friends with Alice for the longest years.
CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, year VARCHAR); CREATE TABLE Person (name VARCHAR, age VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, friend VARCHAR)
SELECT T1.name, T1.age, T1.job FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE friend = 'Alice')
### Context: CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, year VARCHAR); CREATE TABLE Person (name VARCHAR, age VARCHAR, job VARCHAR); CREATE TABLE PersonFriend (YEAR INTEGER, friend VARCHAR) ### Question: Find the name, age, and job title of persons who are friends with Alice for the longest years. ### Answer: SELECT T1.name, T1.age, T1.job FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend = 'Alice' AND T2.year = (SELECT MAX(YEAR) FROM PersonFriend WHERE friend = 'Alice')
Who is the person that has no friend?
CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE person (name VARCHAR)
SELECT name FROM person EXCEPT SELECT name FROM PersonFriend
### Context: CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE person (name VARCHAR) ### Question: Who is the person that has no friend? ### Answer: SELECT name FROM person EXCEPT SELECT name FROM PersonFriend
Which person whose friends have the oldest average age?
CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR)
SELECT T2.name, AVG(T1.age) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend GROUP BY T2.name ORDER BY AVG(T1.age) DESC LIMIT 1
### Context: CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (age INTEGER, name VARCHAR) ### Question: Which person whose friends have the oldest average age? ### Answer: SELECT T2.name, AVG(T1.age) FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.friend GROUP BY T2.name ORDER BY AVG(T1.age) DESC LIMIT 1
What is the total number of people who has no friend living in the city of Austin.
CREATE TABLE person (name VARCHAR, friend VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, city VARCHAR)
SELECT COUNT(DISTINCT name) FROM PersonFriend WHERE NOT friend IN (SELECT name FROM person WHERE city = 'Austin')
### Context: CREATE TABLE person (name VARCHAR, friend VARCHAR, city VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR, city VARCHAR) ### Question: What is the total number of people who has no friend living in the city of Austin. ### Answer: SELECT COUNT(DISTINCT name) FROM PersonFriend WHERE NOT friend IN (SELECT name FROM person WHERE city = 'Austin')
Find Alice's friends of friends.
CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR)
SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name <> 'Alice'
### Context: CREATE TABLE PersonFriend (name VARCHAR); CREATE TABLE PersonFriend (name VARCHAR, friend VARCHAR); CREATE TABLE Person (name VARCHAR) ### Question: Find Alice's friends of friends. ### Answer: SELECT DISTINCT T4.name FROM PersonFriend AS T1 JOIN Person AS T2 ON T1.name = T2.name JOIN PersonFriend AS T3 ON T1.friend = T3.name JOIN PersonFriend AS T4 ON T3.friend = T4.name WHERE T2.name = 'Alice' AND T4.name <> 'Alice'
How many members are there?
CREATE TABLE member (Id VARCHAR)
SELECT COUNT(*) FROM member
### Context: CREATE TABLE member (Id VARCHAR) ### Question: How many members are there? ### Answer: SELECT COUNT(*) FROM member
List the names of members in ascending alphabetical order.
CREATE TABLE member (Name VARCHAR)
SELECT Name FROM member ORDER BY Name
### Context: CREATE TABLE member (Name VARCHAR) ### Question: List the names of members in ascending alphabetical order. ### Answer: SELECT Name FROM member ORDER BY Name
What are the names and countries of members?
CREATE TABLE member (Name VARCHAR, Country VARCHAR)
SELECT Name, Country FROM member
### Context: CREATE TABLE member (Name VARCHAR, Country VARCHAR) ### Question: What are the names and countries of members? ### Answer: SELECT Name, Country FROM member
Show the names of members whose country is "United States" or "Canada".
CREATE TABLE member (Name VARCHAR, Country VARCHAR)
SELECT Name FROM member WHERE Country = "United States" OR Country = "Canada"
### Context: CREATE TABLE member (Name VARCHAR, Country VARCHAR) ### Question: Show the names of members whose country is "United States" or "Canada". ### Answer: SELECT Name FROM member WHERE Country = "United States" OR Country = "Canada"
Show the different countries and the number of members from each.
CREATE TABLE member (Country VARCHAR)
SELECT Country, COUNT(*) FROM member GROUP BY Country
### Context: CREATE TABLE member (Country VARCHAR) ### Question: Show the different countries and the number of members from each. ### Answer: SELECT Country, COUNT(*) FROM member GROUP BY Country
Show the most common country across members.
CREATE TABLE member (Country VARCHAR)
SELECT Country FROM member GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE member (Country VARCHAR) ### Question: Show the most common country across members. ### Answer: SELECT Country FROM member GROUP BY Country ORDER BY COUNT(*) DESC LIMIT 1
Which countries have more than two members?
CREATE TABLE member (Country VARCHAR)
SELECT Country FROM member GROUP BY Country HAVING COUNT(*) > 2
### Context: CREATE TABLE member (Country VARCHAR) ### Question: Which countries have more than two members? ### Answer: SELECT Country FROM member GROUP BY Country HAVING COUNT(*) > 2
Show the leader names and locations of colleges.
CREATE TABLE college (Leader_Name VARCHAR, College_Location VARCHAR)
SELECT Leader_Name, College_Location FROM college
### Context: CREATE TABLE college (Leader_Name VARCHAR, College_Location VARCHAR) ### Question: Show the leader names and locations of colleges. ### Answer: SELECT Leader_Name, College_Location FROM college
Show the names of members and names of colleges they go to.
CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (Name VARCHAR, College_ID VARCHAR)
SELECT T2.Name, T1.Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID
### Context: CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (Name VARCHAR, College_ID VARCHAR) ### Question: Show the names of members and names of colleges they go to. ### Answer: SELECT T2.Name, T1.Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID
Show the names of members and the locations of colleges they go to in ascending alphabetical order of member names.
CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (College_Location VARCHAR, College_ID VARCHAR)
SELECT T2.Name, T1.College_Location FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID ORDER BY T2.Name
### Context: CREATE TABLE member (Name VARCHAR, College_ID VARCHAR); CREATE TABLE college (College_Location VARCHAR, College_ID VARCHAR) ### Question: Show the names of members and the locations of colleges they go to in ascending alphabetical order of member names. ### Answer: SELECT T2.Name, T1.College_Location FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID ORDER BY T2.Name
Show the distinct leader names of colleges associated with members from country "Canada".
CREATE TABLE college (Leader_Name VARCHAR, College_ID VARCHAR); CREATE TABLE member (College_ID VARCHAR, Country VARCHAR)
SELECT DISTINCT T1.Leader_Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID WHERE T2.Country = "Canada"
### Context: CREATE TABLE college (Leader_Name VARCHAR, College_ID VARCHAR); CREATE TABLE member (College_ID VARCHAR, Country VARCHAR) ### Question: Show the distinct leader names of colleges associated with members from country "Canada". ### Answer: SELECT DISTINCT T1.Leader_Name FROM college AS T1 JOIN member AS T2 ON T1.College_ID = T2.College_ID WHERE T2.Country = "Canada"
Show the names of members and the decoration themes they have.
CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Decoration_Theme VARCHAR, Member_ID VARCHAR)
SELECT T1.Name, T2.Decoration_Theme FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID
### Context: CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Decoration_Theme VARCHAR, Member_ID VARCHAR) ### Question: Show the names of members and the decoration themes they have. ### Answer: SELECT T1.Name, T2.Decoration_Theme FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID
Show the names of members that have a rank in round higher than 3.
CREATE TABLE round (Member_ID VARCHAR, Rank_in_Round INTEGER); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR)
SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3
### Context: CREATE TABLE round (Member_ID VARCHAR, Rank_in_Round INTEGER); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR) ### Question: Show the names of members that have a rank in round higher than 3. ### Answer: SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3
Show the names of members in ascending order of their rank in rounds.
CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Member_ID VARCHAR)
SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID ORDER BY Rank_in_Round
### Context: CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Member_ID VARCHAR) ### Question: Show the names of members in ascending order of their rank in rounds. ### Answer: SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID ORDER BY Rank_in_Round
List the names of members who did not participate in any round.
CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Name VARCHAR, Member_ID VARCHAR)
SELECT Name FROM member WHERE NOT Member_ID IN (SELECT Member_ID FROM round)
### Context: CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR); CREATE TABLE round (Name VARCHAR, Member_ID VARCHAR) ### Question: List the names of members who did not participate in any round. ### Answer: SELECT Name FROM member WHERE NOT Member_ID IN (SELECT Member_ID FROM round)
Find the name and access counts of all documents, in alphabetic order of the document name.
CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR)
SELECT document_name, access_count FROM documents ORDER BY document_name
### Context: CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR) ### Question: Find the name and access counts of all documents, in alphabetic order of the document name. ### Answer: SELECT document_name, access_count FROM documents ORDER BY document_name
Find the name of the document that has been accessed the greatest number of times, as well as the count of how many times it has been accessed?
CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR)
SELECT document_name, access_count FROM documents ORDER BY access_count DESC LIMIT 1
### Context: CREATE TABLE documents (document_name VARCHAR, access_count VARCHAR) ### Question: Find the name of the document that has been accessed the greatest number of times, as well as the count of how many times it has been accessed? ### Answer: SELECT document_name, access_count FROM documents ORDER BY access_count DESC LIMIT 1
Find the types of documents with more than 4 documents.
CREATE TABLE documents (document_type_code VARCHAR)
SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 4
### Context: CREATE TABLE documents (document_type_code VARCHAR) ### Question: Find the types of documents with more than 4 documents. ### Answer: SELECT document_type_code FROM documents GROUP BY document_type_code HAVING COUNT(*) > 4
Find the total access count of all documents in the most popular document type.
CREATE TABLE documents (access_count INTEGER, document_type_code VARCHAR)
SELECT SUM(access_count) FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE documents (access_count INTEGER, document_type_code VARCHAR) ### Question: Find the total access count of all documents in the most popular document type. ### Answer: SELECT SUM(access_count) FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 1
What is the average access count of documents?
CREATE TABLE documents (access_count INTEGER)
SELECT AVG(access_count) FROM documents
### Context: CREATE TABLE documents (access_count INTEGER) ### Question: What is the average access count of documents? ### Answer: SELECT AVG(access_count) FROM documents
What is the structure of the document with the least number of accesses?
CREATE TABLE document_structures (document_structure_description VARCHAR, document_structure_code VARCHAR); CREATE TABLE documents (document_structure_code VARCHAR)
SELECT t2.document_structure_description FROM documents AS t1 JOIN document_structures AS t2 ON t1.document_structure_code = t2.document_structure_code GROUP BY t1.document_structure_code ORDER BY COUNT(*) DESC LIMIT 1
### Context: CREATE TABLE document_structures (document_structure_description VARCHAR, document_structure_code VARCHAR); CREATE TABLE documents (document_structure_code VARCHAR) ### Question: What is the structure of the document with the least number of accesses? ### Answer: SELECT t2.document_structure_description FROM documents AS t1 JOIN document_structures AS t2 ON t1.document_structure_code = t2.document_structure_code GROUP BY t1.document_structure_code ORDER BY COUNT(*) DESC LIMIT 1
What is the type of the document named "David CV"?
CREATE TABLE documents (document_type_code VARCHAR, document_name VARCHAR)
SELECT document_type_code FROM documents WHERE document_name = "David CV"
### Context: CREATE TABLE documents (document_type_code VARCHAR, document_name VARCHAR) ### Question: What is the type of the document named "David CV"? ### Answer: SELECT document_type_code FROM documents WHERE document_name = "David CV"
Find the list of documents that are both in the most three popular type and have the most three popular structure.
CREATE TABLE documents (document_name VARCHAR, document_type_code VARCHAR, document_structure_code VARCHAR)
SELECT document_name FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 3 INTERSECT SELECT document_name FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) DESC LIMIT 3
### Context: CREATE TABLE documents (document_name VARCHAR, document_type_code VARCHAR, document_structure_code VARCHAR) ### Question: Find the list of documents that are both in the most three popular type and have the most three popular structure. ### Answer: SELECT document_name FROM documents GROUP BY document_type_code ORDER BY COUNT(*) DESC LIMIT 3 INTERSECT SELECT document_name FROM documents GROUP BY document_structure_code ORDER BY COUNT(*) DESC LIMIT 3
What document types do have more than 10000 total access number.
CREATE TABLE documents (document_type_code VARCHAR, access_count INTEGER)
SELECT document_type_code FROM documents GROUP BY document_type_code HAVING SUM(access_count) > 10000
### Context: CREATE TABLE documents (document_type_code VARCHAR, access_count INTEGER) ### Question: What document types do have more than 10000 total access number. ### Answer: SELECT document_type_code FROM documents GROUP BY document_type_code HAVING SUM(access_count) > 10000
What are all the section titles of the document named "David CV"?
CREATE TABLE documents (document_code VARCHAR, document_name VARCHAR); CREATE TABLE document_sections (section_title VARCHAR, document_code VARCHAR)
SELECT t2.section_title FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code WHERE t1.document_name = "David CV"
### Context: CREATE TABLE documents (document_code VARCHAR, document_name VARCHAR); CREATE TABLE document_sections (section_title VARCHAR, document_code VARCHAR) ### Question: What are all the section titles of the document named "David CV"? ### Answer: SELECT t2.section_title FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code WHERE t1.document_name = "David CV"