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