instruction stringlengths 8 460 | input stringlengths 37 7.14k | output stringlengths 9 2.37k | text stringlengths 302 7.71k |
|---|---|---|---|
tell me the number of times he placed 4th . | CREATE TABLE table_204_780 (
id number,
"year" number,
"competition" text,
"venue" text,
"position" text,
"notes" text
) | SELECT COUNT(*) FROM table_204_780 WHERE "position" = 4 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: tell me the number of times he placed 4th . ### Input: CREATE TABLE table_204_780 (
id number,
"year" number,
"c... |
Who is the rower from Canada? | CREATE TABLE table_name_80 (
rowers VARCHAR,
country VARCHAR
) | SELECT rowers FROM table_name_80 WHERE country = "canada" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who is the rower from Canada? ### Input: CREATE TABLE table_name_80 (
rowers VARCHAR,
country VARCHAR
) ### Response... |
What is the highest attendance at a game with a result of 5-1? | CREATE TABLE table_name_94 (
attendance INTEGER,
result VARCHAR
) | SELECT MAX(attendance) FROM table_name_94 WHERE result = "5-1" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest attendance at a game with a result of 5-1? ### Input: CREATE TABLE table_name_94 (
attendance INTEGE... |
What is Years, when Nationality is United States, and when Position is PG / SG? | CREATE TABLE table_name_83 (
years VARCHAR,
nationality VARCHAR,
position VARCHAR
) | SELECT years FROM table_name_83 WHERE nationality = "united states" AND position = "pg / sg" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Years, when Nationality is United States, and when Position is PG / SG? ### Input: CREATE TABLE table_name_83 (
... |
List the number of courses in year 2008 for each instructor in a bar chart. | CREATE TABLE advisor (
s_ID varchar(5),
i_ID varchar(5)
)
CREATE TABLE prereq (
course_id varchar(8),
prereq_id varchar(8)
)
CREATE TABLE teaches (
ID varchar(5),
course_id varchar(8),
sec_id varchar(8),
semester varchar(6),
year numeric(4,0)
)
CREATE TABLE instructor (
ID var... | SELECT name, COUNT(name) FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.ID = T3.ID WHERE year = 2008 GROUP BY name | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: List the number of courses in year 2008 for each instructor in a bar chart. ### Input: CREATE TABLE advisor (
s_ID varch... |
where cfl team is edmonton (2) what are all the position | CREATE TABLE table_26996293_2 (
position VARCHAR,
cfl_team VARCHAR
) | SELECT position FROM table_26996293_2 WHERE cfl_team = "Edmonton (2)" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: where cfl team is edmonton (2) what are all the position ### Input: CREATE TABLE table_26996293_2 (
position VARCHAR,
... |
What was the result of the los angeles rams game? | CREATE TABLE table_9746 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
) | SELECT "Result" FROM table_9746 WHERE "Opponent" = 'los angeles rams' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the result of the los angeles rams game? ### Input: CREATE TABLE table_9746 (
"Week" real,
"Date" text,
... |
does any airline have a JET flight between PITTSBURGH and BALTIMORE | CREATE TABLE ground_service (
city_code text,
airport_code text,
transport_type text,
ground_fare int
)
CREATE TABLE flight_stop (
flight_id int,
stop_number int,
stop_days text,
stop_airport text,
arrival_time int,
arrival_airline text,
arrival_flight_number int,
depart... | SELECT DISTINCT flight.flight_id FROM aircraft, airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, equipment_sequence, flight WHERE (aircraft.propulsion = 'JET' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BALTIMORE' AND equipment_se... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: does any airline have a JET flight between PITTSBURGH and BALTIMORE ### Input: CREATE TABLE ground_service (
city_code t... |
What was the total number of weeks where the game played Ivor Wynne Stadium? | CREATE TABLE table_24604 (
"Week" real,
"Date" text,
"Opponent" text,
"Location" text,
"Final Score" text,
"Attendance" real,
"Record" text
) | SELECT COUNT("Week") FROM table_24604 WHERE "Location" = 'Ivor Wynne Stadium' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the total number of weeks where the game played Ivor Wynne Stadium? ### Input: CREATE TABLE table_24604 (
"Week... |
is TW flight 497 766 from ST. PETERSBURG to MILWAUKEE with 1 stop available tomorrow morning | CREATE TABLE ground_service (
city_code text,
airport_code text,
transport_type text,
ground_fare int
)
CREATE TABLE flight_stop (
flight_id int,
stop_number int,
stop_days text,
stop_airport text,
arrival_time int,
arrival_airline text,
arrival_flight_number int,
depart... | SELECT DISTINCT FLIGHT_0.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight AS FLIGHT_0, flight AS FLIGHT_1, flight AS FLIGHT_2, flight_leg AS FLIGHT_LEG_0, flight_leg AS FLIGHT_LEG_1 WHERE ((((((date_day.day_number = 20 AND ... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: is TW flight 497 766 from ST. PETERSBURG to MILWAUKEE with 1 stop available tomorrow morning ### Input: CREATE TABLE ground_... |
What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6? | CREATE TABLE table_45318 (
"Year" real,
"Program Title" text,
"Placement" text,
"Score" real,
"Class" text
) | SELECT COUNT("Year") FROM table_45318 WHERE "Class" = 'piw' AND "Program Title" = 'the adventures of...' AND "Score" > '94.6' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6? ### Input: CREATE TABLE ... |
How many votes did Kerry get in the county that gave Bush 189,605 votes? | CREATE TABLE table_name_46 (
kerry_number INTEGER,
bush_number VARCHAR
) | SELECT AVG(kerry_number) FROM table_name_46 WHERE bush_number = 189 OFFSET 605 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many votes did Kerry get in the county that gave Bush 189,605 votes? ### Input: CREATE TABLE table_name_46 (
kerry_n... |
In next semester when is 480 offered ? | CREATE TABLE offering_instructor (
offering_instructor_id int,
offering_id int,
instructor_id int
)
CREATE TABLE requirement (
requirement_id int,
requirement varchar,
college varchar
)
CREATE TABLE course_offering (
offering_id int,
course_id int,
semester int,
section_number ... | SELECT DISTINCT course_offering.end_time, course_offering.friday, course_offering.monday, course_offering.saturday, course_offering.start_time, course_offering.sunday, course_offering.thursday, course_offering.tuesday, course_offering.wednesday FROM course, course_offering, semester WHERE course.course_id = course_offe... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In next semester when is 480 offered ? ### Input: CREATE TABLE offering_instructor (
offering_instructor_id int,
off... |
Which season has rank 2? | CREATE TABLE table_name_35 (
season VARCHAR,
rank VARCHAR
) | SELECT season FROM table_name_35 WHERE rank = "2" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which season has rank 2? ### Input: CREATE TABLE table_name_35 (
season VARCHAR,
rank VARCHAR
) ### Response: SELECT... |
What is natural change with a crude death rate of 8.7 and less than 472 live births? | CREATE TABLE table_55211 (
"Average population" text,
"Live births" real,
"Deaths" real,
"Natural change" real,
"Crude birth rate (per 1000)" real,
"Crude death rate (per 1000)" real,
"Natural change (per 1000)" real
) | SELECT "Natural change" FROM table_55211 WHERE "Crude death rate (per 1000)" = '8.7' AND "Live births" < '472' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is natural change with a crude death rate of 8.7 and less than 472 live births? ### Input: CREATE TABLE table_55211 (
... |
How many points were there scored on October 27? | CREATE TABLE table_25949 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Attendance" real,
"Record" text,
"Points" real
) | SELECT MAX("Points") FROM table_25949 WHERE "Date" = 'October 27' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many points were there scored on October 27? ### Input: CREATE TABLE table_25949 (
"Game" real,
"Date" text,
... |
For those employees who was hired before 2002-06-21, find hire_date and the sum of employee_id bin hire_date by weekday, and visualize them by a bar chart. | CREATE TABLE countries (
COUNTRY_ID varchar(2),
COUNTRY_NAME varchar(40),
REGION_ID decimal(10,0)
)
CREATE TABLE departments (
DEPARTMENT_ID decimal(4,0),
DEPARTMENT_NAME varchar(30),
MANAGER_ID decimal(6,0),
LOCATION_ID decimal(4,0)
)
CREATE TABLE job_history (
EMPLOYEE_ID decimal(6,0... | SELECT HIRE_DATE, SUM(EMPLOYEE_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For those employees who was hired before 2002-06-21, find hire_date and the sum of employee_id bin hire_date by weekday, and... |
Show the users in a specified reputation range, with ratio of answers accepted.. Show the users in a specified reputation range, with ratio of answers accepted. | CREATE TABLE Comments (
Id number,
PostId number,
Score number,
Text text,
CreationDate time,
UserDisplayName text,
UserId number,
ContentLicense text
)
CREATE TABLE ReviewTaskResultTypes (
Id number,
Name text,
Description text
)
CREATE TABLE PostHistoryTypes (
Id numb... | SELECT u.DisplayName, u.Reputation, u.Id, COUNT(a.Id) AS AcceptCount, (SELECT COUNT(*) FROM Posts WHERE OwnerUserId = u.Id AND PostTypeId = 2) AS AnswerCount, (CAST(COUNT(a.Id) AS FLOAT) / (SELECT COUNT(*) FROM Posts WHERE OwnerUserId = u.Id AND PostTypeId = 2) * 100) AS AcceptedPercentage FROM Posts AS q INNER JOIN Po... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Show the users in a specified reputation range, with ratio of answers accepted.. Show the users in a specified reputation ra... |
What is Born-Died, when Term End is 19 January 1943? | CREATE TABLE table_name_60 (
born_died VARCHAR,
term_end VARCHAR
) | SELECT born_died FROM table_name_60 WHERE term_end = "19 january 1943" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Born-Died, when Term End is 19 January 1943? ### Input: CREATE TABLE table_name_60 (
born_died VARCHAR,
term... |
what is the total number of representatives from the democratic party ? | CREATE TABLE table_203_16 (
id number,
"name" text,
"took office" text,
"left office" text,
"party" text,
"district residence" text,
"notes" text
) | SELECT COUNT(*) FROM table_203_16 WHERE "party" = 'democratic' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the total number of representatives from the democratic party ? ### Input: CREATE TABLE table_203_16 (
id number... |
what is the title of the episode where b b is 20/16 | CREATE TABLE table_19485888_1 (
title__french_____english_ VARCHAR,
b_b_ VARCHAR,
_corresponds_to_tf1s_broadcast_schedule VARCHAR
) | SELECT title__french_____english_ FROM table_19485888_1 WHERE b_b_ = _corresponds_to_tf1s_broadcast_schedule = 20 / 16 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the title of the episode where b b is 20/16 ### Input: CREATE TABLE table_19485888_1 (
title__french_____english... |
how many patients whose days of hospital stay is greater than 1 and drug name is timolol maleate 0.5%? | CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "1" AND prescriptions.drug = "Timolol Maleate 0.5%" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: how many patients whose days of hospital stay is greater than 1 and drug name is timolol maleate 0.5%? ### Input: CREATE TAB... |
What is the highest Money ( $ ), when To Par is less than 2? | CREATE TABLE table_name_11 (
money___ INTEGER,
to_par INTEGER
) | SELECT MAX(money___) AS $__ FROM table_name_11 WHERE to_par < 2 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the highest Money ( $ ), when To Par is less than 2? ### Input: CREATE TABLE table_name_11 (
money___ INTEGER,
... |
Return a bar chart about the number bookings for each apartment number, and rank from high to low by the x-axis. | CREATE TABLE Apartment_Buildings (
building_id INTEGER,
building_short_name CHAR(15),
building_full_name VARCHAR(80),
building_description VARCHAR(255),
building_address VARCHAR(255),
building_manager VARCHAR(50),
building_phone VARCHAR(80)
)
CREATE TABLE Apartments (
apt_id INTEGER,
... | SELECT apt_number, COUNT(apt_number) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id GROUP BY apt_number ORDER BY apt_number DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Return a bar chart about the number bookings for each apartment number, and rank from high to low by the x-axis. ### Input: ... |
Who had the highest rebounds of the game with a game number higher than 65 on March 28? | CREATE TABLE table_51164 (
"Game" real,
"Date" text,
"Team" text,
"Score" text,
"High points" text,
"High rebounds" text,
"High assists" text,
"Location Attendance" text,
"Record" text
) | SELECT "High rebounds" FROM table_51164 WHERE "Game" > '65' AND "Date" = 'march 28' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who had the highest rebounds of the game with a game number higher than 65 on March 28? ### Input: CREATE TABLE table_51164 ... |
On what date was the attendance of the crowd 78,431? | CREATE TABLE table_52231 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Attendance" text
) | SELECT "Date" FROM table_52231 WHERE "Attendance" = '78,431' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On what date was the attendance of the crowd 78,431? ### Input: CREATE TABLE table_52231 (
"Week" real,
"Date" text,... |
For all employees who have the letters D or S in their first name, find hire_date and the sum of employee_id bin hire_date by weekday, and visualize them by a bar chart, show y axis in desc order. | CREATE TABLE regions (
REGION_ID decimal(5,0),
REGION_NAME varchar(25)
)
CREATE TABLE locations (
LOCATION_ID decimal(4,0),
STREET_ADDRESS varchar(40),
POSTAL_CODE varchar(12),
CITY varchar(30),
STATE_PROVINCE varchar(25),
COUNTRY_ID varchar(2)
)
CREATE TABLE departments (
DEPARTME... | SELECT HIRE_DATE, SUM(EMPLOYEE_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY SUM(EMPLOYEE_ID) DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For all employees who have the letters D or S in their first name, find hire_date and the sum of employee_id bin hire_date b... |
For those employees who did not have any job in the past, a bar chart shows the distribution of job_id and the average of salary , and group by attribute job_id. | CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
LAST_NAME varchar(25),
EMAIL varchar(25),
PHONE_NUMBER varchar(20),
HIRE_DATE date,
JOB_ID varchar(10),
SALARY decimal(8,2),
COMMISSION_PCT decimal(2,2),
MANAGER_ID decimal(6,0),
DEPARTMENT_ID decimal(... | SELECT JOB_ID, AVG(SALARY) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For those employees who did not have any job in the past, a bar chart shows the distribution of job_id and the average of sa... |
What are the numbers of wines for different grapes Plot them as bar chart, show by the the total number in ascending. | CREATE TABLE grapes (
ID INTEGER,
Grape TEXT,
Color TEXT
)
CREATE TABLE wine (
No INTEGER,
Grape TEXT,
Winery TEXT,
Appelation TEXT,
State TEXT,
Name TEXT,
Year INTEGER,
Price INTEGER,
Score INTEGER,
Cases INTEGER,
Drink TEXT
)
CREATE TABLE appellations (
No... | SELECT Grape, COUNT(*) FROM wine GROUP BY Grape ORDER BY COUNT(*) | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the numbers of wines for different grapes Plot them as bar chart, show by the the total number in ascending. ### In... |
For those records from the products and each product's manufacturer, show me about the distribution of founder and the sum of revenue , and group by attribute founder in a bar chart. | CREATE TABLE Manufacturers (
Code INTEGER,
Name VARCHAR(255),
Headquarter VARCHAR(255),
Founder VARCHAR(255),
Revenue REAL
)
CREATE TABLE Products (
Code INTEGER,
Name VARCHAR(255),
Price DECIMAL,
Manufacturer INTEGER
) | SELECT Founder, SUM(Revenue) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For those records from the products and each product's manufacturer, show me about the distribution of founder and the sum o... |
What is the 1st leg when team number 1 is CSU SIBIU? | CREATE TABLE table_64691 (
"Team #1" text,
"Agg." text,
"Team #2" text,
"1st leg" text,
"2nd leg" text
) | SELECT "1st leg" FROM table_64691 WHERE "Team #1" = 'csu sibiu' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the 1st leg when team number 1 is CSU SIBIU? ### Input: CREATE TABLE table_64691 (
"Team #1" text,
"Agg." te... |
the number of intensive care unit visits that patient 035-2205 had during this year. | CREATE TABLE cost (
costid number,
uniquepid text,
patienthealthsystemstayid number,
eventtype text,
eventid number,
chargetime time,
cost number
)
CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartrate n... | SELECT COUNT(DISTINCT patient.patientunitstayid) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '035-2205') AND DATETIME(patient.unitadmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-0 year') | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: the number of intensive care unit visits that patient 035-2205 had during this year. ### Input: CREATE TABLE cost (
cost... |
how many patients whose admission year is less than 2184 and diagnoses long title is seroma complicating a procedure? | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2184" AND diagnoses.long_title = "Seroma complicating a procedure" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: how many patients whose admission year is less than 2184 and diagnoses long title is seroma complicating a procedure? ### In... |
what are patient 25869's genders? | CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id number,
event_type text,
event_id number,
chargetime time,
cost number
)
CREATE TABLE labevents (
row_id number,
subject_id number,
hadm_id number,
itemid number,
charttime time,
valuenum number,
value... | SELECT patients.gender FROM patients WHERE patients.subject_id = 25869 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what are patient 25869's genders? ### Input: CREATE TABLE cost (
row_id number,
subject_id number,
hadm_id numbe... |
What is the most common prerequisite this semester ? | CREATE TABLE program_requirement (
program_id int,
category varchar,
min_credit int,
additional_req varchar
)
CREATE TABLE offering_instructor (
offering_instructor_id int,
offering_id int,
instructor_id int
)
CREATE TABLE program (
program_id int,
name varchar,
college varchar... | SELECT COUNT(DISTINCT course_prerequisite.course_id), course.department, course.name, course.number FROM course, course_offering, course_prerequisite, semester WHERE course.course_id = course_offering.course_id AND course.course_id = course_prerequisite.pre_course_id AND course.department = 'EECS' AND semester.semester... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the most common prerequisite this semester ? ### Input: CREATE TABLE program_requirement (
program_id int,
c... |
what is the name that saw 4 heats and a lane higher than 7? | CREATE TABLE table_80288 (
"Heat" real,
"Lane" real,
"Name" text,
"Nationality" text,
"Time" text
) | SELECT "Name" FROM table_80288 WHERE "Heat" = '4' AND "Lane" > '7' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the name that saw 4 heats and a lane higher than 7? ### Input: CREATE TABLE table_80288 (
"Heat" real,
"Lane... |
what is the number of patients on main type drug prescription who had diagnoses of angioneurotic edema, not elsewhere classified? | CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE diagnoses.long_title = "Angioneurotic edema, not elsewhere classified" AND prescriptions.drug_type = "MAIN" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the number of patients on main type drug prescription who had diagnoses of angioneurotic edema, not elsewhere classi... |
What is No. 2, when No. 9 is Mia? | CREATE TABLE table_name_56 (
no_2 VARCHAR,
no_9 VARCHAR
) | SELECT no_2 FROM table_name_56 WHERE no_9 = "mia" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is No. 2, when No. 9 is Mia? ### Input: CREATE TABLE table_name_56 (
no_2 VARCHAR,
no_9 VARCHAR
) ### Response:... |
What shows for 2009 when 2008 is A, 2012 is 1r, 2010 is q2, and 2011 is 2r? | CREATE TABLE table_65399 (
"Tournament" text,
"2007" text,
"2008" text,
"2009" text,
"2010" text,
"2011" text,
"2012" text
) | SELECT "2009" FROM table_65399 WHERE "2008" = 'a' AND "2012" = '1r' AND "2010" = 'q2' AND "2011" = '2r' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What shows for 2009 when 2008 is A, 2012 is 1r, 2010 is q2, and 2011 is 2r? ### Input: CREATE TABLE table_65399 (
"Tourn... |
what was the first time patient 12927 had a maximum of hematocrit in this month? | CREATE TABLE procedures_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
charttime time
)
CREATE TABLE diagnoses_icd (
row_id number,
subject_id number,
hadm_id number,
icd9_code text,
charttime time
)
CREATE TABLE d_items (
row_id number,
itemid ... | SELECT labevents.charttime FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 12927) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'hematocrit') AND DATETIME(labevents.charttime, 'start of month') = DATETIME(CUR... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what was the first time patient 12927 had a maximum of hematocrit in this month? ### Input: CREATE TABLE procedures_icd (
... |
what is the number of patients whose age is less than 89 and diagnoses long title is benzodiazepine-based tranquilizers causing adverse effects in therapeutic use? | CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "89" AND diagnoses.long_title = "Benzodiazepine-based tranquilizers causing adverse effects in therapeutic use" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the number of patients whose age is less than 89 and diagnoses long title is benzodiazepine-based tranquilizers caus... |
For each party, return the name of the party and the number of delegates from that party Plot them as bar chart, and sort bar from high to low order. | CREATE TABLE election (
Election_ID int,
Counties_Represented text,
District int,
Delegate text,
Party int,
First_Elected real,
Committee text
)
CREATE TABLE county (
County_Id int,
County_name text,
Population real,
Zip_code text
)
CREATE TABLE party (
Party_ID int,
... | SELECT T2.Party, AVG(COUNT(*)) FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID GROUP BY T2.Party ORDER BY T2.Party DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For each party, return the name of the party and the number of delegates from that party Plot them as bar chart, and sort ba... |
Which First elected has a Incumbent of none (new seat)? | CREATE TABLE table_37902 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" text,
"Result" text
) | SELECT "First elected" FROM table_37902 WHERE "Incumbent" = 'none (new seat)' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which First elected has a Incumbent of none (new seat)? ### Input: CREATE TABLE table_37902 (
"District" text,
"Incu... |
What MLB draft has a School of green valley high school? | CREATE TABLE table_57549 (
"Player" text,
"Position" text,
"School" text,
"Hometown" text,
"MLB Draft" text
) | SELECT "MLB Draft" FROM table_57549 WHERE "School" = 'green valley high school' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What MLB draft has a School of green valley high school? ### Input: CREATE TABLE table_57549 (
"Player" text,
"Posit... |
what was the challenge for scientific after the solar stage ? | CREATE TABLE table_203_185 (
id number,
"season" text,
"a\ntechnical" text,
"b\nscientific" text,
"c\nfine arts" text,
"d\nimprovisational" text,
"e\nstructural" text,
"rising stars!\u00ae" text,
"po\nprojectoutreach\u00ae" text,
"university level" text
) | SELECT "b\nscientific" FROM table_203_185 WHERE "season" > (SELECT "season" FROM table_203_185 WHERE "b\nscientific" = 'the solar stage') ORDER BY "season" LIMIT 1 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what was the challenge for scientific after the solar stage ? ### Input: CREATE TABLE table_203_185 (
id number,
"se... |
What was the score of the game that was played on a grass surface? | CREATE TABLE table_name_24 (
score VARCHAR,
surface VARCHAR
) | SELECT score FROM table_name_24 WHERE surface = "grass" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the score of the game that was played on a grass surface? ### Input: CREATE TABLE table_name_24 (
score VARCHAR... |
How many courses for each subject? Plot a bar chart, and list by the Y in asc please. | CREATE TABLE Student_Course_Enrolment (
registration_id INTEGER,
student_id INTEGER,
course_id INTEGER,
date_of_enrolment DATETIME,
date_of_completion DATETIME
)
CREATE TABLE Courses (
course_id INTEGER,
author_id INTEGER,
subject_id INTEGER,
course_name VARCHAR(120),
course_des... | SELECT 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(*) | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many courses for each subject? Plot a bar chart, and list by the Y in asc please. ### Input: CREATE TABLE Student_Course... |
let me know the death status and days for which patient paul dunn was hospitalized. | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob te... | SELECT demographic.days_stay, demographic.expire_flag FROM demographic WHERE demographic.name = "Paul Dunn" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: let me know the death status and days for which patient paul dunn was hospitalized. ### Input: CREATE TABLE prescriptions (
... |
what is the number of patients whose death status is 0 and year of birth is less than 2083? | CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.expire_flag = "0" AND demographic.dob_year < "2083" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the number of patients whose death status is 0 and year of birth is less than 2083? ### Input: CREATE TABLE prescrip... |
was there a administration of electrolytes performed on patient 013-33898 in their current hospital encounter? | CREATE TABLE patient (
uniquepid text,
patienthealthsystemstayid number,
patientunitstayid number,
gender text,
age text,
ethnicity text,
hospitalid number,
wardid number,
admissionheight number,
admissionweight number,
dischargeweight number,
hospitaladmittime time,
... | SELECT COUNT(*) > 0 FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '013-33898' AND patient.hospitaldischargetime IS NULL)) AND treatment.treatme... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: was there a administration of electrolytes performed on patient 013-33898 in their current hospital encounter? ### Input: CR... |
what is the country for zhang xiuyun? | CREATE TABLE table_66211 (
"Rank" real,
"Athlete" text,
"Country" text,
"Time" text,
"Notes" text
) | SELECT "Country" FROM table_66211 WHERE "Athlete" = 'zhang xiuyun' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is the country for zhang xiuyun? ### Input: CREATE TABLE table_66211 (
"Rank" real,
"Athlete" text,
"Countr... |
What is Case Suffix (Case), when English Meaning is 'to Georgia, in Georgia'? | CREATE TABLE table_name_54 (
case_suffix__case_ VARCHAR,
english_meaning VARCHAR
) | SELECT case_suffix__case_ FROM table_name_54 WHERE english_meaning = "to georgia, in georgia" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is Case Suffix (Case), when English Meaning is 'to Georgia, in Georgia'? ### Input: CREATE TABLE table_name_54 (
ca... |
show me ground transportation in WESTCHESTER COUNTY | CREATE TABLE code_description (
code varchar,
description text
)
CREATE TABLE food_service (
meal_code text,
meal_number int,
compartment text,
meal_description varchar
)
CREATE TABLE dual_carrier (
main_airline varchar,
low_flight_number int,
high_flight_number int,
dual_airli... | SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'WESTCHESTER COUNTY' AND ground_service.city_code = city.city_code | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: show me ground transportation in WESTCHESTER COUNTY ### Input: CREATE TABLE code_description (
code varchar,
descrip... |
What owner or owners have an operational description? | CREATE TABLE table_name_34 (
owner_s_ VARCHAR,
description VARCHAR
) | SELECT owner_s_ FROM table_name_34 WHERE description = "operational" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What owner or owners have an operational description? ### Input: CREATE TABLE table_name_34 (
owner_s_ VARCHAR,
desc... |
what is maximum days of hospital stay of patients whose primary disease is hypoxia? | CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
admission_type text,
days_stay text,
insurance text,
ethnicity text,
expire_flag text,
admission_location t... | SELECT MAX(demographic.days_stay) FROM demographic WHERE demographic.diagnosis = "HYPOXIA" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what is maximum days of hospital stay of patients whose primary disease is hypoxia? ### Input: CREATE TABLE demographic (
... |
what year had the least net profit ? | CREATE TABLE table_203_847 (
id number,
"financial year" text,
"turnover" text,
"profit before tax" text,
"net profit" text,
"partner bonuses" text,
"profit retained" text
) | SELECT "financial year" FROM table_203_847 ORDER BY "net profit" LIMIT 1 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: what year had the least net profit ? ### Input: CREATE TABLE table_203_847 (
id number,
"financial year" text,
"... |
Which venue has a Result of 1 0? | CREATE TABLE table_name_96 (
venue VARCHAR,
result VARCHAR
) | SELECT venue FROM table_name_96 WHERE result = "1–0" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which venue has a Result of 1 0? ### Input: CREATE TABLE table_name_96 (
venue VARCHAR,
result VARCHAR
) ### Respons... |
On what day was game 2 played? | CREATE TABLE table_name_56 (
date VARCHAR,
game VARCHAR
) | SELECT date FROM table_name_56 WHERE game = 2 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: On what day was game 2 played? ### Input: CREATE TABLE table_name_56 (
date VARCHAR,
game VARCHAR
) ### Response: SE... |
What was the tie number for the round against visiting opponent Newcastle United? | CREATE TABLE table_name_53 (
tie_no VARCHAR,
away_team VARCHAR
) | SELECT tie_no FROM table_name_53 WHERE away_team = "newcastle united" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the tie number for the round against visiting opponent Newcastle United? ### Input: CREATE TABLE table_name_53 (
... |
How many people were in the crowd when the away team scored 15.18 (108)? | CREATE TABLE table_51915 (
"Home team" text,
"Home team score" text,
"Away team" text,
"Away team score" text,
"Venue" text,
"Crowd" real,
"Date" text
) | SELECT "Crowd" FROM table_51915 WHERE "Away team score" = '15.18 (108)' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many people were in the crowd when the away team scored 15.18 (108)? ### Input: CREATE TABLE table_51915 (
"Home tea... |
Which city of license has an independent network affiliation, a variety format and is station KKUP? | CREATE TABLE table_name_9 (
city_of_license VARCHAR,
station VARCHAR,
network_affiliation VARCHAR,
format VARCHAR
) | SELECT city_of_license FROM table_name_9 WHERE network_affiliation = "independent" AND format = "variety" AND station = "kkup" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which city of license has an independent network affiliation, a variety format and is station KKUP? ### Input: CREATE TABLE ... |
Which report is for Townsville Entertainment Centre? | CREATE TABLE table_49866 (
"Date" text,
"Home team" text,
"Score" text,
"Away team" text,
"Venue" text,
"Box Score" text,
"Report" text
) | SELECT "Report" FROM table_49866 WHERE "Venue" = 'townsville entertainment centre' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Which report is for Townsville Entertainment Centre? ### Input: CREATE TABLE table_49866 (
"Date" text,
"Home team" ... |
Name the tournament for grass surface and opponent in the final being paul baccanello | CREATE TABLE table_name_11 (
tournament VARCHAR,
surface VARCHAR,
opponent_in_the_final VARCHAR
) | SELECT tournament FROM table_name_11 WHERE surface = "grass" AND opponent_in_the_final = "paul baccanello" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the tournament for grass surface and opponent in the final being paul baccanello ### Input: CREATE TABLE table_name_11 ... |
Who is in November after 1988 when Prinzzess is in October? | CREATE TABLE table_14154 (
"Year" real,
"September" text,
"October" text,
"November" text,
"December" text
) | SELECT "November" FROM table_14154 WHERE "Year" > '1988' AND "October" = 'prinzzess' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Who is in November after 1988 when Prinzzess is in October? ### Input: CREATE TABLE table_14154 (
"Year" real,
"Sept... |
When Yusuke Hatanaka was the stage winner in the tonton susanto general classification, what was the malaysian rider classification? | CREATE TABLE table_38699 (
"Stage" text,
"Stage winner" text,
"General classification" text,
"Points classification" text,
"Mountains classification" text,
"Malaysian rider classification" text,
"Team classification" text
) | SELECT "Malaysian rider classification" FROM table_38699 WHERE "General classification" = 'tonton susanto' AND "Stage winner" = 'yusuke hatanaka' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When Yusuke Hatanaka was the stage winner in the tonton susanto general classification, what was the malaysian rider classif... |
tell me the method of intake of clobetasol propionate 0.05% ointment? | CREATE TABLE admissions (
row_id number,
subject_id number,
hadm_id number,
admittime time,
dischtime time,
admission_type text,
admission_location text,
discharge_location text,
insurance text,
language text,
marital_status text,
ethnicity text,
age number
)
CREATE ... | SELECT DISTINCT prescriptions.route FROM prescriptions WHERE prescriptions.drug = 'clobetasol propionate 0.05% ointment' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: tell me the method of intake of clobetasol propionate 0.05% ointment? ### Input: CREATE TABLE admissions (
row_id number... |
How many episodes were written by Alexander Woo and directed by Scott Winant? | CREATE TABLE table_26493520_1 (
title VARCHAR,
written_by VARCHAR,
directed_by VARCHAR
) | SELECT COUNT(title) FROM table_26493520_1 WHERE written_by = "Alexander Woo" AND directed_by = "Scott Winant" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many episodes were written by Alexander Woo and directed by Scott Winant? ### Input: CREATE TABLE table_26493520_1 (
... |
give the number of patients whose admission year is before 2111 and lab test fluid is pleural. | CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE demographic (... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admityear < "2111" AND lab.fluid = "Pleural" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: give the number of patients whose admission year is before 2111 and lab test fluid is pleural. ### Input: CREATE TABLE diagn... |
What's the result for the game held on December 27, 2004 with a week greater than 2? | CREATE TABLE table_32707 (
"Week" real,
"Date" text,
"Opponent" text,
"Result" text,
"Record" text,
"Attendance" text
) | SELECT "Result" FROM table_32707 WHERE "Week" > '2' AND "Date" = 'december 27, 2004' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the result for the game held on December 27, 2004 with a week greater than 2? ### Input: CREATE TABLE table_32707 (
... |
What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony? | CREATE TABLE table_name_37 (
interregnum_ended VARCHAR,
count_palatine_of_saxony VARCHAR
) | SELECT interregnum_ended FROM table_name_37 WHERE count_palatine_of_saxony = "frederick augustus i, elector of saxony" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the Interregnum ended for Count Palatine of Saxony of frederick augustus i, elector of saxony? ### Input: CREATE TAB... |
provide the number of patients whose primary disease is congestive heart failure and admission year is less than 2155? | CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE demographic (
subject_id text,
hadm_id text,
name text,
marital_status text,
age text,
dob text,
gender text,
language text,
religion text,
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CONGESTIVE HEART FAILURE" AND demographic.admityear < "2155" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: provide the number of patients whose primary disease is congestive heart failure and admission year is less than 2155? ### I... |
In what year was cumulus founded? | CREATE TABLE table_27295 (
"Freq" real,
"Call" text,
"City" text,
"Owner" text,
"Start" real,
"Day Power ( W )" real,
"Night Power" real,
"Nickname" text,
"Format" text,
"Stereo" text
) | SELECT MIN("Start") FROM table_27295 WHERE "Owner" = 'Cumulus' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In what year was cumulus founded? ### Input: CREATE TABLE table_27295 (
"Freq" real,
"Call" text,
"City" text,
... |
Top 1000 users from India. | CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
CREATE TABLE Badges (
Id number,
UserId number,
Name text,
Date time,
Class number,
TagBased boolean
)
CREATE TABLE PostLinks (
Id number,
CreationDate time,
PostId number,
RelatedPostId number... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation FROM Users WHERE LOWER(Location) LIKE '%india%' OR UPPER(Location) LIKE '%IND' ORDER BY Reputation DESC LIMIT 1000 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Top 1000 users from India. ### Input: CREATE TABLE CloseReasonTypes (
Id number,
Name text,
Description text
)
... |
What are the order dates of orders with price higher than 1000, and count them by a line chart | CREATE TABLE Drama_Workshop_Groups (
Workshop_Group_ID INTEGER,
Address_ID INTEGER,
Currency_Code CHAR(15),
Marketing_Region_Code CHAR(15),
Store_Name VARCHAR(255),
Store_Phone VARCHAR(255),
Store_Email_Address VARCHAR(255),
Other_Details VARCHAR(255)
)
CREATE TABLE Clients (
Client... | SELECT Order_Date, COUNT(Order_Date) FROM Customer_Orders AS T1 JOIN Order_Items AS T2 ON T1.Order_ID = T2.Order_ID JOIN Products AS T3 ON T2.Product_ID = T3.Product_ID WHERE T3.Product_Price > 1000 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the order dates of orders with price higher than 1000, and count them by a line chart ### Input: CREATE TABLE Drama... |
If the height in inches is 5'7', what is the represented? | CREATE TABLE table_26165 (
"Represented" text,
"Contestant" text,
"Age" real,
"Height (in.)" text,
"Height (cm.)" real,
"Hometown" text
) | SELECT "Represented" FROM table_26165 WHERE "Height (in.)" = '5''7' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: If the height in inches is 5'7', what is the represented? ### Input: CREATE TABLE table_26165 (
"Represented" text,
... |
What placement gets more than $400? | CREATE TABLE table_name_18 (
place VARCHAR,
money___$__ INTEGER
) | SELECT place FROM table_name_18 WHERE money___$__ > 400 | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What placement gets more than $400? ### Input: CREATE TABLE table_name_18 (
place VARCHAR,
money___$__ INTEGER
) ###... |
What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95? | CREATE TABLE table_74984 (
"Year" real,
"Class" text,
"Team" text,
"Points" real,
"Wins" real
) | SELECT AVG("Year") FROM table_74984 WHERE "Wins" > '0' AND "Class" = '250cc' AND "Points" = '95' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the mean year number where there are more than 0 wins, the class is 250cc, and the points are 95? ### Input: CREATE ... |
How many first elections have Claude Fuller as incumbent? | CREATE TABLE table_18653 (
"District" text,
"Incumbent" text,
"Party" text,
"First elected" real,
"Result" text,
"Candidates" text
) | SELECT COUNT("First elected") FROM table_18653 WHERE "Incumbent" = 'Claude Fuller' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many first elections have Claude Fuller as incumbent? ### Input: CREATE TABLE table_18653 (
"District" text,
"In... |
How many Touchdowns have Extra points larger than 0, and Points of 48? | CREATE TABLE table_37812 (
"Player" text,
"Touchdowns" real,
"Extra points" real,
"Field goals" real,
"Points" real
) | SELECT COUNT("Touchdowns") FROM table_37812 WHERE "Extra points" > '0' AND "Points" = '48' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: How many Touchdowns have Extra points larger than 0, and Points of 48? ### Input: CREATE TABLE table_37812 (
"Player" te... |
What is 2004, when 2008 is 'WTA Premier 5 Tournaments'? | CREATE TABLE table_name_19 (
Id VARCHAR
) | SELECT 2004 FROM table_name_19 WHERE 2008 = "wta premier 5 tournaments" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is 2004, when 2008 is 'WTA Premier 5 Tournaments'? ### Input: CREATE TABLE table_name_19 (
Id VARCHAR
) ### Respons... |
how many silver medals did turkey win ? | CREATE TABLE table_203_812 (
id number,
"rank" number,
"nation" text,
"gold" number,
"silver" number,
"bronze" number,
"total" number
) | SELECT "silver" FROM table_203_812 WHERE "nation" = 'turkey' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: how many silver medals did turkey win ? ### Input: CREATE TABLE table_203_812 (
id number,
"rank" number,
"natio... |
Popular tags over last 30 days. | CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId number,
ParentId number,
CreationDate time,
DeletionDate time,
Score number,
ViewCount number,
Body text,
OwnerUserId number,
OwnerDisplayName text,
LastEditorUserId number,
LastEditorDisplayName text... | WITH tags_info AS (SELECT TagName, Votes.Id AS V_Id, Posts.Id AS P_Id, Posts.OwnerUserId AS P_OwnerUserId, Posts.CreationDate AS P_CreationDate FROM Tags INNER JOIN PostTags ON PostTags.TagId = Tags.Id INNER JOIN Posts ON Posts.ParentId = PostTags.PostId AND Posts.PostTypeId = 2 INNER JOIN Votes ON Votes.PostId = Posts... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Popular tags over last 30 days. ### Input: CREATE TABLE Posts (
Id number,
PostTypeId number,
AcceptedAnswerId n... |
Number of answers for questions with an accepted answer. | CREATE TABLE PostHistoryTypes (
Id number,
Name text
)
CREATE TABLE Votes (
Id number,
PostId number,
VoteTypeId number,
UserId number,
CreationDate time,
BountyAmount number
)
CREATE TABLE PostNoticeTypes (
Id number,
ClassId number,
Name text,
Body text,
IsHidden ... | SELECT Posts.Id AS "post_link", Posts.ViewCount AS "views", Posts.AnswerCount AS "#_answers" FROM Posts WHERE PostTypeId = 1 AND NOT Posts.AcceptedAnswerId IS NULL ORDER BY Posts.AnswerCount DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Number of answers for questions with an accepted answer. ### Input: CREATE TABLE PostHistoryTypes (
Id number,
Name ... |
Name the scores for michael buerk and russell howard | CREATE TABLE table_2904 (
"Episode" text,
"First broadcast" text,
"Davids team" text,
"Lees team" text,
"Scores" text
) | SELECT "Scores" FROM table_2904 WHERE "Lees team" = 'Michael Buerk and Russell Howard' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the scores for michael buerk and russell howard ### Input: CREATE TABLE table_2904 (
"Episode" text,
"First bro... |
What is the earliest game with a score of 99-89? | CREATE TABLE table_76884 (
"Game" real,
"Date" text,
"Opponent" text,
"Score" text,
"Location" text,
"Record" text
) | SELECT MIN("Game") FROM table_76884 WHERE "Score" = '99-89' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the earliest game with a score of 99-89? ### Input: CREATE TABLE table_76884 (
"Game" real,
"Date" text,
... |
What are the ids and details for all organizations that have grants of more than 6000 dollars Show bar chart, and could you order in descending by the total number? | CREATE TABLE Grants (
grant_id INTEGER,
organisation_id INTEGER,
grant_amount DECIMAL(19,4),
grant_start_date DATETIME,
grant_end_date DATETIME,
other_details VARCHAR(255)
)
CREATE TABLE Documents (
document_id INTEGER,
document_type_code VARCHAR(10),
grant_id INTEGER,
sent_date... | SELECT T2.organisation_details, T1.organisation_id FROM Grants AS T1 JOIN Organisations AS T2 ON T1.organisation_id = T2.organisation_id GROUP BY T2.organisation_details ORDER BY T1.organisation_id DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the ids and details for all organizations that have grants of more than 6000 dollars Show bar chart, and could you ... |
Tell me the timeslot for calls of whyn | CREATE TABLE table_31967 (
"Calls" text,
"Frequency" text,
"Branding" text,
"Format" text,
"Timeslot" text,
"Group owner" text
) | SELECT "Timeslot" FROM table_31967 WHERE "Calls" = 'whyn' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Tell me the timeslot for calls of whyn ### Input: CREATE TABLE table_31967 (
"Calls" text,
"Frequency" text,
"Br... |
give the maximum days of hospital stay for patients who are born after 2053. | CREATE TABLE lab (
subject_id text,
hadm_id text,
itemid text,
charttime text,
flag text,
value_unit text,
label text,
fluid text
)
CREATE TABLE diagnoses (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE procedures (
... | SELECT MAX(demographic.days_stay) FROM demographic WHERE demographic.dob_year > "2053" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: give the maximum days of hospital stay for patients who are born after 2053. ### Input: CREATE TABLE lab (
subject_id te... |
When was Quantum Research's poll conducted? | CREATE TABLE table_20683381_2 (
date_of_opinion_poll VARCHAR,
conductor VARCHAR
) | SELECT date_of_opinion_poll FROM table_20683381_2 WHERE conductor = "Quantum Research" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: When was Quantum Research's poll conducted? ### Input: CREATE TABLE table_20683381_2 (
date_of_opinion_poll VARCHAR,
... |
In what year was ' Kevin Spacey ' born ? | CREATE TABLE producer (
pid int,
gender text,
name text,
nationality text,
birth_city text,
birth_year int
)
CREATE TABLE director (
did int,
gender text,
name text,
nationality text,
birth_city text,
birth_year int
)
CREATE TABLE tv_series (
sid int,
title text... | SELECT birth_year FROM writer WHERE name = 'Kevin Spacey' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In what year was ' Kevin Spacey ' born ? ### Input: CREATE TABLE producer (
pid int,
gender text,
name text,
... |
Name the coronie for marowijne being 6.8% | CREATE TABLE table_21149 (
"Religion" text,
"Suriname" text,
"Paramaribo" text,
"Wanica" text,
"Nickerie" text,
"Coronie" text,
"Saramacca" text,
"Commewijne" text,
"Marowijne" text,
"Para" text,
"Brokopondo" text,
"Sipaliwini" text
) | SELECT "Coronie" FROM table_21149 WHERE "Marowijne" = '6.8%' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: Name the coronie for marowijne being 6.8% ### Input: CREATE TABLE table_21149 (
"Religion" text,
"Suriname" text,
... |
What are the personal names and family names of the students? Sort the result in alphabetical order of the family name. | CREATE TABLE subjects (
subject_id number,
subject_name text
)
CREATE TABLE course_authors_and_tutors (
author_id number,
author_tutor_atb text,
login_name text,
password text,
personal_name text,
middle_name text,
family_name text,
gender_mf text,
address_line_1 text
)
CRE... | SELECT personal_name, family_name FROM students ORDER BY family_name | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What are the personal names and family names of the students? Sort the result in alphabetical order of the family name. ### ... |
What was the loss of the game when the record was 46-84? | CREATE TABLE table_34841 (
"Date" text,
"Opponent" text,
"Score" text,
"Loss" text,
"Attendance" text,
"Record" text
) | SELECT "Loss" FROM table_34841 WHERE "Record" = '46-84' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What was the loss of the game when the record was 46-84? ### Input: CREATE TABLE table_34841 (
"Date" text,
"Opponen... |
What's the total number of crew chiefs of the Fas Lane Racing team? | CREATE TABLE table_1266602_1 (
crew_chief VARCHAR,
team VARCHAR
) | SELECT COUNT(crew_chief) FROM table_1266602_1 WHERE team = "FAS Lane Racing" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What's the total number of crew chiefs of the Fas Lane Racing team? ### Input: CREATE TABLE table_1266602_1 (
crew_chief... |
What is the weight of the bullet used in a Weatherby? | CREATE TABLE table_16010376_1 (
bullet_weight VARCHAR,
source VARCHAR
) | SELECT bullet_weight FROM table_16010376_1 WHERE source = "Weatherby" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What is the weight of the bullet used in a Weatherby? ### Input: CREATE TABLE table_16010376_1 (
bullet_weight VARCHAR,
... |
In which district was the incumbent Dick Saslaw? | CREATE TABLE table_835 (
"District" text,
"Incumbent" text,
"Party" text,
"Elected" real,
"Status" text,
"2007 Result" text
) | SELECT "District" FROM table_835 WHERE "Incumbent" = 'Dick Saslaw' | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: In which district was the incumbent Dick Saslaw? ### Input: CREATE TABLE table_835 (
"District" text,
"Incumbent" te... |
provide the number of patients whose drug code is mago140 and lab test category is hematology. | CREATE TABLE procedures (
subject_id text,
hadm_id text,
icd9_code text,
short_title text,
long_title text
)
CREATE TABLE prescriptions (
subject_id text,
hadm_id text,
icustay_id text,
drug_type text,
drug text,
formulary_drug_cd text,
route text,
drug_dose text
)
... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE prescriptions.formulary_drug_cd = "MAGO140" AND lab."CATEGORY" = "Hematology" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: provide the number of patients whose drug code is mago140 and lab test category is hematology. ### Input: CREATE TABLE proce... |
For those employees who was hired before 2002-06-21, visualize a bar chart about the distribution of hire_date and the sum of department_id bin hire_date by time, and show Y-axis in desc order. | CREATE TABLE departments (
DEPARTMENT_ID decimal(4,0),
DEPARTMENT_NAME varchar(30),
MANAGER_ID decimal(6,0),
LOCATION_ID decimal(4,0)
)
CREATE TABLE regions (
REGION_ID decimal(5,0),
REGION_NAME varchar(25)
)
CREATE TABLE employees (
EMPLOYEE_ID decimal(6,0),
FIRST_NAME varchar(20),
... | SELECT HIRE_DATE, SUM(DEPARTMENT_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' ORDER BY SUM(DEPARTMENT_ID) DESC | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: For those employees who was hired before 2002-06-21, visualize a bar chart about the distribution of hire_date and the sum o... |
What district is incumbent frank chelf from? | CREATE TABLE table_1341884_19 (
district VARCHAR,
incumbent VARCHAR
) | SELECT district FROM table_1341884_19 WHERE incumbent = "Frank Chelf" | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: What district is incumbent frank chelf from? ### Input: CREATE TABLE table_1341884_19 (
district VARCHAR,
incumbent ... |
how many days have elapsed since patient 004-13127 last received a -monos lab test on their current hospital visit? | CREATE TABLE vitalperiodic (
vitalperiodicid number,
patientunitstayid number,
temperature number,
sao2 number,
heartrate number,
respiration number,
systemicsystolic number,
systemicdiastolic number,
systemicmean number,
observationtime time
)
CREATE TABLE patient (
uniquep... | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', lab.labresulttime)) FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '004-13127' AND patient.hospi... | Below are sql tables schemas paired with instruction that describes a task. Using valid SQLite, write a response that appropriately completes the request for the provided tables. ### Instruction: how many days have elapsed since patient 004-13127 last received a -monos lab test on their current hospital visit? ### Inpu... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.