question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what are the names of the channels that broadcast in both morning and night?
CREATE TABLE channel (name VARCHAR, channel_id VARCHAR); CREATE TABLE broadcast (channel_id VARCHAR, time_of_day VARCHAR)
{ "SQL_Query": "SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Morning' INTERSECT SELECT t1.name FROM channel AS t1 JOIN broadcast AS t2 ON t1.channel_id = t2.channel_id WHERE t2.time_of_day = 'Night'" }
how many programs are broadcast in each time section of the day?
CREATE TABLE broadcast (time_of_day VARCHAR)
{ "SQL_Query": "SELECT COUNT(*), time_of_day FROM broadcast GROUP BY time_of_day" }
find the number of different programs that are broadcast during night time.
CREATE TABLE broadcast (program_id VARCHAR, time_of_day VARCHAR)
{ "SQL_Query": "SELECT COUNT(DISTINCT program_id) FROM broadcast WHERE time_of_day = 'Night'" }
Find the names of programs that are never broadcasted in the morning.
CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE program (name VARCHAR)
{ "SQL_Query": "SELECT name FROM program EXCEPT SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Morning\"" }
find the program owners that have some programs in both morning and night time.
CREATE TABLE broadcast (program_id VARCHAR, Time_of_day VARCHAR); CREATE TABLE program (owner VARCHAR, program_id VARCHAR)
{ "SQL_Query": "SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Morning\" INTERSECT SELECT t1.owner FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id WHERE t2.Time_of_day = \"Night\"" }
List all program origins in the alphabetical order.
CREATE TABLE program (origin VARCHAR)
{ "SQL_Query": "SELECT origin FROM program ORDER BY origin" }
what is the number of different channel owners?
CREATE TABLE channel (OWNER VARCHAR)
{ "SQL_Query": "SELECT COUNT(DISTINCT OWNER) FROM channel" }
find the names of programs whose origin is not in Beijing.
CREATE TABLE program (name VARCHAR, origin VARCHAR)
{ "SQL_Query": "SELECT name FROM program WHERE origin <> 'Beijing'" }
What are the names of the channels owned by CCTV or HBS?
CREATE TABLE channel (name VARCHAR, OWNER VARCHAR)
{ "SQL_Query": "SELECT name FROM channel WHERE OWNER = 'CCTV' OR OWNER = 'HBS'" }
Find the total rating ratio for each channel owner.
CREATE TABLE channel (OWNER VARCHAR, Rating_in_percent INTEGER)
{ "SQL_Query": "SELECT SUM(Rating_in_percent), OWNER FROM channel GROUP BY OWNER" }
Find the name of the program that is broadcast most frequently.
CREATE TABLE program (name VARCHAR, program_id VARCHAR); CREATE TABLE broadcast (program_id VARCHAR)
{ "SQL_Query": "SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id GROUP BY t2.program_id ORDER BY COUNT(*) DESC LIMIT 1" }
How many courses are there in total?
CREATE TABLE COURSES (Id VARCHAR)
{ "SQL_Query": "SELECT COUNT(*) FROM COURSES" }
What are the descriptions of the courses with name "database"?
CREATE TABLE COURSES (course_description VARCHAR, course_name VARCHAR)
{ "SQL_Query": "SELECT course_description FROM COURSES WHERE course_name = \"database\"" }
What are the addresses of the course authors or tutors with personal name "Cathrine"
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, personal_name VARCHAR)
{ "SQL_Query": "SELECT address_line_1 FROM Course_Authors_and_Tutors WHERE personal_name = \"Cathrine\"" }
List the addresses of all the course authors or tutors.
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR)
{ "SQL_Query": "SELECT address_line_1 FROM Course_Authors_and_Tutors" }
List all the login names and family names of course author and tutors.
CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, family_name VARCHAR)
{ "SQL_Query": "SELECT login_name, family_name FROM Course_Authors_and_Tutors" }
List all the dates of enrollment and completion of students.
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR)
{ "SQL_Query": "SELECT date_of_enrolment, date_of_completion FROM Student_Course_Enrolment" }
How many distinct students are enrolled in courses?
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
{ "SQL_Query": "SELECT COUNT(DISTINCT student_id) FROM Student_Course_Enrolment" }
How many distinct courses are enrolled in by students?
CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
{ "SQL_Query": "SELECT COUNT(course_id) FROM Student_Course_Enrolment" }
Find the dates of the tests taken with result "Pass".
CREATE TABLE Student_Tests_Taken (date_test_taken VARCHAR, test_result VARCHAR)
{ "SQL_Query": "SELECT date_test_taken FROM Student_Tests_Taken WHERE test_result = \"Pass\"" }
How many tests have result "Fail"?
CREATE TABLE Student_Tests_Taken (test_result VARCHAR)
{ "SQL_Query": "SELECT COUNT(*) FROM Student_Tests_Taken WHERE test_result = \"Fail\"" }
What are the login names of the students with family name "Ward"?
CREATE TABLE Students (login_name VARCHAR, family_name VARCHAR)
{ "SQL_Query": "SELECT login_name FROM Students WHERE family_name = \"Ward\"" }
What are the dates of the latest logon of the students with family name "Jaskolski" or "Langosh"?
CREATE TABLE Students (date_of_latest_logon VARCHAR, family_name VARCHAR)
{ "SQL_Query": "SELECT date_of_latest_logon FROM Students WHERE family_name = \"Jaskolski\" OR family_name = \"Langosh\"" }
How many students have personal names that contain the word "son"?
CREATE TABLE Students (personal_name VARCHAR)
{ "SQL_Query": "SELECT COUNT(*) FROM Students WHERE personal_name LIKE \"%son%\"" }
List all the subject names.
CREATE TABLE SUBJECTS (subject_name VARCHAR)
{ "SQL_Query": "SELECT subject_name FROM SUBJECTS" }
List all the information about course authors and tutors in alphabetical order of the personal name.
CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR)
{ "SQL_Query": "SELECT * FROM Course_Authors_and_Tutors ORDER BY personal_name" }
List the personal names and family names of all the students in alphabetical order of family name.
CREATE TABLE Students (personal_name VARCHAR, family_name VARCHAR)
{ "SQL_Query": "SELECT personal_name, family_name FROM Students ORDER BY family_name" }
List each test result and its count in descending order of count.
CREATE TABLE Student_Tests_Taken (test_result VARCHAR)
{ "SQL_Query": "SELECT test_result, COUNT(*) FROM Student_Tests_Taken GROUP BY test_result ORDER BY COUNT(*) DESC" }
Find the login name of the course author that teaches the course with name "advanced database".
CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR, author_id VARCHAR)
{ "SQL_Query": "SELECT T1.login_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = \"advanced database\"" }
Find the addresses of the course authors who teach the course with name "operating system" or "data structure".
CREATE TABLE Courses (author_id VARCHAR, course_name VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR)
{ "SQL_Query": "SELECT T1.address_line_1 FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T2.course_name = \"operating system\" OR T2.course_name = \"data structure\"" }
Find the personal name, family name, and author ID of the course author that teaches the most courses.
CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR, family_name VARCHAR, author_id VARCHAR)
{ "SQL_Query": "SELECT T1.personal_name, T1.family_name, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id ORDER BY COUNT(*) DESC LIMIT 1" }
Find the addresses and author IDs of the course authors that teach at least two courses.
CREATE TABLE Courses (author_id VARCHAR); CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, author_id VARCHAR)
{ "SQL_Query": "SELECT T1.address_line_1, T2.author_id FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id GROUP BY T2.author_id HAVING COUNT(*) >= 2" }
Find the names of courses taught by the tutor who has personal name "Julio".
CREATE TABLE Course_Authors_and_Tutors (author_id VARCHAR, personal_name VARCHAR); CREATE TABLE Courses (course_name VARCHAR, author_id VARCHAR)
{ "SQL_Query": "SELECT T2.course_name FROM Course_Authors_and_Tutors AS T1 JOIN Courses AS T2 ON T1.author_id = T2.author_id WHERE T1.personal_name = \"Julio\"" }
Find the names and descriptions of courses that belong to the subject named "Computer Science".
CREATE TABLE Courses (course_name VARCHAR, course_description VARCHAR, subject_id VARCHAR); CREATE TABLE Subjects (subject_id VARCHAR, subject_name VARCHAR)
{ "SQL_Query": "SELECT T1.course_name, T1.course_description FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id WHERE T2.subject_name = \"Computer Science\"" }
Find the subject ID, subject name, and the corresponding number of available courses for each subject.
CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id VARCHAR)
{ "SQL_Query": "SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id" }
Find the subject ID, name of subject and the corresponding number of courses for each subject, and sort by the course count in ascending order.
CREATE TABLE Courses (subject_id VARCHAR); CREATE TABLE Subjects (subject_name VARCHAR, subject_id VARCHAR)
{ "SQL_Query": "SELECT T1.subject_id, T2.subject_name, COUNT(*) FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id GROUP BY T1.subject_id ORDER BY COUNT(*)" }
What is the date of enrollment of the course named "Spanish"?
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, course_id VARCHAR); CREATE TABLE Courses (course_id VARCHAR, course_name VARCHAR)
{ "SQL_Query": "SELECT T2.date_of_enrolment FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id WHERE T1.course_name = \"Spanish\"" }
What is the name of the course that has the most student enrollment?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
{ "SQL_Query": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name ORDER BY COUNT(*) DESC LIMIT 1" }
What are the names of the courses that have exactly 1 student enrollment?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
{ "SQL_Query": "SELECT T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) = 1" }
What are the descriptions and names of the courses that have student enrollment bigger than 2?
CREATE TABLE Student_Course_Enrolment (course_id VARCHAR); CREATE TABLE Courses (course_description VARCHAR, course_name VARCHAR, course_id VARCHAR)
{ "SQL_Query": "SELECT T1.course_description, T1.course_name FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name HAVING COUNT(*) > 2" }
What is the name of each course and the corresponding number of student enrollment?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Course_Enrolment (course_id VARCHAR)
{ "SQL_Query": "SELECT T1.course_name, COUNT(*) FROM Courses AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.course_id = T2.course_id GROUP BY T1.course_name" }
What are the enrollment dates of all the tests that have result "Pass"?
CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, registration_id VARCHAR)
{ "SQL_Query": "SELECT T1.date_of_enrolment FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = \"Pass\"" }
What are the completion dates of all the tests that have result "Fail"?
CREATE TABLE Student_Tests_Taken (registration_id VARCHAR, test_result VARCHAR); CREATE TABLE Student_Course_Enrolment (date_of_completion VARCHAR, registration_id VARCHAR)
{ "SQL_Query": "SELECT T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = \"Fail\"" }
List the dates of enrollment and completion of the student with personal name "Karson".
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, personal_name VARCHAR)
{ "SQL_Query": "SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.personal_name = \"Karson\"" }
List the dates of enrollment and completion of the student with family name "Zieme" and personal name "Bernie".
CREATE TABLE Student_Course_Enrolment (date_of_enrolment VARCHAR, date_of_completion VARCHAR, student_id VARCHAR); CREATE TABLE Students (student_id VARCHAR, family_name VARCHAR, personal_name VARCHAR)
{ "SQL_Query": "SELECT T1.date_of_enrolment, T1.date_of_completion FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id WHERE T2.family_name = \"Zieme\" AND T2.personal_name = \"Bernie\"" }
Find the student ID and login name of the student with the most course enrollments
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (login_name VARCHAR, student_id VARCHAR)
{ "SQL_Query": "SELECT T1.student_id, T2.login_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id ORDER BY COUNT(*) DESC LIMIT 1" }
Find the student ID and personal name of the student with at least two enrollments.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
{ "SQL_Query": "SELECT T1.student_id, T2.personal_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) >= 2" }
Find the student ID and middle name for all the students with at most two enrollments.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (middle_name VARCHAR, student_id VARCHAR)
{ "SQL_Query": "SELECT T1.student_id, T2.middle_name FROM Student_Course_Enrolment AS T1 JOIN Students AS T2 ON T1.student_id = T2.student_id GROUP BY T1.student_id HAVING COUNT(*) <= 2" }
Find the personal names of students not enrolled in any course.
CREATE TABLE Student_Course_Enrolment (student_id VARCHAR); CREATE TABLE Students (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR, student_id VARCHAR)
{ "SQL_Query": "SELECT personal_name FROM Students EXCEPT SELECT T1.personal_name FROM Students AS T1 JOIN Student_Course_Enrolment AS T2 ON T1.student_id = T2.student_id" }
How many students did not have any course enrollment?
CREATE TABLE Students (student_id VARCHAR); CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
{ "SQL_Query": "SELECT COUNT(*) FROM Students WHERE NOT student_id IN (SELECT student_id FROM Student_Course_Enrolment)" }
Find the common login name of course authors and students.
CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR); CREATE TABLE Students (login_name VARCHAR)
{ "SQL_Query": "SELECT login_name FROM Course_Authors_and_Tutors INTERSECT SELECT login_name FROM Students" }
Find the common personal name of course authors and students.
CREATE TABLE Course_Authors_and_Tutors (personal_name VARCHAR); CREATE TABLE Students (personal_name VARCHAR)
{ "SQL_Query": "SELECT personal_name FROM Course_Authors_and_Tutors INTERSECT SELECT personal_name FROM Students" }
Which claims caused more than 2 settlements or have the maximum claim value? List the date the claim was made and the claim id.
CREATE TABLE Settlements (Claim_id VARCHAR); CREATE TABLE Claims (Amount_Claimed INTEGER); CREATE TABLE Claims (Date_Claim_Made VARCHAR, Claim_id VARCHAR, Amount_Claimed INTEGER)
{ "SQL_Query": "SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.Claim_id HAVING COUNT(*) > 2 UNION SELECT T1.Date_Claim_Made, T1.Claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id WHERE T1.Amount_Claimed = (SELECT MAX(Amount_Claimed) FROM Claims)" }
Which customer had at least 2 policies but did not file any claims? List the customer details and id.
CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (customer_id VARCHAR, policy_id VARCHAR); CREATE TABLE Claims (policy_id VARCHAR)
{ "SQL_Query": "SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id GROUP BY T1.customer_id HAVING COUNT(*) >= 2 EXCEPT SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.customer_id JOIN Claims AS T3 ON T2.policy_id = T3.policy_id" }
List the method, date and amount of all the payments, in ascending order of date.
CREATE TABLE Payments (Payment_Method_Code VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR)
{ "SQL_Query": "SELECT Payment_Method_Code, Date_Payment_Made, Amount_Payment FROM Payments ORDER BY Date_Payment_Made" }
Among all the claims, what is the settlement amount of the claim with the largest claim amount? List both the settlement amount and claim amount.
CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)
{ "SQL_Query": "SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Claimed DESC LIMIT 1" }
Among all the claims, what is the amount claimed in the claim with the least amount settled? List both the settlement amount and claim amount.
CREATE TABLE Claims (Amount_Settled VARCHAR, Amount_Claimed VARCHAR)
{ "SQL_Query": "SELECT Amount_Settled, Amount_Claimed FROM Claims ORDER BY Amount_Settled LIMIT 1" }
Among all the claims, which claims have a claimed amount larger than the average? List the date the claim was made and the date it was settled.
CREATE TABLE Claims (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR, Amount_Claimed INTEGER)
{ "SQL_Query": "SELECT Date_Claim_Made, Date_Claim_Settled FROM Claims WHERE Amount_Claimed > (SELECT AVG(Amount_Claimed) FROM Claims)" }
Among all the claims, which settlements have a claimed amount that is no more than the average? List the claim start date.
CREATE TABLE Claims (Date_Claim_Made VARCHAR, Amount_Settled INTEGER)
{ "SQL_Query": "SELECT Date_Claim_Made FROM Claims WHERE Amount_Settled <= (SELECT AVG(Amount_Settled) FROM Claims)" }
How many settlements does each claim correspond to? List the claim id and the number of settlements.
CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (Claim_id VARCHAR, claim_id VARCHAR)
{ "SQL_Query": "SELECT T1.Claim_id, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id" }
Which claim incurred the most number of settlements? List the claim id, the date the claim was made, and the number.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR); CREATE TABLE Settlements (claim_id VARCHAR)
{ "SQL_Query": "SELECT T1.claim_id, T1.date_claim_made, COUNT(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY COUNT(*) DESC LIMIT 1" }
How many settlements were made on the claim with the most recent claim settlement date? List the number and the claim id.
CREATE TABLE Settlements (claim_id VARCHAR); CREATE TABLE Claims (claim_id VARCHAR, Date_Claim_Settled VARCHAR)
{ "SQL_Query": "SELECT COUNT(*), T1.claim_id FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id ORDER BY T1.Date_Claim_Settled DESC LIMIT 1" }
Of all the claims, what was the earliest date when any claim was made?
CREATE TABLE Claims (Date_Claim_Made VARCHAR)
{ "SQL_Query": "SELECT Date_Claim_Made FROM Claims ORDER BY Date_Claim_Made LIMIT 1" }
What is the total amount of settlement made for all the settlements?
CREATE TABLE Settlements (Amount_Settled INTEGER)
{ "SQL_Query": "SELECT SUM(Amount_Settled) FROM Settlements" }
Who are the customers that had more than 1 policy? List the customer details and id.
CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR, Customer_id VARCHAR); CREATE TABLE Customer_Policies (Customer_id VARCHAR)
{ "SQL_Query": "SELECT T1.customer_details, T1.customer_id FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.Customer_id = T2.Customer_id GROUP BY T1.customer_id HAVING COUNT(*) > 1" }
What are the claim dates and settlement dates of all the settlements?
CREATE TABLE Settlements (Date_Claim_Made VARCHAR, Date_Claim_Settled VARCHAR)
{ "SQL_Query": "SELECT Date_Claim_Made, Date_Claim_Settled FROM Settlements" }
What is the most popular payment method?
CREATE TABLE Payments (Payment_Method_Code VARCHAR)
{ "SQL_Query": "SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) DESC LIMIT 1" }
With which kind of payment method were the least number of payments processed?
CREATE TABLE Payments (Payment_Method_Code VARCHAR)
{ "SQL_Query": "SELECT Payment_Method_Code FROM Payments GROUP BY Payment_Method_Code ORDER BY COUNT(*) LIMIT 1" }
What is the total amount of payment?
CREATE TABLE Payments (Amount_Payment INTEGER)
{ "SQL_Query": "SELECT SUM(Amount_Payment) FROM Payments" }
What are all the distinct details of the customers?
CREATE TABLE Customers (customer_details VARCHAR)
{ "SQL_Query": "SELECT DISTINCT customer_details FROM Customers" }
Which kind of policy type was chosen by the most customers?
CREATE TABLE Customer_Policies (Policy_Type_Code VARCHAR)
{ "SQL_Query": "SELECT Policy_Type_Code FROM Customer_Policies GROUP BY Policy_Type_Code ORDER BY COUNT(*) DESC LIMIT 1" }
How many settlements are there in total?
CREATE TABLE Settlements (Id VARCHAR)
{ "SQL_Query": "SELECT COUNT(*) FROM Settlements" }
Which Payments were processed with Visa? List the payment Id, the date and the amount.
CREATE TABLE Payments (Payment_ID VARCHAR, Date_Payment_Made VARCHAR, Amount_Payment VARCHAR, Payment_Method_Code VARCHAR)
{ "SQL_Query": "SELECT Payment_ID, Date_Payment_Made, Amount_Payment FROM Payments WHERE Payment_Method_Code = 'Visa'" }
List the details of the customers who do not have any policies.
CREATE TABLE Customer_Policies (customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_details VARCHAR)
{ "SQL_Query": "SELECT customer_details FROM Customers EXCEPT SELECT T1.customer_details FROM Customers AS T1 JOIN Customer_Policies AS T2 ON T1.customer_id = T2.customer_id" }
List the date the claim was made, the date it was settled and the amount settled for all the claims which had exactly one settlement.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR, Date_Claim_Settled VARCHAR, Claim_id VARCHAR); CREATE TABLE Settlements (Claim_id VARCHAR)
{ "SQL_Query": "SELECT T1.claim_id, T1.date_claim_made, T1.Date_Claim_Settled FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.claim_id HAVING COUNT(*) = 1" }
Find the total claimed amount of all the claims.
CREATE TABLE Claims (Amount_Claimed INTEGER)
{ "SQL_Query": "SELECT SUM(Amount_Claimed) FROM Claims" }
Which department has the largest number of employees?
CREATE TABLE department (name VARCHAR, departmentID VARCHAR)
{ "SQL_Query": "SELECT name FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) DESC LIMIT 1" }
What is the employee id of the head whose department has the least number of employees?
CREATE TABLE department (head VARCHAR, departmentID VARCHAR)
{ "SQL_Query": "SELECT head FROM department GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1" }
what is the name and position of the head whose department has least number of employees?
CREATE TABLE department (head VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, EmployeeID VARCHAR)
{ "SQL_Query": "SELECT T2.name, T2.position FROM department AS T1 JOIN physician AS T2 ON T1.head = T2.EmployeeID GROUP BY departmentID ORDER BY COUNT(departmentID) LIMIT 1" }
What are names of patients who made an appointment?
CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)
{ "SQL_Query": "SELECT name FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn" }
what are name and phone number of patients who had more than one appointment?
CREATE TABLE appointment (patient VARCHAR); CREATE TABLE patient (ssn VARCHAR)
{ "SQL_Query": "SELECT name, phone FROM appointment AS T1 JOIN patient AS T2 ON T1.patient = T2.ssn GROUP BY T1.patient HAVING COUNT(*) > 1" }
Find the id of the appointment with the most recent start date?
CREATE TABLE appointment (appointmentid VARCHAR, START VARCHAR)
{ "SQL_Query": "SELECT appointmentid FROM appointment ORDER BY START DESC LIMIT 1" }
List the name of physicians who took some appointment.
CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
{ "SQL_Query": "SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID" }
List the name of physicians who never took any appointment.
CREATE TABLE physician (name VARCHAR); CREATE TABLE appointment (Physician VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
{ "SQL_Query": "SELECT name FROM physician EXCEPT SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID" }
Find the names of all physicians and their primary affiliated departments' names.
CREATE TABLE department (name VARCHAR, DepartmentID VARCHAR); CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, PrimaryAffiliation VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
{ "SQL_Query": "SELECT T1.name, T3.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T2.PrimaryAffiliation = 1" }
What is the name of the patient who made the most recent appointment?
CREATE TABLE patient (name VARCHAR, ssn VARCHAR); CREATE TABLE appointment (patient VARCHAR, start VARCHAR)
{ "SQL_Query": "SELECT T1.name FROM patient AS T1 JOIN appointment AS T2 ON T1.ssn = T2.patient ORDER BY T2.start DESC LIMIT 1" }
How many patients stay in room 112?
CREATE TABLE stay (patient VARCHAR, room VARCHAR)
{ "SQL_Query": "SELECT COUNT(patient) FROM stay WHERE room = 112" }
How many patients' prescriptions are made by physician John Dorian?
CREATE TABLE patient (SSN VARCHAR); CREATE TABLE prescribes (patient VARCHAR, physician VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT COUNT(T1.SSN) FROM patient AS T1 JOIN prescribes AS T2 ON T1.SSN = T2.patient JOIN physician AS T3 ON T2.physician = T3.employeeid WHERE T3.name = \"John Dorian\"" }
Find the name of medication used on the patient who stays in room 111?
CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (name VARCHAR, Code VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE stay (Patient VARCHAR)
{ "SQL_Query": "SELECT T4.name FROM stay AS T1 JOIN patient AS T2 ON T1.Patient = T2.SSN JOIN Prescribes AS T3 ON T3.Patient = T2.SSN JOIN Medication AS T4 ON T3.Medication = T4.Code WHERE room = 111" }
Find the patient who most recently stayed in room 111.
CREATE TABLE stay (patient VARCHAR, room VARCHAR, staystart VARCHAR)
{ "SQL_Query": "SELECT patient FROM stay WHERE room = 111 ORDER BY staystart DESC LIMIT 1" }
What is the name of the nurse has the most appointments?
CREATE TABLE nurse (name VARCHAR, employeeid VARCHAR); CREATE TABLE appointment (prepnurse VARCHAR)
{ "SQL_Query": "SELECT T1.name FROM nurse AS T1 JOIN appointment AS T2 ON T1.employeeid = T2.prepnurse GROUP BY T1.employeeid ORDER BY COUNT(*) DESC LIMIT 1" }
How many patients do each physician take care of? List their names and number of patients they take care of.
CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
{ "SQL_Query": "SELECT T1.name, COUNT(*) FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid" }
Find the name of physicians who are in charge of more than one patient.
CREATE TABLE patient (PCP VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
{ "SQL_Query": "SELECT T1.name FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid HAVING COUNT(*) > 1" }
Find the number of rooms located on each block floor.
CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockfloor VARCHAR, blockcode VARCHAR)
{ "SQL_Query": "SELECT COUNT(*), T1.blockfloor FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockfloor" }
Find the number of rooms for different block code?
CREATE TABLE room (blockfloor VARCHAR, blockcode VARCHAR); CREATE TABLE BLOCK (blockcode VARCHAR, blockfloor VARCHAR)
{ "SQL_Query": "SELECT COUNT(*), T1.blockcode FROM BLOCK AS T1 JOIN room AS T2 ON T1.blockfloor = T2.blockfloor AND T1.blockcode = T2.blockcode GROUP BY T1.blockcode" }
What are the unique block codes that have available rooms?
CREATE TABLE room (blockcode VARCHAR, unavailable VARCHAR)
{ "SQL_Query": "SELECT DISTINCT blockcode FROM room WHERE unavailable = 0" }
How many different types of rooms are there?
CREATE TABLE room (roomtype VARCHAR)
{ "SQL_Query": "SELECT COUNT(DISTINCT roomtype) FROM room" }
What is the names of the physicians who prescribe medication Thesisin?
CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE medication (code VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT DISTINCT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.name = \"Thesisin\"" }
Find the name and position of physicians who prescribe some medication whose brand is X?
CREATE TABLE medication (code VARCHAR, Brand VARCHAR); CREATE TABLE prescribes (physician VARCHAR, medication VARCHAR); CREATE TABLE physician (name VARCHAR, position VARCHAR, employeeid VARCHAR)
{ "SQL_Query": "SELECT DISTINCT T1.name, T1.position FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.Brand = \"X\"" }
Find the number of medications prescribed for each brand.
CREATE TABLE medication (name VARCHAR, brand VARCHAR, code VARCHAR); CREATE TABLE prescribes (medication VARCHAR)
{ "SQL_Query": "SELECT COUNT(*), T1.name FROM medication AS T1 JOIN prescribes AS T2 ON T1.code = T2.medication GROUP BY T1.brand" }