text
stringlengths 114
1.06k
|
---|
### question: Find the name of instructors who are advising more than one student. ### 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 ### context: CREATE TABLE advisor (i_id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) |
### question: Find the name of the students who have more than one advisor? ### 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 ### context: CREATE TABLE student (name VARCHAR, id VARCHAR); CREATE TABLE advisor (s_id VARCHAR) |
### question: Find the number of rooms with more than 50 capacity for each building. ### answer: SELECT COUNT(*), building FROM classroom WHERE capacity > 50 GROUP BY building ### context: CREATE TABLE classroom (building VARCHAR, capacity INTEGER) |
### question: Find the maximum and average capacity among rooms in each building. ### answer: SELECT MAX(capacity), AVG(capacity), building FROM classroom GROUP BY building ### context: CREATE TABLE classroom (building VARCHAR, capacity INTEGER) |
### question: Find the title of the course that is offered by more than one department. ### answer: SELECT title FROM course GROUP BY title HAVING COUNT(*) > 1 ### context: CREATE TABLE course (title VARCHAR) |
### question: Find the total credits of courses provided by different department. ### answer: SELECT SUM(credits), dept_name FROM course GROUP BY dept_name ### context: CREATE TABLE course (dept_name VARCHAR, credits INTEGER) |
### question: Find the minimum salary for the departments whose average salary is above the average payment of all instructors. ### answer: SELECT MIN(salary), dept_name FROM instructor GROUP BY dept_name HAVING AVG(salary) > (SELECT AVG(salary) FROM instructor) ### context: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) |
### question: Find the number of courses provided in each semester and year. ### answer: SELECT COUNT(*), semester, YEAR FROM SECTION GROUP BY semester, YEAR ### context: CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR) |
### question: Find the year which offers the largest number of courses. ### answer: SELECT YEAR FROM SECTION GROUP BY YEAR ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE SECTION (YEAR VARCHAR) |
### question: Find the year and semester when offers the largest number of courses. ### answer: SELECT semester, YEAR FROM SECTION GROUP BY semester, YEAR ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE SECTION (semester VARCHAR, YEAR VARCHAR) |
### question: Find the name of department has the highest amount of students? ### answer: SELECT dept_name FROM student GROUP BY dept_name ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE student (dept_name VARCHAR) |
### question: Find the total number of students in each department. ### answer: SELECT COUNT(*), dept_name FROM student GROUP BY dept_name ### context: CREATE TABLE student (dept_name VARCHAR) |
### question: Find the semester and year which has the least number of student taking any class. ### answer: SELECT semester, YEAR FROM takes GROUP BY semester, YEAR ORDER BY COUNT(*) LIMIT 1 ### context: CREATE TABLE takes (semester VARCHAR, YEAR VARCHAR) |
### question: What is the id of the instructor who advises of all students from History department? ### answer: SELECT i_id FROM advisor AS T1 JOIN student AS T2 ON T1.s_id = T2.id WHERE T2.dept_name = 'History' ### context: CREATE TABLE advisor (s_id VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR) |
### question: Find the name and salary of the instructors who are advisors of any student from History department? ### 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' ### 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) |
### question: Find the id of the courses that do not have any prerequisite? ### answer: SELECT course_id FROM course EXCEPT SELECT course_id FROM prereq ### context: CREATE TABLE prereq (course_id VARCHAR); CREATE TABLE course (course_id VARCHAR) |
### question: What is the title of the prerequisite class of International Finance course? ### 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') ### 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) |
### question: Find the title of course whose prerequisite is course Differential Geometry. ### 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') ### 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) |
### question: Find the names of students who have taken any course in the fall semester of year 2003. ### answer: SELECT name FROM student WHERE id IN (SELECT id FROM takes WHERE semester = 'Fall' AND 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) |
### question: What is the title of the course that was offered at building Chandler during the fall semester in the year of 2010? ### 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 ### context: CREATE TABLE course (title VARCHAR, course_id VARCHAR); CREATE TABLE SECTION (course_id VARCHAR) |
### question: Find the name of the instructors who taught C Programming course before. ### 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' ### context: CREATE TABLE teaches (id VARCHAR, course_id VARCHAR); CREATE TABLE course (course_id VARCHAR, title VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) |
### question: Find the name and salary of instructors who are advisors of the students from the Math department. ### 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' ### 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) |
### question: Find the name of instructors who are advisors of the students from the Math department, and sort the results by students' total credit. ### 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 ### 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) |
### question: What is the course title of the prerequisite of course Mobile Computing? ### 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') ### 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) |
### question: Find the name of instructor who is the advisor of the student who has the highest number of total credits. ### 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 ### 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) |
### question: Find the name of instructors who didn't teach any courses? ### answer: SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches) ### context: CREATE TABLE teaches (name VARCHAR, id VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR) |
### question: Find the id of instructors who didn't teach any courses? ### answer: SELECT id FROM instructor EXCEPT SELECT id FROM teaches ### context: CREATE TABLE teaches (id VARCHAR); CREATE TABLE instructor (id VARCHAR) |
### question: Find the names of instructors who didn't each any courses in any Spring semester. ### answer: SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches WHERE semester = 'Spring') ### context: CREATE TABLE teaches (name VARCHAR, id VARCHAR, semester VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR, semester VARCHAR) |
### question: Find the name of the department which has the highest average salary of professors. ### answer: SELECT dept_name FROM instructor GROUP BY dept_name ORDER BY AVG(salary) DESC LIMIT 1 ### context: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) |
### question: Find the number and averaged salary of all instructors who are in the department with the highest budget. ### 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 ### context: CREATE TABLE department (dept_name VARCHAR, budget VARCHAR); CREATE TABLE instructor (salary INTEGER, dept_name VARCHAR) |
### question: What is the title and credits of the course that is taught in the largest classroom (with the highest capacity)? ### 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) ### 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) |
### question: Find the name of students who didn't take any course from Biology department. ### 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') ### 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) |
### question: Find the total number of students and total number of instructors for each department. ### 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 ### context: CREATE TABLE department (dept_name VARCHAR); CREATE TABLE student (id VARCHAR, dept_name VARCHAR); CREATE TABLE instructor (dept_name VARCHAR, id VARCHAR) |
### question: Find the name of students who have taken the prerequisite course of the course with title International Finance. ### 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') ### 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) |
### question: Find the name and salary of instructors whose salary is below the average salary of the instructors in the Physics department. ### answer: SELECT name, salary FROM instructor WHERE salary < (SELECT AVG(salary) FROM instructor WHERE dept_name = 'Physics') ### context: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) |
### question: Find the name of students who took some course offered by Statistics department. ### 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' ### 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) |
### question: Find the building, room number, semester and year of all courses offered by Psychology department sorted by course titles. ### 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 ### 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) |
### question: Find the names of all instructors in computer science department ### answer: SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' ### context: CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR) |
### question: Find the names of all instructors in Comp. Sci. department with salary > 80000. ### answer: SELECT name FROM instructor WHERE dept_name = 'Comp. Sci.' AND salary > 80000 ### context: CREATE TABLE instructor (name VARCHAR, dept_name VARCHAR, salary VARCHAR) |
### question: Find the names of all instructors who have taught some course and the course_id. ### answer: SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID ### context: CREATE TABLE instructor (ID VARCHAR); CREATE TABLE teaches (ID VARCHAR) |
### question: Find the names of all instructors in the Art department who have taught some course and the course_id. ### answer: SELECT name, course_id FROM instructor AS T1 JOIN teaches AS T2 ON T1.ID = T2.ID WHERE T1.dept_name = 'Art' ### context: CREATE TABLE instructor (ID VARCHAR, dept_name VARCHAR); CREATE TABLE teaches (ID VARCHAR) |
### question: Find the names of all instructors whose name includes the substring “dar”. ### answer: SELECT name FROM instructor WHERE name LIKE '%dar%' ### context: CREATE TABLE instructor (name VARCHAR) |
### question: List in alphabetic order the names of all distinct instructors. ### answer: SELECT DISTINCT name FROM instructor ORDER BY name ### context: CREATE TABLE instructor (name VARCHAR) |
### question: Find courses that ran in Fall 2009 or in Spring 2010. ### answer: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 UNION SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010 ### context: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) |
### question: Find courses that ran in Fall 2009 and in Spring 2010. ### answer: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010 ### context: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) |
### question: Find courses that ran in Fall 2009 but not in Spring 2010. ### answer: SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 EXCEPT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010 ### context: CREATE TABLE SECTION (course_id VARCHAR, semester VARCHAR, YEAR VARCHAR) |
### question: Find the salaries of all distinct instructors that are less than the largest salary. ### answer: SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT MAX(salary) FROM instructor) ### context: CREATE TABLE instructor (salary INTEGER) |
### question: Find the total number of instructors who teach a course in the Spring 2010 semester. ### answer: SELECT COUNT(DISTINCT ID) FROM teaches WHERE semester = 'Spring' AND YEAR = 2010 ### context: CREATE TABLE teaches (ID VARCHAR, semester VARCHAR, YEAR VARCHAR) |
### question: Find the names and average salaries of all departments whose average salary is greater than 42000. ### answer: SELECT dept_name, AVG(salary) FROM instructor GROUP BY dept_name HAVING AVG(salary) > 42000 ### context: CREATE TABLE instructor (dept_name VARCHAR, salary INTEGER) |
### question: Find names of instructors with salary greater than that of some (at least one) instructor in the Biology department. ### answer: SELECT name FROM instructor WHERE salary > (SELECT MIN(salary) FROM instructor WHERE dept_name = 'Biology') ### context: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) |
### question: Find the names of all instructors whose salary is greater than the salary of all instructors in the Biology department. ### answer: SELECT name FROM instructor WHERE salary > (SELECT MAX(salary) FROM instructor WHERE dept_name = 'Biology') ### context: CREATE TABLE instructor (name VARCHAR, salary INTEGER, dept_name VARCHAR) |
### question: How many debates are there? ### answer: SELECT COUNT(*) FROM debate ### context: CREATE TABLE debate (Id VARCHAR) |
### question: List the venues of debates in ascending order of the number of audience. ### answer: SELECT Venue FROM debate ORDER BY Num_of_Audience ### context: CREATE TABLE debate (Venue VARCHAR, Num_of_Audience VARCHAR) |
### question: What are the date and venue of each debate? ### answer: SELECT Date, Venue FROM debate ### context: CREATE TABLE debate (Date VARCHAR, Venue VARCHAR) |
### question: List the dates of debates with number of audience bigger than 150 ### answer: SELECT Date FROM debate WHERE Num_of_Audience > 150 ### context: CREATE TABLE debate (Date VARCHAR, Num_of_Audience INTEGER) |
### question: Show the names of people aged either 35 or 36. ### answer: SELECT Name FROM people WHERE Age = 35 OR Age = 36 ### context: CREATE TABLE people (Name VARCHAR, Age VARCHAR) |
### question: What is the party of the youngest people? ### answer: SELECT Party FROM people ORDER BY Age LIMIT 1 ### context: CREATE TABLE people (Party VARCHAR, Age VARCHAR) |
### question: Show different parties of people along with the number of people in each party. ### answer: SELECT Party, COUNT(*) FROM people GROUP BY Party ### context: CREATE TABLE people (Party VARCHAR) |
### question: Show the party that has the most people. ### answer: SELECT Party FROM people GROUP BY Party ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE people (Party VARCHAR) |
### question: Show the distinct venues of debates ### answer: SELECT DISTINCT Venue FROM debate ### context: CREATE TABLE debate (Venue VARCHAR) |
### question: Show the names of people, and dates and venues of debates they are on the affirmative side. ### 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 ### 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) |
### 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. ### 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 ### 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) |
### question: Show the names of people that are on affirmative side of debates with number of audience bigger than 200. ### 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 ### 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) |
### question: Show the names of people and the number of times they have been on the affirmative side of debates. ### answer: SELECT T2.Name, COUNT(*) FROM debate_people AS T1 JOIN people AS T2 ON T1.Affirmative = T2.People_ID GROUP BY T2.Name ### context: CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE debate_people (Affirmative VARCHAR) |
### question: Show the names of people who have been on the negative side of debates at least twice. ### 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 ### context: CREATE TABLE debate_people (Negative VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) |
### question: List the names of people that have not been on the affirmative side of debates. ### answer: SELECT Name FROM people WHERE NOT People_id IN (SELECT Affirmative FROM debate_people) ### context: CREATE TABLE debate_people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR); CREATE TABLE people (Name VARCHAR, People_id VARCHAR, Affirmative VARCHAR) |
### question: List the names of all the customers in alphabetical order. ### answer: SELECT customer_details FROM customers ORDER BY customer_details ### context: CREATE TABLE customers (customer_details VARCHAR) |
### question: Find all the policy type codes associated with the customer "Dayana Robel" ### 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" ### context: CREATE TABLE customers (customer_id VARCHAR, customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR) |
### question: Which type of policy is most frequently used? Give me the policy type code. ### answer: SELECT policy_type_code FROM policies GROUP BY policy_type_code ORDER BY COUNT(*) DESC LIMIT 1 ### context: CREATE TABLE policies (policy_type_code VARCHAR) |
### question: Find all the policy types that are used by more than 2 customers. ### answer: SELECT policy_type_code FROM policies GROUP BY policy_type_code HAVING COUNT(*) > 2 ### context: CREATE TABLE policies (policy_type_code VARCHAR) |
### question: Find the total and average amount paid in claim headers. ### answer: SELECT SUM(amount_piad), AVG(amount_piad) FROM claim_headers ### context: CREATE TABLE claim_headers (amount_piad INTEGER) |
### question: Find the total amount claimed in the most recently created document. ### 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) ### 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) |
### question: What is the name of the customer who has made the largest amount of claim in a single claim? ### 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) ### 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) |
### question: What is the name of the customer who has made the minimum amount of payment in one claim? ### 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) ### 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) |
### question: Find the names of customers who have no policies associated. ### 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 ### context: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE customers (customer_details VARCHAR); CREATE TABLE policies (customer_id VARCHAR) |
### question: How many claim processing stages are there in total? ### answer: SELECT COUNT(*) FROM claims_processing_stages ### context: CREATE TABLE claims_processing_stages (Id VARCHAR) |
### question: What is the name of the claim processing stage that most of the claims are on? ### 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 ### context: CREATE TABLE claims_processing (claim_stage_id VARCHAR); CREATE TABLE claims_processing_stages (claim_status_name VARCHAR, claim_stage_id VARCHAR) |
### question: Find the names of customers whose name contains "Diana". ### answer: SELECT customer_details FROM customers WHERE customer_details LIKE "%Diana%" ### context: CREATE TABLE customers (customer_details VARCHAR) |
### question: Find the names of the customers who have an deputy policy. ### 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" ### context: CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR) |
### question: Find the names of customers who either have an deputy policy or uniformed policy. ### 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" ### context: CREATE TABLE policies (customer_id VARCHAR, policy_type_code VARCHAR); CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR) |
### question: Find the names of all the customers and staff members. ### answer: SELECT customer_details FROM customers UNION SELECT staff_details FROM staff ### context: CREATE TABLE staff (customer_details VARCHAR, staff_details VARCHAR); CREATE TABLE customers (customer_details VARCHAR, staff_details VARCHAR) |
### question: Find the number of records of each policy type and its type code. ### answer: SELECT policy_type_code, COUNT(*) FROM policies GROUP BY policy_type_code ### context: CREATE TABLE policies (policy_type_code VARCHAR) |
### question: Find the name of the customer that has been involved in the most policies. ### 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 ### context: CREATE TABLE customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE policies (customer_id VARCHAR) |
### question: What is the description of the claim status "Open"? ### answer: SELECT claim_status_description FROM claims_processing_stages WHERE claim_status_name = "Open" ### context: CREATE TABLE claims_processing_stages (claim_status_description VARCHAR, claim_status_name VARCHAR) |
### question: How many distinct claim outcome codes are there? ### answer: SELECT COUNT(DISTINCT claim_outcome_code) FROM claims_processing ### context: CREATE TABLE claims_processing (claim_outcome_code VARCHAR) |
### question: Which customer is associated with the latest policy? ### 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) ### 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) |
### question: Show the id, the date of account opened, the account name, and other account detail for all accounts. ### answer: SELECT account_id, date_account_opened, account_name, other_account_details FROM Accounts ### context: CREATE TABLE Accounts (account_id VARCHAR, date_account_opened VARCHAR, account_name VARCHAR, other_account_details VARCHAR) |
### question: Show the id, the account name, and other account details for all accounts by the customer with first name 'Meaghan'. ### 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' ### 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) |
### question: Show the account name and other account detail for all accounts by the customer with first name Meaghan and last name Keeling. ### 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" ### 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) |
### question: Show the first name and last name for the customer with account name 900. ### 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" ### context: CREATE TABLE Accounts (customer_id VARCHAR, account_name VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) |
### question: Show the unique first names, last names, and phone numbers for all customers with any account. ### 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 ### context: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, phone_number VARCHAR, customer_id VARCHAR) |
### question: Show customer ids who don't have an account. ### answer: SELECT customer_id FROM Customers EXCEPT SELECT customer_id FROM Accounts ### context: CREATE TABLE Customers (customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR) |
### question: How many accounts does each customer have? List the number and customer id. ### answer: SELECT COUNT(*), customer_id FROM Accounts GROUP BY customer_id ### context: CREATE TABLE Accounts (customer_id VARCHAR) |
### question: What is the customer id, first and last name with most number of accounts. ### 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 ### context: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) |
### question: Show id, first name and last name for all customers and the number of accounts. ### 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 ### context: CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR) |
### question: Show first name and id for all customers with at least 2 accounts. ### 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 ### context: CREATE TABLE Customers (customer_first_name VARCHAR, customer_id VARCHAR); CREATE TABLE Accounts (customer_id VARCHAR) |
### question: Show the number of customers for each gender. ### answer: SELECT gender, COUNT(*) FROM Customers GROUP BY gender ### context: CREATE TABLE Customers (gender VARCHAR) |
### question: How many transactions do we have? ### answer: SELECT COUNT(*) FROM Financial_transactions ### context: CREATE TABLE Financial_transactions (Id VARCHAR) |
### question: How many transaction does each account have? Show the number and account id. ### answer: SELECT COUNT(*), account_id FROM Financial_transactions ### context: CREATE TABLE Financial_transactions (account_id VARCHAR) |
### question: How many transaction does account with name 337 have? ### answer: SELECT COUNT(*) FROM Financial_transactions AS T1 JOIN Accounts AS T2 ON T1.account_id = T2.account_id WHERE T2.account_name = "337" ### context: CREATE TABLE Accounts (account_id VARCHAR, account_name VARCHAR); CREATE TABLE Financial_transactions (account_id VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.