Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
800
<question>: Find the name of instructors who are advising more than one student. <context>: CREATE TABLE advisor (i_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) <answer>: SELECT T1.name FROM instructor AS T1 JOIN advisor AS T2 ON T1.id = T2.i_id GROUP BY T2.i_id HAVING COUNT(*) > 1
801
<question>: Find the name of the students who have more than one advisor? <context>: CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE advisor (s_id VARCHAR) <answer>: SELECT T1.name FROM student AS T1 JOIN advisor AS T2 ON T1.id = T2.s_id GROUP BY T2.s_id HAVING COUNT(*) > 1
802
<question>: Find the number of rooms with more than 50 capacity for each building. <context>: CREATE TABLE classroom (building VARCHAR, capacity INTEGER) <answer>: SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building
803
<question>: Find the maximum and average capacity among rooms in each building. <context>: CREATE TABLE classroom (building VARCHAR, capacity INTEGER) <answer>: SELECT MAX(capacity), AVG(capacity), building FROM classroom GROUP BY building
804
<question>: Find the title of the course that is offered by more than one department. <context>: CREATE TABLE course (title VARCHAR) <answer>: SELECT title FROM course GROUP BY title HAVING COUNT(*) > 1
805
<question>: Find the total credits of courses provided by different department. <context>: CREATE TABLE course (dept_name VARCHAR, credits INTEGER) <answer>: SELECT SUM(credits), dept_name FROM course GROUP BY dept_name
806
<question>: Find the minimum salary for the departments whose average salary is above the average payment of all instructors. <context>: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) <answer>: SELECT MIN(salary), dept_name FROM instructor GROUP BY dept_name HAVING AVG(salary) > (SELECT AVG(salary) FROM instructor)
807
<question>: Find the number of courses provided in each semester and year. <context>: CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR) <answer>: SELECT COUNT(*), semester, YEAR FROM SECTION GROUP BY semester, YEAR
808
<question>: Find the year which offers the largest number of courses. <context>: CREATE TABLE SECTION (YEAR VARCHAR) <answer>: SELECT YEAR FROM SECTION GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1
809
<question>: Find the year and semester when offers the largest number of courses. <context>: CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR) <answer>: SELECT semester, YEAR FROM SECTION GROUP BY semester, YEAR ORDER BY COUNT(*) DESC LIMIT 1
810
<question>: Find the name of department has the highest amount of students? <context>: CREATE TABLE student (dept_name VARCHAR) <answer>: SELECT dept_name FROM student GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 1
811
<question>: Find the total number of students in each department. <context>: CREATE TABLE student (dept_name VARCHAR) <answer>: SELECT COUNT(*), dept_name FROM student GROUP BY dept_name
812
<question>: Find the semester and year which has the least number of student taking any class. <context>: CREATE TABLE takes (semester VARCHAR, YEAR VARCHAR) <answer>: SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1
813
<question>: What is the id of the instructor who advises of all students from History department? <context>: CREATE TABLE advisor (s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR) <answer>: SELECT i_id FROM advisor AS T1 JOIN student AS T2 ON T1.s_id = T2.id WHERE T2.dept_name = 'History'
814
<question>: Find the name and salary of the instructors who are advisors of any student from History department? <context>: CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR) <answer>: SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'History'
815
<question>: Find the id of the courses that do not have any prerequisite? <context>: CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR) <answer>: SELECT course_id FROM course EXCEPT SELECT course_id FROM prereq
816
<question>: What is the title of the prerequisite class of International Finance course? <context>: CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR) <answer>: SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'International Finance')
817
<question>: Find the title of course whose prerequisite is course Differential Geometry. <context>: CREATE TABLE prereq (course_id VARCHAR, prereq_id VARCHAR); CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR) <answer>: SELECT title FROM course WHERE course_id IN (SELECT T1.course_id FROM prereq AS T1 JOIN course AS T2 ON T1.prereq_id = T2.course_id WHERE T2.title = 'Differential Geometry')
818
<question>: Find the names of students who have taken any course in the fall semester of year 2003. <context>: CREATE TABLE student (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR); CREATE TABLE takes (name VARCHAR, id VARCHAR, semester VARCHAR, YEAR VARCHAR) <answer>: SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND YEAR = 2003)
819
<question>: What is the title of the course that was offered at building Chandler during the fall semester in the year of 2010? <context>: CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE SECTION (course_id VARCHAR) <answer>: SELECT T1.title FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE building = 'Chandler' AND semester = 'Fall' AND YEAR = 2010
820
<question>: Find the name of the instructors who taught C Programming course before. <context>: CREATE TABLE teaches (id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) <answer>: SELECT T1.name FROM instructor AS T1 JOIN teaches AS T2 ON T1.id = T2.id JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T3.title = 'C Programming'
821
<question>: Find the name and salary of instructors who are advisors of the students from the Math department. <context>: CREATE TABLE instructor (name VARCHAR, salary VARCHAR, id VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR) <answer>: SELECT T2.name, T2.salary FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math'
822
<question>: Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit. <context>: CREATE TABLE student (id VARCHAR, dept_name VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) <answer>: SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id WHERE T3.dept_name = 'Math' ORDER BY T3.tot_cred
823
<question>: What is the course title of the prerequisite of course Mobile Computing? <context>: CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR) <answer>: SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'Mobile Computing')
824
<question>: Find the name of instructor who is the advisor of the student who has the highest number of total credits. <context>: CREATE TABLE student (id VARCHAR, tot_cred VARCHAR); CREATE TABLE advisor (i_id VARCHAR, s_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) <answer>: SELECT T2.name FROM advisor AS T1 JOIN instructor AS T2 ON T1.i_id = T2.id JOIN student AS T3 ON T1.s_id = T3.id ORDER BY T3.tot_cred DESC LIMIT 1
825
<question>: Find the name of instructors who didn't teach any courses? <context>: CREATE TABLE teaches (name VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) <answer>: SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches)
826
<question>: Find the id of instructors who didn't teach any courses? <context>: CREATE TABLE teaches (id VARCHAR); CREATE TABLE instructor (id VARCHAR) <answer>: SELECT id FROM instructor EXCEPT SELECT id FROM teaches
827
<question>: Find the names of instructors who didn't each any courses in any Spring semester. <context>: CREATE TABLE teaches (name VARCHAR, id VARCHAR, semester VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR, semester VARCHAR) <answer>: SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches WHERE semester = 'Spring')
828
<question>: Find the name of the department which has the highest average salary of professors. <context>: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) <answer>: SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1
829
<question>: Find the number and averaged salary of all instructors who are in the department with the highest budget. <context>: CREATE TABLE department (dept_name VARCHAR, budget VARCHAR); CREATE TABLE instructor (salary INTEGER, dept_name VARCHAR) <answer>: SELECT AVG(T1.salary), COUNT(*) FROM instructor AS T1 JOIN department AS T2 ON T1.dept_name = T2.dept_name ORDER BY T2.budget DESC LIMIT 1
830
<question>: What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)? <context>: CREATE TABLE SECTION (course_id VARCHAR, building VARCHAR, room_number VARCHAR); CREATE TABLE course (title VARCHAR, credits VARCHAR, course_id VARCHAR); CREATE TABLE classroom (capacity INTEGER, building VARCHAR, room_number VARCHAR); CREATE TABLE classroom (capacity INTEGER) <answer>: SELECT T3.title, T3.credits FROM classroom AS T1 JOIN SECTION AS T2 ON T1.building = T2.building AND T1.room_number = T2.room_number JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T1.capacity = (SELECT MAX(capacity) FROM classroom)
831
<question>: Find the name of students who didn't take any course from Biology department. <context>: CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR) <answer>: SELECT name FROM student WHERE NOT id IN (SELECT T1.id FROM takes AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.dept_name = 'Biology')
832
<question>: Find the total number of students and total number of instructors for each department. <context>: CREATE TABLE department (dept_name VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR); CREATE TABLE instructor (dept_name VARCHAR, id VARCHAR) <answer>: SELECT COUNT(DISTINCT T2.id), COUNT(DISTINCT T3.id), T3.dept_name FROM department AS T1 JOIN student AS T2 ON T1.dept_name = T2.dept_name JOIN instructor AS T3 ON T1.dept_name = T3.dept_name GROUP BY T3.dept_name
833
<question>: Find the name of students who have taken the prerequisite course of the course with title International Finance. <context>: CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE prereq (prereq_id VARCHAR, course_id VARCHAR); CREATE TABLE takes (id VARCHAR, course_id VARCHAR) <answer>: SELECT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE T2.course_id IN (SELECT T4.prereq_id FROM course AS T3 JOIN prereq AS T4 ON T3.course_id = T4.course_id WHERE T3.title = 'International Finance')
834
<question>: Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department. <context>: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) <answer>: SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics')
835
<question>: Find the name of students who took some course offered by Statistics department. <context>: CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE takes (course_id VARCHAR, id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR) <answer>: SELECT T3.name FROM course AS T1 JOIN takes AS T2 ON T1.course_id = T2.course_id JOIN student AS T3 ON T2.id = T3.id WHERE T1.dept_name = 'Statistics'
836
<question>: Find the building, room number, semester and year of all courses offered by Psychology department sorted by course titles. <context>: CREATE TABLE SECTION (building VARCHAR, room_number VARCHAR, semester VARCHAR, year VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, dept_name VARCHAR, title VARCHAR) <answer>: SELECT T2.building, T2.room_number, T2.semester, T2.year FROM course AS T1 JOIN SECTION AS T2 ON T1.course_id = T2.course_id WHERE T1.dept_name = 'Psychology' ORDER BY T1.title
837
<question>: Find the names of all instructors in computer science department <context>: CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR) <answer>: SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.'
838
<question>: Find the names of all instructors in Comp. Sci. department with salary > 80000. <context>: CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR) <answer>: SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' AND salary > 80000
839
<question>: Find the names of all instructors who have taught some course and the course_id. <context>: CREATE TABLE instructor (ID VARCHAR); CREATE TABLE teaches (ID VARCHAR) <answer>: SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID
840
<question>: Find the names of all instructors in the Art department who have taught some course and the course_id. <context>: CREATE TABLE instructor (ID VARCHAR, dept_name VARCHAR); CREATE TABLE teaches (ID VARCHAR) <answer>: SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID WHERE T1.dept_name = 'Art'
841
<question>: Find the names of all instructors whose name includes the substring “dar”. <context>: CREATE TABLE instructor (name VARCHAR) <answer>: SELECT name FROM instructor WHERE name LIKE '%dar%'
842
<question>: List in alphabetic order the names of all distinct instructors. <context>: CREATE TABLE instructor (name VARCHAR) <answer>: SELECT DISTINCT name FROM instructor ORDER BY name
843
<question>: Find courses that ran in Fall 2009 or in Spring 2010. <context>: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) <answer>: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 UNION SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
844
<question>: Find courses that ran in Fall 2009 and in Spring 2010. <context>: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) <answer>: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
845
<question>: Find courses that ran in Fall 2009 but not in Spring 2010. <context>: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) <answer>: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
846
<question>: Find the salaries of all distinct instructors that are less than the largest salary. <context>: CREATE TABLE instructor (salary INTEGER) <answer>: SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT MAX(salary) FROM instructor)
847
<question>: Find the total number of instructors who teach a course in the Spring 2010 semester. <context>: CREATE TABLE teaches (ID VARCHAR, semester VARCHAR, YEAR VARCHAR) <answer>: SELECT COUNT(DISTINCT ID) FROM teaches WHERE semester = 'Spring' AND YEAR = 2010
848
<question>: Find the names and average salaries of all departments whose average salary is greater than 42000. <context>: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) <answer>: SELECT dept_name, AVG(salary) FROM instructor GROUP BY dept_name HAVING AVG(salary) > 42000
849
<question>: Find names of instructors with salary greater than that of some (at least one) instructor in the Biology department. <context>: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) <answer>: SELECT name FROM instructor WHERE salary > (SELECT MIN(salary) FROM instructor WHERE dept_name = 'Biology')
850
<question>: Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department. <context>: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) <answer>: SELECT name FROM instructor WHERE salary > (SELECT MAX(salary) FROM instructor WHERE dept_name = 'Biology')
851
<question>: How many debates are there? <context>: CREATE TABLE debate (Id VARCHAR) <answer>: SELECT COUNT(*) FROM debate
852
<question>: List the venues of debates in ascending order of the number of audience. <context>: CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR) <answer>: SELECT Venue FROM debate ORDER BY Num_of_Audience
853
<question>: What are the date and venue of each debate? <context>: CREATE TABLE debate (Date VARCHAR, Venue VARCHAR) <answer>: SELECT Date, Venue FROM debate
854
<question>: List the dates of debates with number of audience bigger than 150 <context>: CREATE TABLE debate (Date VARCHAR, Num_of_Audience INTEGER) <answer>: SELECT Date FROM debate WHERE Num_of_Audience > 150
855
<question>: Show the names of people aged either 35 or 36. <context>: CREATE TABLE people (Name VARCHAR, Age VARCHAR) <answer>: SELECT Name FROM people WHERE Age = 35 OR Age = 36
856
<question>: What is the party of the youngest people? <context>: CREATE TABLE people (Party VARCHAR, Age VARCHAR) <answer>: SELECT Party FROM people ORDER BY Age LIMIT 1
857
<question>: Show different parties of people along with the number of people in each party. <context>: CREATE TABLE people (Party VARCHAR) <answer>: SELECT Party, COUNT(*) FROM people GROUP BY Party
858
<question>: Show the party that has the most people. <context>: CREATE TABLE people (Party VARCHAR) <answer>: SELECT Party FROM people GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1
859
<question>: Show the distinct venues of debates <context>: CREATE TABLE debate (Venue VARCHAR) <answer>: SELECT DISTINCT Venue FROM debate
860
<question>: Show the names of people, and dates and venues of debates they are on the affirmative side. <context>: CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR) <answer>: SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID
861
<question>: Show the names of people, and dates and venues of debates they are on the negative side, ordered in ascending alphabetical order of name. <context>: CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Date VARCHAR, Venue VARCHAR, Debate_ID VARCHAR); CREATE TABLE debate_people (Debate_ID VARCHAR, Negative VARCHAR) <answer>: SELECT T3.Name, T2.Date, T2.Venue FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Negative = T3.People_ID ORDER BY T3.Name
862
<question>: Show the names of people that are on affirmative side of debates with number of audience bigger than 200. <context>: CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate (Debate_ID VARCHAR, Num_of_Audience INTEGER); CREATE TABLE debate_people (Debate_ID VARCHAR, Affirmative VARCHAR) <answer>: SELECT T3.Name FROM debate_people AS T1 JOIN debate AS T2 ON T1.Debate_ID = T2.Debate_ID JOIN people AS T3 ON T1.Affirmative = T3.People_ID WHERE T2.Num_of_Audience > 200
863
<question>: Show the names of people and the number of times they have been on the affirmative side of debates. <context>: CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate_people (Affirmative VARCHAR) <answer>: SELECT T2.Name, COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name
864
<question>: Show the names of people who have been on the negative side of debates at least twice. <context>: CREATE TABLE debate_people (Negative VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) <answer>: SELECT T2.Name FROM debate_people AS T1 JOIN people AS T2 ON T1.Negative = T2.People_ID GROUP BY T2.Name HAVING COUNT(*) >= 2
865
<question>: List the names of people that have not been on the affirmative side of debates. <context>: CREATE TABLE debate_people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR); CREATE TABLE people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR) <answer>: SELECT Name FROM people WHERE NOT People_id IN (SELECT Affirmative FROM debate_people)
866
<question>: List the names of all the customers in alphabetical order. <context>: CREATE TABLE customers (customer_details VARCHAR) <answer>: SELECT customer_details FROM customers ORDER BY customer_details
867
<question>: Find all the policy type codes associated with the customer "Dayana Robel" <context>: CREATE TABLE customers (customer_id VARCHAR, customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR) <answer>: SELECT policy_type_code FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t2.customer_details = "Dayana Robel"
868
<question>: Which type of policy is most frequently used? Give me the policy type code. <context>: CREATE TABLE policies (policy_type_code VARCHAR) <answer>: SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1
869
<question>: Find all the policy types that are used by more than 2 customers. <context>: CREATE TABLE policies (policy_type_code VARCHAR) <answer>: SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2
870
<question>: Find the total and average amount paid in claim headers. <context>: CREATE TABLE claim_headers (amount_piad INTEGER) <answer>: SELECT SUM(amount_piad), AVG(amount_piad) FROM claim_headers
871
<question>: Find the total amount claimed in the most recently created document. <context>: CREATE TABLE claim_headers (amount_claimed INTEGER, claim_header_id VARCHAR); CREATE TABLE claims_documents (claim_id VARCHAR, created_date VARCHAR); CREATE TABLE claims_documents (created_date VARCHAR) <answer>: SELECT SUM(t1.amount_claimed) FROM claim_headers AS t1 JOIN claims_documents AS t2 ON t1.claim_header_id = t2.claim_id WHERE t2.created_date = (SELECT created_date FROM claims_documents ORDER BY created_date LIMIT 1)
872
<question>: What is the name of the customer who has made the largest amount of claim in a single claim? <context>: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (amount_claimed INTEGER); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_claimed INTEGER) <answer>: SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_claimed = (SELECT MAX(amount_claimed) FROM claim_headers)
873
<question>: What is the name of the customer who has made the minimum amount of payment in one claim? <context>: CREATE TABLE claim_headers (amount_piad INTEGER); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (policy_id VARCHAR, customer_id VARCHAR); CREATE TABLE claim_headers (policy_id VARCHAR, amount_piad INTEGER) <answer>: SELECT t3.customer_details FROM claim_headers AS t1 JOIN policies AS t2 ON t1.policy_id = t2.policy_id JOIN customers AS t3 ON t2.customer_id = t3.customer_id WHERE t1.amount_piad = (SELECT MIN(amount_piad) FROM claim_headers)
874
<question>: Find the names of customers who have no policies associated. <context>: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR) <answer>: SELECT customer_details FROM customers EXCEPT SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id
875
<question>: How many claim processing stages are there in total? <context>: CREATE TABLE claims_processing_stages (Id VARCHAR) <answer>: SELECT COUNT(*) FROM claims_processing_stages
876
<question>: What is the name of the claim processing stage that most of the claims are on? <context>: CREATE TABLE claims_processing (claim_stage_id VARCHAR); CREATE TABLE claims_processing_stages (claim_status_name VARCHAR, claim_stage_id VARCHAR) <answer>: SELECT t2.claim_status_name FROM claims_processing AS t1 JOIN claims_processing_stages AS t2 ON t1.claim_stage_id = t2.claim_stage_id GROUP BY t1.claim_stage_id ORDER BY COUNT(*) DESC LIMIT 1
877
<question>: Find the names of customers whose name contains "Diana". <context>: CREATE TABLE customers (customer_details VARCHAR) <answer>: SELECT customer_details FROM customers WHERE customer_details LIKE "%Diana%"
878
<question>: Find the names of the customers who have an deputy policy. <context>: CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR) <answer>: SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy"
879
<question>: Find the names of customers who either have an deputy policy or uniformed policy. <context>: CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR) <answer>: SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
880
<question>: Find the names of all the customers and staff members. <context>: CREATE TABLE staff (customer_details VARCHAR, staff_details VARCHAR); CREATE TABLE customers (customer_details VARCHAR, staff_details VARCHAR) <answer>: SELECT customer_details FROM customers UNION SELECT staff_details FROM staff
881
<question>: Find the number of records of each policy type and its type code. <context>: CREATE TABLE policies (policy_type_code VARCHAR) <answer>: SELECT policy_type_code, COUNT(*) FROM policies GROUP BY policy_type_code
882
<question>: Find the name of the customer that has been involved in the most policies. <context>: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (customer_id VARCHAR) <answer>: SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id GROUP BY t2.customer_details ORDER BY COUNT(*) DESC LIMIT 1
883
<question>: What is the description of the claim status "Open"? <context>: CREATE TABLE claims_processing_stages (claim_status_description VARCHAR, claim_status_name VARCHAR) <answer>: SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = "Open"
884
<question>: How many distinct claim outcome codes are there? <context>: CREATE TABLE claims_processing (claim_outcome_code VARCHAR) <answer>: SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing
885
<question>: Which customer is associated with the latest policy? <context>: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (start_date INTEGER); CREATE TABLE policies (customer_id VARCHAR, start_date INTEGER) <answer>: SELECT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.start_date = (SELECT MAX(start_date) FROM policies)
886
<question>: Show the id, the date of account opened, the account name, and other account detail for all accounts. <context>: CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR) <answer>: SELECT account_id, date_account_opened, account_name, other_account_details FROM Accounts
887
<question>: Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'. <context>: CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR) <answer>: SELECT T1.account_id, T1.date_account_opened, T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan'
888
<question>: Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling. <context>: CREATE TABLE Customers (customer_id VARCHAR, customer_first_name VARCHAR, customer_last_name VARCHAR); CREATE TABLE Accounts (account_name VARCHAR, other_account_details VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.account_name, T1.other_account_details FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Meaghan" AND T2.customer_last_name = "Keeling"
889
<question>: Show the first name and last name for the customer with account name 900. <context>: CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "900"
890
<question>: Show the unique first names, last names, and phone numbers for all customers with any account. <context>: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR) <answer>: SELECT DISTINCT T1.customer_first_name, T1.customer_last_name, T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
891
<question>: Show customer ids who don't have an account. <context>: CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR) <answer>: SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts
892
<question>: How many accounts does each customer have? List the number and customer id. <context>: CREATE TABLE Accounts (customer_id VARCHAR) <answer>: SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id
893
<question>: What is the customer id, first and last name with most number of accounts. <context>: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id ORDER BY COUNT(*) DESC LIMIT 1
894
<question>: Show id, first name and last name for all customers and the number of accounts. <context>: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) <answer>: SELECT T1.customer_id, T2.customer_first_name, T2.customer_last_name, COUNT(*) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id
895
<question>: Show first name and id for all customers with at least 2 accounts. <context>: CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR) <answer>: SELECT T2.customer_first_name, T1.customer_id FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2
896
<question>: Show the number of customers for each gender. <context>: CREATE TABLE Customers (gender VARCHAR) <answer>: SELECT gender, COUNT(*) FROM Customers GROUP BY gender
897
<question>: How many transactions do we have? <context>: CREATE TABLE Financial_transactions (Id VARCHAR) <answer>: SELECT COUNT(*) FROM Financial_transactions
898
<question>: How many transaction does each account have? Show the number and account id. <context>: CREATE TABLE Financial_transactions (account_id VARCHAR) <answer>: SELECT COUNT(*), account_id FROM Financial_transactions
899
<question>: How many transaction does account with name 337 have? <context>: CREATE TABLE Accounts (account_id VARCHAR, account_name VARCHAR); CREATE TABLE Financial_transactions (account_id VARCHAR) <answer>: SELECT COUNT(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = "337"