training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE physician (name VARCHAR, POSITION VARCHAR)
###human: Find the name of physicians whose position title contains the word 'senior'.
###assistant: SELECT name FROM physician WHERE POSITION LIKE '%senior%' |
###context:CREATE TABLE undergoes (patient VARCHAR, dateundergoes VARCHAR)
###human: Find the patient who has the most recent undergoing treatment?
###assistant: SELECT patient FROM undergoes ORDER BY dateundergoes LIMIT 1 |
###context:CREATE TABLE undergoes (patient VARCHAR, Stay VARCHAR); CREATE TABLE stay (StayID VARCHAR, room VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR)
###human: Find the names of all patients who have an undergoing treatment and are staying in room 111.
###assistant: SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN patient AS T2 ON T1.patient = T2.SSN JOIN stay AS T3 ON T1.Stay = T3.StayID WHERE T3.room = 111 |
###context:CREATE TABLE nurse (name VARCHAR)
###human: List the names of all distinct nurses ordered by alphabetical order?
###assistant: SELECT DISTINCT name FROM nurse ORDER BY name |
###context:CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)
###human: Find the names of nurses who are nursing an undergoing treatment.
###assistant: SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN nurse AS T2 ON T1.AssistingNurse = T2.EmployeeID |
###context:CREATE TABLE medication (name VARCHAR)
###human: List the names of all distinct medications, ordered in an alphabetical order.
###assistant: SELECT DISTINCT name FROM medication ORDER BY name |
###context:CREATE TABLE prescribes (physician VARCHAR, dose VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR)
###human: What are the names of the physician who prescribed the highest dose?
###assistant: SELECT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician ORDER BY T2.dose DESC LIMIT 1 |
###context:CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, primaryaffiliation VARCHAR)
###human: List the physicians' employee ids together with their primary affiliation departments' ids.
###assistant: SELECT physician, department FROM affiliated_with WHERE primaryaffiliation = 1 |
###context:CREATE TABLE affiliated_with (department VARCHAR); CREATE TABLE department (name VARCHAR, departmentid VARCHAR)
###human: List the names of departments where some physicians are primarily affiliated with.
###assistant: SELECT DISTINCT T2.name FROM affiliated_with AS T1 JOIN department AS T2 ON T1.department = T2.departmentid WHERE PrimaryAffiliation = 1 |
###context:CREATE TABLE on_call (nurse VARCHAR, blockfloor VARCHAR, blockcode VARCHAR)
###human: What nurses are on call with block floor 1 and block code 1? Tell me their names.
###assistant: SELECT nurse FROM on_call WHERE blockfloor = 1 AND blockcode = 1 |
###context:CREATE TABLE procedures (cost INTEGER)
###human: What are the highest cost, lowest cost and average cost of procedures?
###assistant: SELECT MAX(cost), MIN(cost), AVG(cost) FROM procedures |
###context:CREATE TABLE procedures (name VARCHAR, cost VARCHAR)
###human: List the name and cost of all procedures sorted by the cost from the highest to the lowest.
###assistant: SELECT name, cost FROM procedures ORDER BY cost DESC |
###context:CREATE TABLE procedures (name VARCHAR, cost VARCHAR)
###human: Find the three most expensive procedures.
###assistant: SELECT name FROM procedures ORDER BY cost LIMIT 3 |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost INTEGER)
###human: Find the physicians who are trained in a procedure that costs more than 5000.
###assistant: SELECT T1.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T3.cost > 5000 |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost VARCHAR)
###human: Find the physician who was trained in the most expensive procedure?
###assistant: SELECT T1.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment ORDER BY T3.cost DESC LIMIT 1 |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (cost INTEGER, code VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR)
###human: What is the average cost of procedures that physician John Wen was trained in?
###assistant: SELECT AVG(T3.cost) FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen" |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)
###human: Find the names of procedures which physician John Wen was trained in.
###assistant: SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen" |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)
###human: Find all procedures which cost more than 1000 or which physician John Wen was trained in.
###assistant: SELECT name FROM procedures WHERE cost > 1000 UNION SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen" |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)
###human: Find the names of all procedures which cost more than 1000 but which physician John Wen was not trained in?
###assistant: SELECT name FROM procedures WHERE cost > 1000 EXCEPT SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen" |
###context:CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (name VARCHAR, cost INTEGER); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR)
###human: Find the names of all procedures such that the cost is less than 5000 and physician John Wen was trained in.
###assistant: SELECT name FROM procedures WHERE cost < 5000 INTERSECT SELECT T3.name FROM physician AS T1 JOIN trained_in AS T2 ON T1.employeeid = T2.physician JOIN procedures AS T3 ON T3.code = T2.treatment WHERE T1.name = "John Wen" |
###context:CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
###human: Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.
###assistant: SELECT T1.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 T3.name = 'Surgery' INTERSECT SELECT T1.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 T3.name = 'Psychiatry' |
###context:CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
###human: Find the name of physicians who are affiliated with Surgery or Psychiatry department.
###assistant: SELECT T1.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 T3.name = 'Surgery' OR T3.name = 'Psychiatry' |
###context:CREATE TABLE Prescribes (Patient VARCHAR, Medication VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR); CREATE TABLE patient (name VARCHAR)
###human: Find the names of patients who are not using the medication of Procrastin-X.
###assistant: SELECT name FROM patient EXCEPT SELECT T1.name FROM patient AS T1 JOIN Prescribes AS T2 ON T2.Patient = T1.SSN JOIN Medication AS T3 ON T2.Medication = T3.Code WHERE T3.name = 'Procrastin-X' |
###context:CREATE TABLE Prescribes (patient VARCHAR, Medication VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR)
###human: Find the number of patients who are not using the medication of Procrastin-X.
###assistant: SELECT COUNT(*) FROM patient WHERE NOT SSN IN (SELECT T1.patient FROM Prescribes AS T1 JOIN Medication AS T2 ON T1.Medication = T2.Code WHERE T2.name = 'Procrastin-X') |
###context:CREATE TABLE appointment (Id VARCHAR)
###human: How many appointments are there?
###assistant: SELECT COUNT(*) FROM appointment |
###context:CREATE TABLE on_call (nurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR)
###human: Find the names of nurses who are on call.
###assistant: SELECT DISTINCT T1.name FROM nurse AS T1 JOIN on_call AS T2 ON T1.EmployeeID = T2.nurse |
###context:CREATE TABLE ship (Id VARCHAR)
###human: How many ships are there?
###assistant: SELECT COUNT(*) FROM ship |
###context:CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)
###human: List the name of ships in ascending order of tonnage.
###assistant: SELECT Name FROM ship ORDER BY Tonnage |
###context:CREATE TABLE ship (TYPE VARCHAR, Nationality VARCHAR)
###human: What are the type and nationality of ships?
###assistant: SELECT TYPE, Nationality FROM ship |
###context:CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)
###human: List the name of ships whose nationality is not "United States".
###assistant: SELECT Name FROM ship WHERE Nationality <> "United States" |
###context:CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR)
###human: Show the name of ships whose nationality is either United States or United Kingdom.
###assistant: SELECT Name FROM ship WHERE Nationality = "United States" OR Nationality = "United Kingdom" |
###context:CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR)
###human: What is the name of the ship with the largest tonnage?
###assistant: SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1 |
###context:CREATE TABLE ship (TYPE VARCHAR)
###human: Show different types of ships and the number of ships of each type.
###assistant: SELECT TYPE, COUNT(*) FROM ship GROUP BY TYPE |
###context:CREATE TABLE ship (TYPE VARCHAR)
###human: Please show the most common type of ships.
###assistant: SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE ship (Nationality VARCHAR)
###human: List the nations that have more than two ships.
###assistant: SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2 |
###context:CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)
###human: Show different types of ships and the average tonnage of ships of each type.
###assistant: SELECT TYPE, AVG(Tonnage) FROM ship GROUP BY TYPE |
###context:CREATE TABLE mission (Code VARCHAR, Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)
###human: Show codes and fates of missions, and names of ships involved.
###assistant: SELECT T1.Code, T1.Fate, T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID |
###context:CREATE TABLE mission (Ship_ID VARCHAR, Launched_Year INTEGER); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)
###human: Show names of ships involved in a mission launched after 1928.
###assistant: SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928 |
###context:CREATE TABLE mission (Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Ship_ID VARCHAR, Nationality VARCHAR)
###human: Show the distinct fate of missions that involve ships with nationality "United States"
###assistant: SELECT DISTINCT T1.Fate FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T2.Nationality = "United States" |
###context:CREATE TABLE mission (Name VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR)
###human: List the name of ships that are not involved in any mission
###assistant: SELECT Name FROM ship WHERE NOT Ship_ID IN (SELECT Ship_ID FROM mission) |
###context:CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER)
###human: Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000.
###assistant: SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000 |
###context:CREATE TABLE list (Id VARCHAR)
###human: Find the number of students in total.
###assistant: SELECT COUNT(*) FROM list |
###context:CREATE TABLE list (lastname VARCHAR, classroom VARCHAR)
###human: Find the last names of students studying in room 111.
###assistant: SELECT lastname FROM list WHERE classroom = 111 |
###context:CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)
###human: Find the first names of students studying in room 108.
###assistant: SELECT firstname FROM list WHERE classroom = 108 |
###context:CREATE TABLE list (firstname VARCHAR, classroom VARCHAR)
###human: What are the first names of students studying in room 107?
###assistant: SELECT DISTINCT firstname FROM list WHERE classroom = 107 |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: For each classroom report the grade that is taught in it. Report just the classroom number and the grade number.
###assistant: SELECT DISTINCT classroom, grade FROM list |
###context:CREATE TABLE list (grade VARCHAR, classroom VARCHAR)
###human: Which grade is studying in classroom 103?
###assistant: SELECT DISTINCT grade FROM list WHERE classroom = 103 |
###context:CREATE TABLE list (grade VARCHAR, classroom VARCHAR)
###human: Find the grade studying in room 105.
###assistant: SELECT DISTINCT grade FROM list WHERE classroom = 105 |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: Which classrooms are used by grade 4?
###assistant: SELECT DISTINCT classroom FROM list WHERE grade = 4 |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: Which classrooms are used by grade 5?
###assistant: SELECT DISTINCT classroom FROM list WHERE grade = 5 |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)
###human: Find the last names of the teachers that teach fifth grade.
###assistant: SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5 |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)
###human: Find the first names of the teachers that teach first grade.
###assistant: SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1 |
###context:CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR)
###human: Find the first names of all the teachers that teach in classroom 110.
###assistant: SELECT firstname FROM teachers WHERE classroom = 110 |
###context:CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR)
###human: Find the last names of teachers teaching in classroom 109.
###assistant: SELECT lastname FROM teachers WHERE classroom = 109 |
###context:CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR)
###human: Report the first name and last name of all the teachers.
###assistant: SELECT DISTINCT firstname, lastname FROM teachers |
###context:CREATE TABLE list (firstname VARCHAR, lastname VARCHAR)
###human: Report the first name and last name of all the students.
###assistant: SELECT DISTINCT firstname, lastname FROM list |
###context:CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find all students taught by OTHA MOYER. Output the first and last names of the students.
###assistant: SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER" |
###context:CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find all students taught by MARROTTE KIRK. Output first and last names of students.
###assistant: SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "MARROTTE" AND T2.lastname = "KIRK" |
###context:CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find the first and last name of all the teachers that teach EVELINA BROMLEY.
###assistant: SELECT T2.firstname, T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "EVELINA" AND T1.lastname = "BROMLEY" |
###context:CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find the last names of all the teachers that teach GELL TAMI.
###assistant: SELECT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "GELL" AND T1.lastname = "TAMI" |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: How many students does LORIA ONDERSMA teaches?
###assistant: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA" |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: How many students does KAWA GORDON teaches?
###assistant: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "KAWA" AND T2.lastname = "GORDON" |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find the number of students taught by TARRING LEIA.
###assistant: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "TARRING" AND T2.lastname = "LEIA" |
###context:CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: How many teachers does the student named CHRISSY NABOZNY have?
###assistant: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "CHRISSY" AND T1.lastname = "NABOZNY" |
###context:CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: How many teachers does the student named MADLOCK RAY have?
###assistant: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "MADLOCK" AND T1.lastname = "RAY" |
###context:CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR)
###human: Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names.
###assistant: SELECT DISTINCT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 1 EXCEPT SELECT T1.firstname, T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "OTHA" AND T2.lastname = "MOYER" |
###context:CREATE TABLE list (lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, lastname VARCHAR, firstname VARCHAR)
###human: Find the last names of the students in third grade that are not taught by COVIN JEROME.
###assistant: SELECT DISTINCT T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.grade = 3 AND T2.firstname <> "COVIN" AND T2.lastname <> "JEROME" |
###context:CREATE TABLE list (grade VARCHAR, classroom VARCHAR)
###human: For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade.
###assistant: SELECT grade, COUNT(DISTINCT classroom), COUNT(*) FROM list GROUP BY grade |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: For each classroom, report the classroom number and the number of grades using it.
###assistant: SELECT classroom, COUNT(DISTINCT grade) FROM list GROUP BY classroom |
###context:CREATE TABLE list (classroom VARCHAR)
###human: Which classroom has the most students?
###assistant: SELECT classroom FROM list GROUP BY classroom ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE list (classroom VARCHAR)
###human: Report the number of students in each classroom.
###assistant: SELECT classroom, COUNT(*) FROM list GROUP BY classroom |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: For each grade 0 classroom, report the total number of students.
###assistant: SELECT classroom, COUNT(*) FROM list WHERE grade = "0" GROUP BY classroom |
###context:CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
###human: Report the total number of students for each fourth-grade classroom.
###assistant: SELECT classroom, COUNT(*) FROM list WHERE grade = "4" GROUP BY classroom |
###context:CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR)
###human: Find the name of the teacher who teaches the largest number of students.
###assistant: SELECT T2.firstname, T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom GROUP BY T2.firstname, T2.lastname ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE list (classroom VARCHAR)
###human: Find the number of students in one classroom.
###assistant: SELECT COUNT(*), classroom FROM list GROUP BY classroom |
###context:CREATE TABLE company (Headquarters VARCHAR)
###human: How many companies are headquartered in the US?
###assistant: SELECT COUNT(*) FROM company WHERE Headquarters = 'USA' |
###context:CREATE TABLE company (Name VARCHAR, Sales_in_Billion VARCHAR)
###human: List the names of companies by ascending number of sales.
###assistant: SELECT Name FROM company ORDER BY Sales_in_Billion |
###context:CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)
###human: What are the headquarters and industries of all companies?
###assistant: SELECT Headquarters, Industry FROM company |
###context:CREATE TABLE company (Name VARCHAR, Industry VARCHAR)
###human: Show the names of companies in the banking or retailing industry?
###assistant: SELECT Name FROM company WHERE Industry = "Banking" OR Industry = "Retailing" |
###context:CREATE TABLE company (Market_Value_in_Billion INTEGER)
###human: What is the maximum and minimum market value of companies?
###assistant: SELECT MAX(Market_Value_in_Billion), MIN(Market_Value_in_Billion) FROM company |
###context:CREATE TABLE company (Headquarters VARCHAR, Sales_in_Billion VARCHAR)
###human: What is the headquarter of the company with the largest sales?
###assistant: SELECT Headquarters FROM company ORDER BY Sales_in_Billion DESC LIMIT 1 |
###context:CREATE TABLE company (Headquarters VARCHAR)
###human: Show the different headquarters and number of companies at each headquarter.
###assistant: SELECT Headquarters, COUNT(*) FROM company GROUP BY Headquarters |
###context:CREATE TABLE company (Headquarters VARCHAR)
###human: Show the most common headquarter for companies.
###assistant: SELECT Headquarters FROM company GROUP BY Headquarters ORDER BY COUNT(*) DESC LIMIT 1 |
###context:CREATE TABLE company (Headquarters VARCHAR)
###human: Show the headquarters that have at least two companies.
###assistant: SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2 |
###context:CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)
###human: Show the headquarters that have both companies in banking industry and companies in oil and gas industry.
###assistant: SELECT Headquarters FROM company WHERE Industry = "Banking" INTERSECT SELECT Headquarters FROM company WHERE Industry = "Oil and gas" |
###context:CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
###human: Show the names of companies and of employees.
###assistant: SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID |
###context:CREATE TABLE people (Name VARCHAR, People_ID VARCHAR); CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR, Year_working VARCHAR)
###human: Show names of companies and that of employees in descending order of number of years working for that employee.
###assistant: SELECT T3.Name, T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID ORDER BY T1.Year_working |
###context:CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR); CREATE TABLE company (Company_ID VARCHAR, Sales_in_Billion INTEGER); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
###human: Show the names of employees that work for companies with sales bigger than 200.
###assistant: SELECT T2.Name FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID WHERE T3.Sales_in_Billion > 200 |
###context:CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR)
###human: Show the names of companies and the number of employees they have
###assistant: SELECT T3.Name, COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name |
###context:CREATE TABLE employment (Name VARCHAR, People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR)
###human: List the names of people that are not employed by any company
###assistant: SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM employment) |
###context:CREATE TABLE company (name VARCHAR, Sales_in_Billion INTEGER, Profits_in_Billion VARCHAR)
###human: list the names of the companies with more than 200 sales in the descending order of sales and profits.
###assistant: SELECT name FROM company WHERE Sales_in_Billion > 200 ORDER BY Sales_in_Billion, Profits_in_Billion DESC |
###context:CREATE TABLE film (Id VARCHAR)
###human: How many film are there?
###assistant: SELECT COUNT(*) FROM film |
###context:CREATE TABLE film (Director VARCHAR)
###human: List the distinct director of all films.
###assistant: SELECT DISTINCT Director FROM film |
###context:CREATE TABLE film (Gross_in_dollar INTEGER)
###human: What is the average ticket sales gross in dollars of films?
###assistant: SELECT AVG(Gross_in_dollar) FROM film |
###context:CREATE TABLE film_market_estimation (Low_Estimate VARCHAR, High_Estimate VARCHAR)
###human: What are the low and high estimates of film markets?
###assistant: SELECT Low_Estimate, High_Estimate FROM film_market_estimation |
###context:CREATE TABLE film_market_estimation (TYPE VARCHAR, YEAR VARCHAR)
###human: What are the types of film market estimations in year 1995?
###assistant: SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995 |
###context:CREATE TABLE market (Number_cities INTEGER)
###human: What are the maximum and minimum number of cities in all markets.
###assistant: SELECT MAX(Number_cities), MIN(Number_cities) FROM market |
###context:CREATE TABLE market (Number_cities INTEGER)
###human: How many markets have number of cities smaller than 300?
###assistant: SELECT COUNT(*) FROM market WHERE Number_cities < 300 |
###context:CREATE TABLE market (Country VARCHAR)
###human: List all countries of markets in ascending alphabetical order.
###assistant: SELECT Country FROM market ORDER BY Country |
###context:CREATE TABLE market (Country VARCHAR, Number_cities VARCHAR)
###human: List all countries of markets in descending order of number of cities.
###assistant: SELECT Country FROM market ORDER BY Number_cities DESC |
Subsets and Splits