Unnamed: 0
int64 0
60k
| text
stringlengths 109
1.06k
|
---|---|
2,300 | <question>: Find the name of physicians whose position title contains the word 'senior'. <context>: CREATE TABLE physician (name VARCHAR, POSITION VARCHAR) <answer>: SELECT name FROM physician WHERE POSITION LIKE '%senior%' |
2,301 | <question>: Find the patient who has the most recent undergoing treatment? <context>: CREATE TABLE undergoes (patient VARCHAR, dateundergoes VARCHAR) <answer>: SELECT patient FROM undergoes ORDER BY dateundergoes LIMIT 1 |
2,302 | <question>: Find the names of all patients who have an undergoing treatment and are staying in room 111. <context>: CREATE TABLE undergoes (patient VARCHAR, Stay VARCHAR); CREATE TABLE stay (StayID VARCHAR, room VARCHAR); CREATE TABLE patient (name VARCHAR, SSN VARCHAR) <answer>: 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 |
2,303 | <question>: List the names of all distinct nurses ordered by alphabetical order? <context>: CREATE TABLE nurse (name VARCHAR) <answer>: SELECT DISTINCT name FROM nurse ORDER BY name |
2,304 | <question>: Find the names of nurses who are nursing an undergoing treatment. <context>: CREATE TABLE undergoes (AssistingNurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR) <answer>: SELECT DISTINCT T2.name FROM undergoes AS T1 JOIN nurse AS T2 ON T1.AssistingNurse = T2.EmployeeID |
2,305 | <question>: List the names of all distinct medications, ordered in an alphabetical order. <context>: CREATE TABLE medication (name VARCHAR) <answer>: SELECT DISTINCT name FROM medication ORDER BY name |
2,306 | <question>: What are the names of the physician who prescribed the highest dose? <context>: CREATE TABLE prescribes (physician VARCHAR, dose VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR) <answer>: SELECT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician ORDER BY T2.dose DESC LIMIT 1 |
2,307 | <question>: List the physicians' employee ids together with their primary affiliation departments' ids. <context>: CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR, primaryaffiliation VARCHAR) <answer>: SELECT physician, department FROM affiliated_with WHERE primaryaffiliation = 1 |
2,308 | <question>: List the names of departments where some physicians are primarily affiliated with. <context>: CREATE TABLE affiliated_with (department VARCHAR); CREATE TABLE department (name VARCHAR, departmentid VARCHAR) <answer>: SELECT DISTINCT T2.name FROM affiliated_with AS T1 JOIN department AS T2 ON T1.department = T2.departmentid WHERE PrimaryAffiliation = 1 |
2,309 | <question>: What nurses are on call with block floor 1 and block code 1? Tell me their names. <context>: CREATE TABLE on_call (nurse VARCHAR, blockfloor VARCHAR, blockcode VARCHAR) <answer>: SELECT nurse FROM on_call WHERE blockfloor = 1 AND blockcode = 1 |
2,310 | <question>: What are the highest cost, lowest cost and average cost of procedures? <context>: CREATE TABLE procedures (cost INTEGER) <answer>: SELECT MAX(cost), MIN(cost), AVG(cost) FROM procedures |
2,311 | <question>: List the name and cost of all procedures sorted by the cost from the highest to the lowest. <context>: CREATE TABLE procedures (name VARCHAR, cost VARCHAR) <answer>: SELECT name, cost FROM procedures ORDER BY cost DESC |
2,312 | <question>: Find the three most expensive procedures. <context>: CREATE TABLE procedures (name VARCHAR, cost VARCHAR) <answer>: SELECT name FROM procedures ORDER BY cost LIMIT 3 |
2,313 | <question>: Find the physicians who are trained in a procedure that costs more than 5000. <context>: CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost INTEGER) <answer>: 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 |
2,314 | <question>: Find the physician who was trained in the most expensive procedure? <context>: CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (name VARCHAR, employeeid VARCHAR); CREATE TABLE procedures (code VARCHAR, cost VARCHAR) <answer>: 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 |
2,315 | <question>: What is the average cost of procedures that physician John Wen was trained in? <context>: CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE procedures (cost INTEGER, code VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR) <answer>: 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" |
2,316 | <question>: Find the names of procedures which physician John Wen was trained in. <context>: CREATE TABLE trained_in (physician VARCHAR, treatment VARCHAR); CREATE TABLE physician (employeeid VARCHAR, name VARCHAR); CREATE TABLE procedures (name VARCHAR, code VARCHAR) <answer>: 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" |
2,317 | <question>: Find all procedures which cost more than 1000 or which physician John Wen was trained in. <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) <answer>: 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" |
2,318 | <question>: Find the names of all procedures which cost more than 1000 but which physician John Wen was not trained in? <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) <answer>: 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" |
2,319 | <question>: Find the names of all procedures such that the cost is less than 5000 and physician John Wen was trained in. <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) <answer>: 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" |
2,320 | <question>: Find the name of physicians who are affiliated with both Surgery and Psychiatry departments. <context>: CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR) <answer>: 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' |
2,321 | <question>: Find the name of physicians who are affiliated with Surgery or Psychiatry department. <context>: CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR) <answer>: 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' |
2,322 | <question>: Find the names of patients who are not using the medication of Procrastin-X. <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) <answer>: 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' |
2,323 | <question>: Find the number of patients who are not using the medication of Procrastin-X. <context>: CREATE TABLE Prescribes (patient VARCHAR, Medication VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR) <answer>: 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') |
2,324 | <question>: How many appointments are there? <context>: CREATE TABLE appointment (Id VARCHAR) <answer>: SELECT COUNT(*) FROM appointment |
2,325 | <question>: Find the names of nurses who are on call. <context>: CREATE TABLE on_call (nurse VARCHAR); CREATE TABLE nurse (name VARCHAR, EmployeeID VARCHAR) <answer>: SELECT DISTINCT T1.name FROM nurse AS T1 JOIN on_call AS T2 ON T1.EmployeeID = T2.nurse |
2,326 | <question>: How many ships are there? <context>: CREATE TABLE ship (Id VARCHAR) <answer>: SELECT COUNT(*) FROM ship |
2,327 | <question>: List the name of ships in ascending order of tonnage. <context>: CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR) <answer>: SELECT Name FROM ship ORDER BY Tonnage |
2,328 | <question>: What are the type and nationality of ships? <context>: CREATE TABLE ship (TYPE VARCHAR, Nationality VARCHAR) <answer>: SELECT TYPE, Nationality FROM ship |
2,329 | <question>: List the name of ships whose nationality is not "United States". <context>: CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR) <answer>: SELECT Name FROM ship WHERE Nationality <> "United States" |
2,330 | <question>: Show the name of ships whose nationality is either United States or United Kingdom. <context>: CREATE TABLE ship (Name VARCHAR, Nationality VARCHAR) <answer>: SELECT Name FROM ship WHERE Nationality = "United States" OR Nationality = "United Kingdom" |
2,331 | <question>: What is the name of the ship with the largest tonnage? <context>: CREATE TABLE ship (Name VARCHAR, Tonnage VARCHAR) <answer>: SELECT Name FROM ship ORDER BY Tonnage DESC LIMIT 1 |
2,332 | <question>: Show different types of ships and the number of ships of each type. <context>: CREATE TABLE ship (TYPE VARCHAR) <answer>: SELECT TYPE, COUNT(*) FROM ship GROUP BY TYPE |
2,333 | <question>: Please show the most common type of ships. <context>: CREATE TABLE ship (TYPE VARCHAR) <answer>: SELECT TYPE FROM ship GROUP BY TYPE ORDER BY COUNT(*) DESC LIMIT 1 |
2,334 | <question>: List the nations that have more than two ships. <context>: CREATE TABLE ship (Nationality VARCHAR) <answer>: SELECT Nationality FROM ship GROUP BY Nationality HAVING COUNT(*) > 2 |
2,335 | <question>: Show different types of ships and the average tonnage of ships of each type. <context>: CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER) <answer>: SELECT TYPE, AVG(Tonnage) FROM ship GROUP BY TYPE |
2,336 | <question>: Show codes and fates of missions, and names of ships involved. <context>: CREATE TABLE mission (Code VARCHAR, Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR) <answer>: SELECT T1.Code, T1.Fate, T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID |
2,337 | <question>: Show names of ships involved in a mission launched after 1928. <context>: CREATE TABLE mission (Ship_ID VARCHAR, Launched_Year INTEGER); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR) <answer>: SELECT T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T1.Launched_Year > 1928 |
2,338 | <question>: Show the distinct fate of missions that involve ships with nationality "United States" <context>: CREATE TABLE mission (Fate VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Ship_ID VARCHAR, Nationality VARCHAR) <answer>: SELECT DISTINCT T1.Fate FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID WHERE T2.Nationality = "United States" |
2,339 | <question>: List the name of ships that are not involved in any mission <context>: CREATE TABLE mission (Name VARCHAR, Ship_ID VARCHAR); CREATE TABLE ship (Name VARCHAR, Ship_ID VARCHAR) <answer>: SELECT Name FROM ship WHERE NOT Ship_ID IN (SELECT Ship_ID FROM mission) |
2,340 | <question>: Show the types of ships that have both ships with tonnage larger than 6000 and ships with tonnage smaller than 4000. <context>: CREATE TABLE ship (TYPE VARCHAR, Tonnage INTEGER) <answer>: SELECT TYPE FROM ship WHERE Tonnage > 6000 INTERSECT SELECT TYPE FROM ship WHERE Tonnage < 4000 |
2,341 | <question>: Find the number of students in total. <context>: CREATE TABLE list (Id VARCHAR) <answer>: SELECT COUNT(*) FROM list |
2,342 | <question>: Find the last names of students studying in room 111. <context>: CREATE TABLE list (lastname VARCHAR, classroom VARCHAR) <answer>: SELECT lastname FROM list WHERE classroom = 111 |
2,343 | <question>: Find the first names of students studying in room 108. <context>: CREATE TABLE list (firstname VARCHAR, classroom VARCHAR) <answer>: SELECT firstname FROM list WHERE classroom = 108 |
2,344 | <question>: What are the first names of students studying in room 107? <context>: CREATE TABLE list (firstname VARCHAR, classroom VARCHAR) <answer>: SELECT DISTINCT firstname FROM list WHERE classroom = 107 |
2,345 | <question>: For each classroom report the grade that is taught in it. Report just the classroom number and the grade number. <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT DISTINCT classroom, grade FROM list |
2,346 | <question>: Which grade is studying in classroom 103? <context>: CREATE TABLE list (grade VARCHAR, classroom VARCHAR) <answer>: SELECT DISTINCT grade FROM list WHERE classroom = 103 |
2,347 | <question>: Find the grade studying in room 105. <context>: CREATE TABLE list (grade VARCHAR, classroom VARCHAR) <answer>: SELECT DISTINCT grade FROM list WHERE classroom = 105 |
2,348 | <question>: Which classrooms are used by grade 4? <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT DISTINCT classroom FROM list WHERE grade = 4 |
2,349 | <question>: Which classrooms are used by grade 5? <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT DISTINCT classroom FROM list WHERE grade = 5 |
2,350 | <question>: Find the last names of the teachers that teach fifth grade. <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR) <answer>: SELECT DISTINCT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 5 |
2,351 | <question>: Find the first names of the teachers that teach first grade. <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR) <answer>: SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1 |
2,352 | <question>: Find the first names of all the teachers that teach in classroom 110. <context>: CREATE TABLE teachers (firstname VARCHAR, classroom VARCHAR) <answer>: SELECT firstname FROM teachers WHERE classroom = 110 |
2,353 | <question>: Find the last names of teachers teaching in classroom 109. <context>: CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR) <answer>: SELECT lastname FROM teachers WHERE classroom = 109 |
2,354 | <question>: Report the first name and last name of all the teachers. <context>: CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR) <answer>: SELECT DISTINCT firstname, lastname FROM teachers |
2,355 | <question>: Report the first name and last name of all the students. <context>: CREATE TABLE list (firstname VARCHAR, lastname VARCHAR) <answer>: SELECT DISTINCT firstname, lastname FROM list |
2,356 | <question>: Find all students taught by OTHA MOYER. Output the first and last names of the students. <context>: CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: 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" |
2,357 | <question>: Find all students taught by MARROTTE KIRK. Output first and last names of students. <context>: CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: 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" |
2,358 | <question>: Find the first and last name of all the teachers that teach EVELINA BROMLEY. <context>: CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: 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" |
2,359 | <question>: Find the last names of all the teachers that teach GELL TAMI. <context>: CREATE TABLE teachers (lastname VARCHAR, classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT T2.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "GELL" AND T1.lastname = "TAMI" |
2,360 | <question>: How many students does LORIA ONDERSMA teaches? <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "LORIA" AND T2.lastname = "ONDERSMA" |
2,361 | <question>: How many students does KAWA GORDON teaches? <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "KAWA" AND T2.lastname = "GORDON" |
2,362 | <question>: Find the number of students taught by TARRING LEIA. <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "TARRING" AND T2.lastname = "LEIA" |
2,363 | <question>: How many teachers does the student named CHRISSY NABOZNY have? <context>: CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "CHRISSY" AND T1.lastname = "NABOZNY" |
2,364 | <question>: How many teachers does the student named MADLOCK RAY have? <context>: CREATE TABLE teachers (classroom VARCHAR); CREATE TABLE list (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: SELECT COUNT(*) FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T1.firstname = "MADLOCK" AND T1.lastname = "RAY" |
2,365 | <question>: Find all first-grade students who are NOT taught by OTHA MOYER. Report their first and last names. <context>: CREATE TABLE list (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, firstname VARCHAR, lastname VARCHAR) <answer>: 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" |
2,366 | <question>: Find the last names of the students in third grade that are not taught by COVIN JEROME. <context>: CREATE TABLE list (lastname VARCHAR, classroom VARCHAR, grade VARCHAR); CREATE TABLE teachers (classroom VARCHAR, lastname VARCHAR, firstname VARCHAR) <answer>: 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" |
2,367 | <question>: For each grade, report the grade, the number of classrooms in which it is taught and the total number of students in the grade. <context>: CREATE TABLE list (grade VARCHAR, classroom VARCHAR) <answer>: SELECT grade, COUNT(DISTINCT classroom), COUNT(*) FROM list GROUP BY grade |
2,368 | <question>: For each classroom, report the classroom number and the number of grades using it. <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT classroom, COUNT(DISTINCT grade) FROM list GROUP BY classroom |
2,369 | <question>: Which classroom has the most students? <context>: CREATE TABLE list (classroom VARCHAR) <answer>: SELECT classroom FROM list GROUP BY classroom ORDER BY COUNT(*) DESC LIMIT 1 |
2,370 | <question>: Report the number of students in each classroom. <context>: CREATE TABLE list (classroom VARCHAR) <answer>: SELECT classroom, COUNT(*) FROM list GROUP BY classroom |
2,371 | <question>: For each grade 0 classroom, report the total number of students. <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT classroom, COUNT(*) FROM list WHERE grade = "0" GROUP BY classroom |
2,372 | <question>: Report the total number of students for each fourth-grade classroom. <context>: CREATE TABLE list (classroom VARCHAR, grade VARCHAR) <answer>: SELECT classroom, COUNT(*) FROM list WHERE grade = "4" GROUP BY classroom |
2,373 | <question>: Find the name of the teacher who teaches the largest number of students. <context>: CREATE TABLE list (classroom VARCHAR); CREATE TABLE teachers (firstname VARCHAR, lastname VARCHAR, classroom VARCHAR) <answer>: 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 |
2,374 | <question>: Find the number of students in one classroom. <context>: CREATE TABLE list (classroom VARCHAR) <answer>: SELECT COUNT(*), classroom FROM list GROUP BY classroom |
2,375 | <question>: How many companies are headquartered in the US? <context>: CREATE TABLE company (Headquarters VARCHAR) <answer>: SELECT COUNT(*) FROM company WHERE Headquarters = 'USA' |
2,376 | <question>: List the names of companies by ascending number of sales. <context>: CREATE TABLE company (Name VARCHAR, Sales_in_Billion VARCHAR) <answer>: SELECT Name FROM company ORDER BY Sales_in_Billion |
2,377 | <question>: What are the headquarters and industries of all companies? <context>: CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR) <answer>: SELECT Headquarters, Industry FROM company |
2,378 | <question>: Show the names of companies in the banking or retailing industry? <context>: CREATE TABLE company (Name VARCHAR, Industry VARCHAR) <answer>: SELECT Name FROM company WHERE Industry = "Banking" OR Industry = "Retailing" |
2,379 | <question>: What is the maximum and minimum market value of companies? <context>: CREATE TABLE company (Market_Value_in_Billion INTEGER) <answer>: SELECT MAX(Market_Value_in_Billion), MIN(Market_Value_in_Billion) FROM company |
2,380 | <question>: What is the headquarter of the company with the largest sales? <context>: CREATE TABLE company (Headquarters VARCHAR, Sales_in_Billion VARCHAR) <answer>: SELECT Headquarters FROM company ORDER BY Sales_in_Billion DESC LIMIT 1 |
2,381 | <question>: Show the different headquarters and number of companies at each headquarter. <context>: CREATE TABLE company (Headquarters VARCHAR) <answer>: SELECT Headquarters, COUNT(*) FROM company GROUP BY Headquarters |
2,382 | <question>: Show the most common headquarter for companies. <context>: CREATE TABLE company (Headquarters VARCHAR) <answer>: SELECT Headquarters FROM company GROUP BY Headquarters ORDER BY COUNT(*) DESC LIMIT 1 |
2,383 | <question>: Show the headquarters that have at least two companies. <context>: CREATE TABLE company (Headquarters VARCHAR) <answer>: SELECT Headquarters FROM company GROUP BY Headquarters HAVING COUNT(*) >= 2 |
2,384 | <question>: Show the headquarters that have both companies in banking industry and companies in oil and gas industry. <context>: CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR) <answer>: SELECT Headquarters FROM company WHERE Industry = "Banking" INTERSECT SELECT Headquarters FROM company WHERE Industry = "Oil and gas" |
2,385 | <question>: Show the names of companies and of employees. <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) <answer>: 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 |
2,386 | <question>: Show names of companies and that of employees in descending order of number of years working for that employee. <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) <answer>: 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 |
2,387 | <question>: Show the names of employees that work for companies with sales bigger than 200. <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) <answer>: 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 |
2,388 | <question>: Show the names of companies and the number of employees they have <context>: CREATE TABLE company (Name VARCHAR, Company_ID VARCHAR); CREATE TABLE people (People_ID VARCHAR); CREATE TABLE employment (People_ID VARCHAR, Company_ID VARCHAR) <answer>: 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 |
2,389 | <question>: List the names of people that are not employed by any company <context>: CREATE TABLE employment (Name VARCHAR, People_ID VARCHAR); CREATE TABLE people (Name VARCHAR, People_ID VARCHAR) <answer>: SELECT Name FROM people WHERE NOT People_ID IN (SELECT People_ID FROM employment) |
2,390 | <question>: list the names of the companies with more than 200 sales in the descending order of sales and profits. <context>: CREATE TABLE company (name VARCHAR, Sales_in_Billion INTEGER, Profits_in_Billion VARCHAR) <answer>: SELECT name FROM company WHERE Sales_in_Billion > 200 ORDER BY Sales_in_Billion, Profits_in_Billion DESC |
2,391 | <question>: How many film are there? <context>: CREATE TABLE film (Id VARCHAR) <answer>: SELECT COUNT(*) FROM film |
2,392 | <question>: List the distinct director of all films. <context>: CREATE TABLE film (Director VARCHAR) <answer>: SELECT DISTINCT Director FROM film |
2,393 | <question>: What is the average ticket sales gross in dollars of films? <context>: CREATE TABLE film (Gross_in_dollar INTEGER) <answer>: SELECT AVG(Gross_in_dollar) FROM film |
2,394 | <question>: What are the low and high estimates of film markets? <context>: CREATE TABLE film_market_estimation (Low_Estimate VARCHAR, High_Estimate VARCHAR) <answer>: SELECT Low_Estimate, High_Estimate FROM film_market_estimation |
2,395 | <question>: What are the types of film market estimations in year 1995? <context>: CREATE TABLE film_market_estimation (TYPE VARCHAR, YEAR VARCHAR) <answer>: SELECT TYPE FROM film_market_estimation WHERE YEAR = 1995 |
2,396 | <question>: What are the maximum and minimum number of cities in all markets. <context>: CREATE TABLE market (Number_cities INTEGER) <answer>: SELECT MAX(Number_cities), MIN(Number_cities) FROM market |
2,397 | <question>: How many markets have number of cities smaller than 300? <context>: CREATE TABLE market (Number_cities INTEGER) <answer>: SELECT COUNT(*) FROM market WHERE Number_cities < 300 |
2,398 | <question>: List all countries of markets in ascending alphabetical order. <context>: CREATE TABLE market (Country VARCHAR) <answer>: SELECT Country FROM market ORDER BY Country |
2,399 | <question>: List all countries of markets in descending order of number of cities. <context>: CREATE TABLE market (Country VARCHAR, Number_cities VARCHAR) <answer>: SELECT Country FROM market ORDER BY Number_cities DESC |
Subsets and Splits