instruction
stringlengths
0
1.06k
input
stringlengths
33
7.14k
response
stringlengths
2
4.44k
source
stringclasses
25 values
text
stringlengths
302
8.5k
What is the Musical Guest (Song performed) for the episode aired on 13 july 2008?
CREATE TABLE table_name_2 ( musical_guest__song_performed_ VARCHAR, air_date VARCHAR )
SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008"
sql_create_context
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 Musical Guest (Song performed) for the episode aired on 13 july 2008? ### Input: CREATE TABLE table_name_2 ( ...
Create a bar chart showing the total number across team
CREATE TABLE repair ( repair_ID int, name text, Launch_Date text, Notes text ) CREATE TABLE technician ( technician_id real, Name text, Team text, Starting_Year real, Age int ) CREATE TABLE machine ( Machine_ID int, Making_Year int, Class text, Team text, Machin...
SELECT Team, COUNT(*) FROM technician GROUP BY Team
nvbench
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: Create a bar chart showing the total number across team ### Input: CREATE TABLE repair ( repair_ID int, name text, ...
If the name of the district is the Charyl Stockwell Academy, what is the county name?
CREATE TABLE table_25212 ( "District name" text, "Dist. ID" real, "ISD" text, "County" text, "Authorizing agency" text, "Date opened" text, "Services" text )
SELECT "County" FROM table_25212 WHERE "District name" = 'Charyl Stockwell Academy'
wikisql
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 name of the district is the Charyl Stockwell Academy, what is the county name? ### Input: CREATE TABLE table_25212 ( ...
Name the most margin for nco party and p. ramachandran won
CREATE TABLE table_22754310_1 ( margin INTEGER, party VARCHAR, winner VARCHAR )
SELECT MAX(margin) FROM table_22754310_1 WHERE party = "NCO" AND winner = "P. Ramachandran"
sql_create_context
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 most margin for nco party and p. ramachandran won ### Input: CREATE TABLE table_22754310_1 ( margin INTEGER, ...
Which Week has a Result of l 13-16 and an Opponent of at buffalo bills?
CREATE TABLE table_42057 ( "Week" real, "Date" text, "TV Time" text, "Opponent" text, "Result" text )
SELECT AVG("Week") FROM table_42057 WHERE "Result" = 'l 13-16' AND "Opponent" = 'at buffalo bills'
wikisql
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 Week has a Result of l 13-16 and an Opponent of at buffalo bills? ### Input: CREATE TABLE table_42057 ( "Week" rea...
How many loses have points greater than 30, goals scored greater than 59, with a position greater than 5?
CREATE TABLE table_name_84 ( loses INTEGER, position VARCHAR, points VARCHAR, goals_scored VARCHAR )
SELECT SUM(loses) FROM table_name_84 WHERE points > 30 AND goals_scored > 59 AND position > 5
sql_create_context
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 loses have points greater than 30, goals scored greater than 59, with a position greater than 5? ### Input: CREATE ...
Is there an CLIMATE 400 -level course that contains 4 credits ?
CREATE TABLE student_record ( student_id int, course_id int, semester int, grade varchar, how varchar, transfer_source varchar, earn_credit varchar, repeat_term varchar, test_id varchar ) CREATE TABLE semester ( semester_id int, semester varchar, year int ) CREATE TABLE...
SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id INNER JOIN course_offering ON course.course_id = course_offering.course_id INNER JOIN semester ON semester.semester_id = course_offering.semester WHERE program_course.catego...
advising
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 there an CLIMATE 400 -level course that contains 4 credits ? ### Input: CREATE TABLE student_record ( student_id int,...
For all employees who have the letters D or S in their first name, draw a line chart about the change of employee_id over hire_date , and list in desc by the x axis please.
CREATE TABLE countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) 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 T...
SELECT HIRE_DATE, EMPLOYEE_ID FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY HIRE_DATE DESC
nvbench
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, draw a line chart about the change of employee_id over hi...
what is average age of patients whose marital status is single and year of birth is greater than 2175?
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 AVG(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.dob_year > "2175"
mimicsql_data
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 average age of patients whose marital status is single and year of birth is greater than 2175? ### Input: CREATE TAB...
For those records from the products and each product's manufacturer, find name and the average of code , and group by attribute name, and visualize them by a bar chart, rank by the Y-axis in asc.
CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER ) CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL )
SELECT T1.Name, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T1.Name ORDER BY T1.Code
nvbench
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, find name and the average of code , and group by attrib...
give me the number of patients whose ethnicity is american indian/alaska native and item id is 50803?
CREATE TABLE procedures ( 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 prescription...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND lab.itemid = "50803"
mimicsql_data
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 me the number of patients whose ethnicity is american indian/alaska native and item id is 50803? ### Input: CREATE TABL...
first time patient 26156 got surgery until 2104?
CREATE TABLE d_items ( row_id number, itemid number, label text, linksto text ) CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE icustays ( row_id number, s...
SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 26156) AND STRFTIME('%y', procedures_icd.charttime) <= '2104' ORDER BY procedures_icd.charttime LIMIT 1
mimic_iii
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: first time patient 26156 got surgery until 2104? ### Input: CREATE TABLE d_items ( row_id number, itemid number, ...
What is the GDP of the nation with 56,210,000 people?
CREATE TABLE table_71503 ( "Member countries" text, "Population" text, "Area (km\u00b2)" text, "GDP (billion US$)" text, "GDP per capita (US$)" text )
SELECT "GDP per capita (US$)" FROM table_71503 WHERE "Population" = '56,210,000'
wikisql
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 GDP of the nation with 56,210,000 people? ### Input: CREATE TABLE table_71503 ( "Member countries" text, ...
What district has benjamin eggleston for incumbent?
CREATE TABLE table_name_52 ( district VARCHAR, incumbent VARCHAR )
SELECT district FROM table_name_52 WHERE incumbent = "benjamin eggleston"
sql_create_context
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 has benjamin eggleston for incumbent? ### Input: CREATE TABLE table_name_52 ( district VARCHAR, incumb...
What is the number of patients less than 85 years old who have coronary artery disease or coronary artery bypass graft with mvr or maze primary disease?
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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT WITH MVR; ? MAZE" AND demographic.age < "85"
mimicsql_data
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 less than 85 years old who have coronary artery disease or coronary artery bypass graft with ...
What is the fewest number of wickets recorded?
CREATE TABLE table_30110 ( "Player" text, "Matches" real, "Overs" text, "Wickets" real, "Average" text, "Economy" text, "BBI" text, "4wi" real )
SELECT MIN("Wickets") FROM table_30110
wikisql
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 fewest number of wickets recorded? ### Input: CREATE TABLE table_30110 ( "Player" text, "Matches" real, ...
What is the highest overall prior to 1996 with a slalom of 39?
CREATE TABLE table_name_33 ( overall INTEGER, slalom VARCHAR, season VARCHAR )
SELECT MAX(overall) FROM table_name_33 WHERE slalom = "39" AND season < 1996
sql_create_context
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 overall prior to 1996 with a slalom of 39? ### Input: CREATE TABLE table_name_33 ( overall INTEGER, ...
Tell me the position for pick of 146
CREATE TABLE table_name_7 ( position VARCHAR, pick VARCHAR )
SELECT position FROM table_name_7 WHERE pick = "146"
sql_create_context
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 position for pick of 146 ### Input: CREATE TABLE table_name_7 ( position VARCHAR, pick VARCHAR ) ### Res...
What are the rooms for members of the faculty who are professors and who live in building NEB?
CREATE TABLE minor_in ( stuid number, dno number ) CREATE TABLE enrolled_in ( stuid number, cid text, grade text ) CREATE TABLE member_of ( facid number, dno number, appt_type text ) CREATE TABLE course ( cid text, cname text, credits number, instructor number, day...
SELECT room FROM faculty WHERE rank = "Professor" AND building = "NEB"
spider
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 rooms for members of the faculty who are professors and who live in building NEB? ### Input: CREATE TABLE minor...
A bar chart about the number of first name for all female students whose sex is F, list by the x-axis in descending.
CREATE TABLE Has_Allergy ( StuID INTEGER, Allergy VARCHAR(20) ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Advisor INTEGER, city_code VARCHAR(3) ) CREATE TABLE Allergy_Type ( Allergy VARCHAR(20), ...
SELECT Fname, COUNT(Fname) FROM Student WHERE Sex = 'F' GROUP BY Fname ORDER BY Fname DESC
nvbench
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: A bar chart about the number of first name for all female students whose sex is F, list by the x-axis in descending. ### Inp...
which composer is listed below pete doherty ?
CREATE TABLE table_204_969 ( id number, "composer" text, "title" text, "genre" text, "date" number, "notes" text )
SELECT "composer" FROM table_204_969 WHERE id = (SELECT id FROM table_204_969 WHERE "composer" = 'pete doherty') + 1
squall
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 composer is listed below pete doherty ? ### Input: CREATE TABLE table_204_969 ( id number, "composer" text, ...
give me the number of patients whose marital status is single and diagnoses long title is syncope and collapse?
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 procedures ( ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.marital_status = "SINGLE" AND diagnoses.long_title = "Syncope and collapse"
mimicsql_data
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 me the number of patients whose marital status is single and diagnoses long title is syncope and collapse? ### Input: C...
When Payne Stewart of the United States scored higher than 69, what was the To Par?
CREATE TABLE table_47375 ( "Place" text, "Player" text, "Country" text, "Score" real, "To par" text )
SELECT "To par" FROM table_47375 WHERE "Country" = 'united states' AND "Score" > '69' AND "Player" = 'payne stewart'
wikisql
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 Payne Stewart of the United States scored higher than 69, what was the To Par? ### Input: CREATE TABLE table_47375 ( ...
What is the first name and GPA of every student that has a GPA lower than average.
CREATE TABLE COURSE ( CRS_CODE varchar(10), DEPT_CODE varchar(10), CRS_DESCRIPTION varchar(35), CRS_CREDIT float(8) ) CREATE TABLE CLASS ( CLASS_CODE varchar(5), CRS_CODE varchar(10), CLASS_SECTION varchar(2), CLASS_TIME varchar(20), CLASS_ROOM varchar(8), PROF_NUM int ) CREATE...
SELECT STU_FNAME, SUM(STU_GPA) FROM STUDENT WHERE STU_GPA < (SELECT AVG(STU_GPA) FROM STUDENT) GROUP BY STU_FNAME
nvbench
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 first name and GPA of every student that has a GPA lower than average. ### Input: CREATE TABLE COURSE ( CRS_...
what is the number of patients whose year of death is less than or equal to 2126 and procedure long title is (aorto)coronary bypass of two coronary arteries?
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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.dod_year <= "2126.0" AND procedures.long_title = "(Aorto)coronary bypass of two coronary arteries"
mimicsql_data
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 year of death is less than or equal to 2126 and procedure long title is (aorto)coronary...
bernadette 's soms and which other song earned the same number of points ?
CREATE TABLE table_204_915 ( id number, "draw" number, "artist" text, "song" text, "points" number, "place" text )
SELECT "song" FROM table_204_915 WHERE "song" <> '"soms"' AND "points" = (SELECT "points" FROM table_204_915 WHERE "song" = '"soms"')
squall
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: bernadette 's soms and which other song earned the same number of points ? ### Input: CREATE TABLE table_204_915 ( id nu...
what is the ground transportation available in the city of PHILADELPHIA
CREATE TABLE restriction ( restriction_code text, advance_purchase int, stopovers text, saturday_stay_required text, minimum_stay int, maximum_stay int, application text, no_discounts text ) CREATE TABLE fare_basis ( fare_basis_code text, booking_class text, class_type text,...
SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'PHILADELPHIA' AND ground_service.city_code = city.city_code
atis
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 ground transportation available in the city of PHILADELPHIA ### Input: CREATE TABLE restriction ( restrictio...
what is the earliest year when the author is reki kawahara?
CREATE TABLE table_name_42 ( year INTEGER, author VARCHAR )
SELECT MIN(year) FROM table_name_42 WHERE author = "reki kawahara"
sql_create_context
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 year when the author is reki kawahara? ### Input: CREATE TABLE table_name_42 ( year INTEGER, au...
give me the number of patients whose diagnoses long title is other preterm infants, 2,000-2,499 grams?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.long_title = "Other preterm infants, 2,000-2,499 grams"
mimicsql_data
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 me the number of patients whose diagnoses long title is other preterm infants, 2,000-2,499 grams? ### Input: CREATE TAB...
how many roman catholic dioceses were established in angola before 1990 ?
CREATE TABLE table_204_876 ( id number, "ecclesiastical jurisdictions" text, "latin name" text, "type" text, "rite" text, "ecclesiastical province" text, "established" text, "area (km2)" number )
SELECT COUNT("ecclesiastical jurisdictions") FROM table_204_876 WHERE "established" < 1990
squall
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 roman catholic dioceses were established in angola before 1990 ? ### Input: CREATE TABLE table_204_876 ( id num...
which of the teams had the top number of capacity ?
CREATE TABLE table_204_750 ( id number, "team" text, "stadium" text, "capacity" number, "seated" number )
SELECT "team" FROM table_204_750 ORDER BY "capacity" DESC LIMIT 1
squall
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 of the teams had the top number of capacity ? ### Input: CREATE TABLE table_204_750 ( id number, "team" text, ...
what is the number of patients whose age is less than 62 and diagnoses long title is acute glomerulonephritis with other specified pathological lesion in kidney?
CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.age < "62" AND diagnoses.long_title = "Acute glomerulonephritis with other specified pathological lesion in kidney"
mimicsql_data
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 62 and diagnoses long title is acute glomerulonephritis with other spe...
Show all train names and times in stations in London in descending order by train time.
CREATE TABLE train ( train_id number, name text, time text, service text ) CREATE TABLE train_station ( train_id number, station_id number ) CREATE TABLE station ( station_id number, name text, annual_entry_exit number, annual_interchanges number, total_passengers number, ...
SELECT T3.name, T3.time FROM train_station AS T1 JOIN station AS T2 ON T1.station_id = T2.station_id JOIN train AS T3 ON T3.train_id = T1.train_id WHERE T2.location = 'London' ORDER BY T3.time DESC
spider
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 all train names and times in stations in London in descending order by train time. ### Input: CREATE TABLE train ( ...
What is Style, when Choreographer(s) is Dave Scott?
CREATE TABLE table_name_17 ( style VARCHAR, choreographer_s_ VARCHAR )
SELECT style FROM table_name_17 WHERE choreographer_s_ = "dave scott"
sql_create_context
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 Style, when Choreographer(s) is Dave Scott? ### Input: CREATE TABLE table_name_17 ( style VARCHAR, choreogra...
Who's the incumbent in Florida 6?
CREATE TABLE table_18141 ( "District" text, "Incumbent" text, "Party" text, "First elected" real, "Results" text, "Candidates" text )
SELECT "Incumbent" FROM table_18141 WHERE "District" = 'Florida 6'
wikisql
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's the incumbent in Florida 6? ### Input: CREATE TABLE table_18141 ( "District" text, "Incumbent" text, "Part...
give me the flights from MIAMI to NEW YORK using FF
CREATE TABLE equipment_sequence ( aircraft_code_sequence varchar, aircraft_code varchar ) CREATE TABLE flight ( aircraft_code_sequence text, airline_code varchar, airline_flight text, arrival_time int, connections int, departure_time int, dual_carrier text, flight_days text, ...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'NEW YORK' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'MIAM...
atis
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 me the flights from MIAMI to NEW YORK using FF ### Input: CREATE TABLE equipment_sequence ( aircraft_code_sequence ...
For team ascoli please mention all the appointment date.
CREATE TABLE table_27114708_2 ( date_of_appointment VARCHAR, team VARCHAR )
SELECT date_of_appointment FROM table_27114708_2 WHERE team = "Ascoli"
sql_create_context
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 team ascoli please mention all the appointment date. ### Input: CREATE TABLE table_27114708_2 ( date_of_appointment ...
how many notes are form the date (from) 14 march 1910?
CREATE TABLE table_17715 ( "Name of System" text, "Location" text, "Traction Type" text, "Date (From)" text, "Date (To)" text, "Notes" text )
SELECT COUNT("Notes") FROM table_17715 WHERE "Date (From)" = '14 March 1910'
wikisql
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 notes are form the date (from) 14 march 1910? ### Input: CREATE TABLE table_17715 ( "Name of System" text, ...
How many match numbers have team europe listed as osku palermaa?
CREATE TABLE table_1987 ( "Match no." real, "Match Type" text, "Team Europe" text, "Score" text, "Team USA" text, "Progressive Total" text )
SELECT COUNT("Match no.") FROM table_1987 WHERE "Team Europe" = 'Osku Palermaa'
wikisql
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 match numbers have team europe listed as osku palermaa? ### Input: CREATE TABLE table_1987 ( "Match no." real, ...
How many users with rep less than 15.
CREATE TABLE PostLinks ( Id number, CreationDate time, PostId number, RelatedPostId number, LinkTypeId number ) CREATE TABLE SuggestedEdits ( Id number, PostId number, CreationDate time, ApprovalDate time, RejectionDate time, OwnerUserId number, Comment text, Text te...
SELECT COUNT(*) AS Users FROM Users WHERE Reputation < 15 AND Id > 0
sede
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 users with rep less than 15. ### Input: CREATE TABLE PostLinks ( Id number, CreationDate time, PostId n...
Which League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany lions men's ice hockey?
CREATE TABLE table_46856 ( "Sport" text, "League" text, "Club" text, "Founded" real, "Venue" text, "League championships" real, "Championship years" text )
SELECT MIN("League championships") FROM table_46856 WHERE "Venue" = 'penn state ice pavilion' AND "Club" = 'penn state nittany lions men''s ice hockey'
wikisql
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 League championship is the lowest one that has a Venue of penn state ice pavilion, and a Club of penn state nittany li...
estimated glomerular filtration rate ( egfr ) < 30 ml / min / 1.73 m2 using the mdrd formula at visit 1.
CREATE TABLE table_test_4 ( "id" int, "ejection_fraction_ef" int, "systolic_blood_pressure_sbp" int, "active_infection" bool, "heart_disease" bool, "renal_disease" bool, "estimated_glomerular_filtration_rate_egfr" int, "cardiogenic_shock" bool, "diastolic_blood_pressure_dbp" int, ...
SELECT * FROM table_test_4 WHERE estimated_glomerular_filtration_rate_egfr < 30
criteria2sql
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: estimated glomerular filtration rate ( egfr ) < 30 ml / min / 1.73 m2 using the mdrd formula at visit 1. ### Input: CREATE T...
Which Years in Orlando has a School/Club Team of texas tech?
CREATE TABLE table_name_74 ( years_in_orlando VARCHAR, school_club_team VARCHAR )
SELECT years_in_orlando FROM table_name_74 WHERE school_club_team = "texas tech"
sql_create_context
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 Years in Orlando has a School/Club Team of texas tech? ### Input: CREATE TABLE table_name_74 ( years_in_orlando VA...
Name the total number of ranks for kujalleq with former name of brattahl and population less than 47
CREATE TABLE table_68047 ( "Rank" real, "Population" real, "Name" text, "Former Name" text, "Municipality" text )
SELECT COUNT("Rank") FROM table_68047 WHERE "Municipality" = 'kujalleq' AND "Former Name" = 'brattahlíð' AND "Population" < '47'
wikisql
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 total number of ranks for kujalleq with former name of brattahl and population less than 47 ### Input: CREATE TABLE...
List categories that have at least two books after year 1989.
CREATE TABLE book_club ( category VARCHAR, YEAR INTEGER )
SELECT category FROM book_club WHERE YEAR > 1989 GROUP BY category HAVING COUNT(*) >= 2
sql_create_context
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 categories that have at least two books after year 1989. ### Input: CREATE TABLE book_club ( category VARCHAR, ...
By whom is BIOLOGY 281 taught ?
CREATE TABLE program ( program_id int, name varchar, college varchar, introduction varchar ) CREATE TABLE student_record ( student_id int, course_id int, semester int, grade varchar, how varchar, transfer_source varchar, earn_credit varchar, repeat_term varchar, test...
SELECT DISTINCT instructor.name FROM course, course_offering, instructor, offering_instructor WHERE course.course_id = course_offering.course_id AND course.department = 'BIOLOGY' AND course.number = 281 AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offering_id = course_offerin...
advising
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: By whom is BIOLOGY 281 taught ? ### Input: CREATE TABLE program ( program_id int, name varchar, college varchar,...
On what date was the handicap 8 st 12 lb?
CREATE TABLE table_2896329_1 ( date VARCHAR, handicap VARCHAR )
SELECT date FROM table_2896329_1 WHERE handicap = "8 st 12 lb"
sql_create_context
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 handicap 8 st 12 lb? ### Input: CREATE TABLE table_2896329_1 ( date VARCHAR, handicap VARCHAR )...
count the number of patients whose diagnoses short title is alcohol cirrhosis liver and lab test category is hematology?
CREATE TABLE lab ( subject_id text, hadm_id text, itemid text, charttime text, flag text, value_unit text, label text, fluid text ) CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.short_title = "Alcohol cirrhosis liver" AND lab."CATEGORY" = "Hematology"
mimicsql_data
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: count the number of patients whose diagnoses short title is alcohol cirrhosis liver and lab test category is hematology? ###...
What Average Pick # has an Overall of 296?
CREATE TABLE table_name_8 ( pick__number INTEGER, overall VARCHAR )
SELECT AVG(pick__number) FROM table_name_8 WHERE overall = 296
sql_create_context
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 Average Pick # has an Overall of 296? ### Input: CREATE TABLE table_name_8 ( pick__number INTEGER, overall VARC...
how many patients whose ethnicity is black/cape verdean and year of birth is less than 2078?
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 ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND demographic.dob_year < "2078"
mimicsql_data
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 ethnicity is black/cape verdean and year of birth is less than 2078? ### Input: CREATE TABLE lab ( ...
what is the number of patients whose procedure long title is open reduction of fracture with internal fixation, femur and lab test category is blood gas?
CREATE TABLE diagnoses ( 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 procedures ON demographic.hadm_id = procedures.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE procedures.long_title = "Open reduction of fracture with internal fixation, femur" AND lab."CATEGORY" = "Blood Gas"
mimicsql_data
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 procedure long title is open reduction of fracture with internal fixation, femur and la...
what is the total of new points that have been given ?
CREATE TABLE table_204_651 ( id number, "date" text, "championship" text, "location" text, "category" text, "surface" text, "prev. result" text, "prev. points" number, "new points" number, "outcome" text )
SELECT SUM("new points") FROM table_204_651
squall
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 of new points that have been given ? ### Input: CREATE TABLE table_204_651 ( id number, "date" tex...
What is Player, when Round is less than 6, and when Pick is '69'?
CREATE TABLE table_9992 ( "Round" real, "Pick" real, "Player" text, "Nationality" text, "College" text )
SELECT "Player" FROM table_9992 WHERE "Round" < '6' AND "Pick" = '69'
wikisql
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 Player, when Round is less than 6, and when Pick is '69'? ### Input: CREATE TABLE table_9992 ( "Round" real, ...
what was the name of the drug patient 32755 got prescription for within 2 days after being diagnosed with bmi 33.0-33.9,adult in the last hospital visit?
CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE prescriptions ( row_id number, subject_id number, hadm_id number, startdate time, enddate time, drug text, ...
SELECT t2.drug FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE admissions.subject_id = 32755 AND diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'bmi 33...
mimic_iii
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 name of the drug patient 32755 got prescription for within 2 days after being diagnosed with bmi 33.0-33.9,adul...
Who was the director that had a recipient of Redbag Pictures Ltd?
CREATE TABLE table_name_54 ( director_s_ VARCHAR, recipient VARCHAR )
SELECT director_s_ FROM table_name_54 WHERE recipient = "redbag pictures ltd"
sql_create_context
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 was the director that had a recipient of Redbag Pictures Ltd? ### Input: CREATE TABLE table_name_54 ( director_s_ VA...
Which Record has a Points smaller than 62 and a February larger than 16, and a Score of 8 7?
CREATE TABLE table_39013 ( "Game" real, "February" real, "Opponent" text, "Score" text, "Record" text, "Points" real )
SELECT "Record" FROM table_39013 WHERE "Points" < '62' AND "February" > '16' AND "Score" = '8–7'
wikisql
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 Record has a Points smaller than 62 and a February larger than 16, and a Score of 8 7? ### Input: CREATE TABLE table_3...
How many artists do we have?
CREATE TABLE exhibition ( exhibition_id number, year number, theme text, artist_id number, ticket_price number ) CREATE TABLE artist ( artist_id number, name text, country text, year_join number, age number ) CREATE TABLE exhibition_record ( exhibition_id number, date t...
SELECT COUNT(*) FROM artist
spider
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 artists do we have? ### Input: CREATE TABLE exhibition ( exhibition_id number, year number, theme text,...
Who had a rank under 17 with a total of 119?
CREATE TABLE table_66216 ( "Rank" real, "Athlete" text, "Country" text, "Day 1" real, "Total" text )
SELECT "Athlete" FROM table_66216 WHERE "Rank" < '17' AND "Total" = '119'
wikisql
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 a rank under 17 with a total of 119? ### Input: CREATE TABLE table_66216 ( "Rank" real, "Athlete" text, ...
Provide the number of patients born before 2123 who have s/p hanging as their primary disease.
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.diagnosis = "S/P HANGING" AND demographic.dob_year < "2123"
mimicsql_data
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 born before 2123 who have s/p hanging as their primary disease. ### Input: CREATE TABLE presc...
What number pick was the player from HIFK Helsinki (Finland)?
CREATE TABLE table_29020 ( "Pick #" real, "Player" text, "Position" text, "Nationality" text, "NHL team" text, "College/junior/club team" text )
SELECT "Pick #" FROM table_29020 WHERE "College/junior/club team" = 'HIFK Helsinki (Finland)'
wikisql
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 number pick was the player from HIFK Helsinki (Finland)? ### Input: CREATE TABLE table_29020 ( "Pick #" real, "...
What is the lowest Year, when Notes is '5.19km, 18controls'?
CREATE TABLE table_name_24 ( year INTEGER, notes VARCHAR )
SELECT MIN(year) FROM table_name_24 WHERE notes = "5.19km, 18controls"
sql_create_context
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 lowest Year, when Notes is '5.19km, 18controls'? ### Input: CREATE TABLE table_name_24 ( year INTEGER, n...
What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n?
CREATE TABLE table_name_50 ( diameter__km_ INTEGER, latitude VARCHAR, year_named VARCHAR, longitude VARCHAR )
SELECT MIN(diameter__km_) FROM table_name_50 WHERE year_named = 1997 AND longitude = "212.0e" AND latitude = "47.0n"
sql_create_context
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 diameter for 1997 when longitude is 212.0e and latitude is 47.0n? ### Input: CREATE TABLE table_name_50 ( di...
What is the most amount of ministries?
CREATE TABLE table_2453 ( "N\u00ba" real, "Cabinet (Nickname)" text, "Took office" text, "Left office" text, "Duration" text, "Coalition parties" text, "ministers" text, "ministries" real, "King" text )
SELECT MAX("ministries") FROM table_2453
wikisql
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 amount of ministries? ### Input: CREATE TABLE table_2453 ( "N\u00ba" real, "Cabinet (Nickname)" tex...
Top questions by Bayesian rating.
CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE ReviewTas...
SELECT Id AS "post_link", upvotes, downvotes, Score, (upvotes + (AVG(upvotes) OVER ())) / (upvotes + downvotes + (AVG(upvotes + downvotes) OVER ())) AS br FROM (SELECT p.Id, COUNT(CASE v.VoteTypeId WHEN 2 THEN 1 ELSE NULL END) AS upvotes, COUNT(CASE v.VoteTypeId WHEN 3 THEN 1 ELSE NULL END) AS downvotes, MAX(p.Score) A...
sede
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 questions by Bayesian rating. ### Input: CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE Po...
Which codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'?
CREATE TABLE table_30888 ( "Code" text, "Subdivision name ( be ) (BGN/PCGN)" text, "Subdivision name ( be ) (GOST)" text, "Subdivision name ( ru ) (BGN/PCGN)" text, "Subdivision name ( ru ) (GOST)" text, "Subdivision category" text )
SELECT "Code" FROM table_30888 WHERE "Subdivision name ( be ) (BGN/PCGN)" = 'Homyel''skaya voblasts'
wikisql
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 codes have subdivision names (BE) (BGN) of Homyel'skaya Voblasts'? ### Input: CREATE TABLE table_30888 ( "Code" te...
How many staffs have contacted with each engineer? Give me a bar chart grouping by each engineer's last name, order the number of last name in descending order.
CREATE TABLE Skills_Required_To_Fix ( part_fault_id INTEGER, skill_id INTEGER ) CREATE TABLE Skills ( skill_id INTEGER, skill_code VARCHAR(20), skill_description VARCHAR(255) ) CREATE TABLE Part_Faults ( part_fault_id INTEGER, part_id INTEGER, fault_short_name VARCHAR(20), fault_de...
SELECT last_name, COUNT(last_name) FROM Staff AS T1 JOIN Engineer_Visits AS T2 ON T1.staff_id = T2.contact_staff_id JOIN Maintenance_Engineers AS T3 ON T2.engineer_id = T3.engineer_id GROUP BY last_name ORDER BY COUNT(last_name) DESC
nvbench
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 staffs have contacted with each engineer? Give me a bar chart grouping by each engineer's last name, order the numb...
Which TV Time has a Date of january 2, 2005?
CREATE TABLE table_name_23 ( tv_time VARCHAR, date VARCHAR )
SELECT tv_time FROM table_name_23 WHERE date = "january 2, 2005"
sql_create_context
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 TV Time has a Date of january 2, 2005? ### Input: CREATE TABLE table_name_23 ( tv_time VARCHAR, date VARCHAR )...
What is the gender of the school which has the website http://www.nicholasbreakspearschool.co.uk/?
CREATE TABLE table_30574 ( "School" text, "Gender" text, "Age Range" text, "Religious Affiliation" text, "Location" text, "School website" text )
SELECT "Gender" FROM table_30574 WHERE "School website" = 'http://www.nicholasbreakspearschool.co.uk/'
wikisql
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 gender of the school which has the website http://www.nicholasbreakspearschool.co.uk/? ### Input: CREATE TABLE t...
What is the rank of the film directed by Kevin Costner?
CREATE TABLE table_44119 ( "Rank" real, "Title" text, "Studio" text, "Director" text, "Gross" text )
SELECT COUNT("Rank") FROM table_44119 WHERE "Director" = 'kevin costner'
wikisql
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 rank of the film directed by Kevin Costner? ### Input: CREATE TABLE table_44119 ( "Rank" real, "Title" t...
What is the average game number that was on october 19?
CREATE TABLE table_46062 ( "Game" real, "October" real, "Opponent" text, "Score" text, "Record" text )
SELECT AVG("Game") FROM table_46062 WHERE "October" = '19'
wikisql
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 average game number that was on october 19? ### Input: CREATE TABLE table_46062 ( "Game" real, "October"...
What is the Craft used at Coniston Water?
CREATE TABLE table_name_15 ( craft VARCHAR, location VARCHAR )
SELECT craft FROM table_name_15 WHERE location = "coniston water"
sql_create_context
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 Craft used at Coniston Water? ### Input: CREATE TABLE table_name_15 ( craft VARCHAR, location VARCHAR ) ...
How many CFL teams drafted someone from mount allison college?
CREATE TABLE table_26996293_3 ( cfl_team VARCHAR, college VARCHAR )
SELECT COUNT(cfl_team) FROM table_26996293_3 WHERE college = "Mount Allison"
sql_create_context
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 CFL teams drafted someone from mount allison college? ### Input: CREATE TABLE table_26996293_3 ( cfl_team VARCH...
give me the number of patients whose year of death is less than or equal to 2122 and drug code is beth5?
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.dod_year <= "2122.0" AND prescriptions.formulary_drug_cd = "BETH5"
mimicsql_data
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 me the number of patients whose year of death is less than or equal to 2122 and drug code is beth5? ### Input: CREATE T...
What's the location when the branding is 1116 DXAS Zamboanga?
CREATE TABLE table_65419 ( "Branding" text, "Call-Sign" text, "Frequency" text, "Power (kw)" text, "Location" text )
SELECT "Location" FROM table_65419 WHERE "Branding" = '1116 dxas zamboanga'
wikisql
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 location when the branding is 1116 DXAS Zamboanga? ### Input: CREATE TABLE table_65419 ( "Branding" text, ...
Who had a points average with 0 extra points and 0 field goals?
CREATE TABLE table_name_33 ( points INTEGER, extra_points VARCHAR, field_goals VARCHAR )
SELECT AVG(points) FROM table_name_33 WHERE extra_points = 0 AND field_goals > 0
sql_create_context
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 a points average with 0 extra points and 0 field goals? ### Input: CREATE TABLE table_name_33 ( points INTEGER, ...
Which Share of seats has a European election (UK) of 2009?
CREATE TABLE table_name_79 ( share_of_seats VARCHAR, european_election__uk_ VARCHAR )
SELECT share_of_seats FROM table_name_79 WHERE european_election__uk_ = 2009
sql_create_context
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 Share of seats has a European election (UK) of 2009? ### Input: CREATE TABLE table_name_79 ( share_of_seats VARCHA...
Which date held the match at the City Stadium, Georgetown?
CREATE TABLE table_name_7 ( date VARCHAR, venue VARCHAR )
SELECT date FROM table_name_7 WHERE venue = "city stadium, georgetown"
sql_create_context
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 date held the match at the City Stadium, Georgetown? ### Input: CREATE TABLE table_name_7 ( date VARCHAR, venu...
Which Allied Force targetted Woensdrecht?
CREATE TABLE table_72197 ( "Target" text, "Target Code (Allied)" text, "Luftwaffe unit (wing)" text, "Allied forces" text, "Effect on Allied Squadrons (according to official figures)" text )
SELECT "Allied forces" FROM table_72197 WHERE "Target" = 'Woensdrecht'
wikisql
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 Allied Force targetted Woensdrecht? ### Input: CREATE TABLE table_72197 ( "Target" text, "Target Code (Allied)...
Find the number of booking start date for the apartments that have more than two bedrooms for each weekday in a bar chart.
CREATE TABLE Apartment_Facilities ( apt_id INTEGER, facility_code CHAR(15) ) CREATE TABLE Apartments ( apt_id INTEGER, building_id INTEGER, apt_type_code CHAR(15), apt_number CHAR(10), bathroom_count INTEGER, bedroom_count INTEGER, room_count CHAR(5) ) CREATE TABLE Apartment_Bookin...
SELECT booking_start_date, COUNT(booking_start_date) FROM Apartment_Bookings AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T2.bedroom_count > 2
nvbench
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: Find the number of booking start date for the apartments that have more than two bedrooms for each weekday in a bar chart. #...
What team had 10 Labs and the Driver was Alex Yoong?
CREATE TABLE table_name_24 ( team VARCHAR, laps VARCHAR, driver VARCHAR )
SELECT team FROM table_name_24 WHERE laps = 10 AND driver = "alex yoong"
sql_create_context
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 team had 10 Labs and the Driver was Alex Yoong? ### Input: CREATE TABLE table_name_24 ( team VARCHAR, laps VARC...
What was the score at Spartan Stadium when San Jose was the Home team?
CREATE TABLE table_35500 ( "Date" text, "Home Team" text, "Score" text, "Away Team" text, "Venue" text )
SELECT "Score" FROM table_35500 WHERE "Home Team" = 'san jose' AND "Venue" = 'spartan stadium'
wikisql
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 at Spartan Stadium when San Jose was the Home team? ### Input: CREATE TABLE table_35500 ( "Date" text...
on 07/28/2102, when was the last time that the arterial bp [diastolic] of patient 21454 was greater than 52.0?
CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE labevents ( row_id number, subject_id number, hadm_id number, itemid number, charttime time, valuenum number...
SELECT chartevents.charttime FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 21454)) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'arterial...
mimic_iii
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 07/28/2102, when was the last time that the arterial bp [diastolic] of patient 21454 was greater than 52.0? ### Input: CR...
what is the score on march 8?
CREATE TABLE table_48673 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text )
SELECT "Score" FROM table_48673 WHERE "Date" = 'march 8'
wikisql
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 score on march 8? ### Input: CREATE TABLE table_48673 ( "Game" real, "Date" text, "Team" text, "...
What is the sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9?
CREATE TABLE table_64785 ( "Rank" real, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT SUM("Bronze") FROM table_64785 WHERE "Total" < '8' AND "Rank" = '9' AND "Silver" < '0'
wikisql
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 sum of the bronze medals when there were less than 8 total medals, 0 silver medals and a rank of 9? ### Input: C...
What are the country of product origins where pesticide residues were not detected?
CREATE TABLE sampledata15 ( sample_pk number, state text, year text, month text, day text, site text, commod text, source_id text, variety text, origin text, country text, disttype text, commtype text, claim text, quantity number, growst text, packst t...
SELECT T1.country FROM sampledata15 AS T1 JOIN resultsdata15 AS T2 ON T1.sample_pk = T2.sample_pk WHERE T2.concen = "0" GROUP BY T1.country
pesticide
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 country of product origins where pesticide residues were not detected? ### Input: CREATE TABLE sampledata15 ( ...
How many times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3?
CREATE TABLE table_name_23 ( silver VARCHAR, gold VARCHAR, bronze VARCHAR, total VARCHAR, rank VARCHAR )
SELECT COUNT(silver) FROM table_name_23 WHERE total < 15 AND rank < 5 AND bronze = 4 AND gold < 3
sql_create_context
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 times is the total less than 15, rank less than 5, bronze is 4 and gold smaller than 3? ### Input: CREATE TABLE tab...
Show the number of accounts opened in each day. Bin the account open day by weekday and group by other account details in a stacked bar chart.
CREATE TABLE Accounts ( account_id INTEGER, customer_id INTEGER, date_account_opened DATETIME, account_name VARCHAR(50), other_account_details VARCHAR(255) ) CREATE TABLE Orders ( order_id INTEGER, customer_id INTEGER, date_order_placed DATETIME, order_details VARCHAR(255) ) CREATE...
SELECT date_account_opened, COUNT(date_account_opened) FROM Accounts GROUP BY other_account_details
nvbench
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 number of accounts opened in each day. Bin the account open day by weekday and group by other account details in a ...
What are all the characteristic names of product 'sesame'?
CREATE TABLE ref_colors ( color_code text, color_description text ) CREATE TABLE products ( product_id number, color_code text, product_category_code text, product_name text, typical_buying_price text, typical_selling_price text, product_description text, other_product_details t...
SELECT t3.characteristic_name FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN characteristics AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "sesame"
spider
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 all the characteristic names of product 'sesame'? ### Input: CREATE TABLE ref_colors ( color_code text, col...
Who was the Semi-Finalist #2 in 2007?
CREATE TABLE table_name_59 ( semi_finalist__number2 VARCHAR, year VARCHAR )
SELECT semi_finalist__number2 FROM table_name_59 WHERE year = "2007"
sql_create_context
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 was the Semi-Finalist #2 in 2007? ### Input: CREATE TABLE table_name_59 ( semi_finalist__number2 VARCHAR, year V...
Name the number of new adherents per year for confucianism
CREATE TABLE table_30288 ( "Religion" text, "Births" real, "Conversions" text, "New adherents per year" real, "Growth rate" text )
SELECT COUNT("New adherents per year") FROM table_30288 WHERE "Religion" = 'Confucianism'
wikisql
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 number of new adherents per year for confucianism ### Input: CREATE TABLE table_30288 ( "Religion" text, "B...
what is average age of patients whose gender is m and days of hospital stay is 27?
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 AVG(demographic.age) FROM demographic WHERE demographic.gender = "M" AND demographic.days_stay = "27"
mimicsql_data
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 average age of patients whose gender is m and days of hospital stay is 27? ### Input: CREATE TABLE demographic ( ...
What is the total number of ranks that had vestron as the studio?
CREATE TABLE table_name_48 ( rank VARCHAR, studio VARCHAR )
SELECT COUNT(rank) FROM table_name_48 WHERE studio = "vestron"
sql_create_context
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 ranks that had vestron as the studio? ### Input: CREATE TABLE table_name_48 ( rank VARCHAR, ...
How many picks played Tight end?
CREATE TABLE table_14650162_1 ( pick__number VARCHAR, position VARCHAR )
SELECT COUNT(pick__number) FROM table_14650162_1 WHERE position = "Tight End"
sql_create_context
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 picks played Tight end? ### Input: CREATE TABLE table_14650162_1 ( pick__number VARCHAR, position VARCHAR )...
how many patients since 3 years ago were diagnosed with s/p thyroid surgery after antiarrhythmics - class iii antiarrhythmic within 2 months?
CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid num...
SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'antiarrhythmics - class iii antiarrhythmic' AND DATETIME(treatment.treatmenttime) >= DATETIME(CURRENT_TIME()...
eicu
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 since 3 years ago were diagnosed with s/p thyroid surgery after antiarrhythmics - class iii antiarrhythmic...
Which Division does the City being jacksonville, florida belong to?
CREATE TABLE table_36704 ( "Conference" text, "Division" text, "Team" text, "City" text, "Home Stadium" text )
SELECT "Division" FROM table_36704 WHERE "City" = 'jacksonville, florida'
wikisql
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 Division does the City being jacksonville, florida belong to? ### Input: CREATE TABLE table_36704 ( "Conference" t...
When 5 is the l what is the lowest amount of stolen ends?
CREATE TABLE table_29565541_2 ( stolen_ends INTEGER, l VARCHAR )
SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5
sql_create_context
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 5 is the l what is the lowest amount of stolen ends? ### Input: CREATE TABLE table_29565541_2 ( stolen_ends INTEGER...
Show me a bar chart for what is the id and trade name of the medicines can interact with at least 3 enzymes?, sort total number in ascending order please.
CREATE TABLE medicine_enzyme_interaction ( enzyme_id int, medicine_id int, interaction_type text ) CREATE TABLE enzyme ( id int, name text, Location text, Product text, Chromosome text, OMIM int, Porphyria text ) CREATE TABLE medicine ( id int, name text, Trade_Name...
SELECT Trade_Name, id FROM medicine AS T1 JOIN medicine_enzyme_interaction AS T2 ON T2.medicine_id = T1.id ORDER BY id
nvbench
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 a bar chart for what is the id and trade name of the medicines can interact with at least 3 enzymes?, sort total num...
return me the number of citations of ' Making database systems usable ' in each year .
CREATE TABLE publication ( abstract varchar, cid int, citation_num int, jid int, pid int, reference_num int, title varchar, year int ) CREATE TABLE domain_keyword ( did int, kid int ) CREATE TABLE conference ( cid int, homepage varchar, name varchar ) CREATE TABLE ...
SELECT year, SUM(citation_num) FROM publication WHERE title = 'Making database systems usable' GROUP BY year
academic
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 me the number of citations of ' Making database systems usable ' in each year . ### Input: CREATE TABLE publication (...
What's the 123kg of the Total world record?
CREATE TABLE table_name_41 ( world_record VARCHAR )
SELECT 123 AS kg FROM table_name_41 WHERE world_record = "total"
sql_create_context
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 123kg of the Total world record? ### Input: CREATE TABLE table_name_41 ( world_record VARCHAR ) ### Response:...
what is the primary disease and procedure icd9 code of subject id 74463?
CREATE TABLE procedures ( 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 demographic.diagnosis, procedures.icd9_code FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.subject_id = "74463"
mimicsql_data
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 primary disease and procedure icd9 code of subject id 74463? ### Input: CREATE TABLE procedures ( subject_id...