instruction
stringlengths
0
1.06k
input
stringlengths
33
7.14k
response
stringlengths
2
4.44k
source
stringclasses
25 values
text
stringlengths
302
8.5k
Which Attendance has a Result of w 23-21, and a Week smaller than 5?
CREATE TABLE table_45717 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real )
SELECT AVG("Attendance") FROM table_45717 WHERE "Result" = 'w 23-21' AND "Week" < '5'
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 Attendance has a Result of w 23-21, and a Week smaller than 5? ### Input: CREATE TABLE table_45717 ( "Week" real, ...
give me the number of patients whose primary disease is t5 fracture and procedure icd9 code is 3612?
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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.diagnosis = "T5 FRACTURE" AND procedures.icd9_code = "3612"
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 primary disease is t5 fracture and procedure icd9 code is 3612? ### Input: CREATE TABLE...
Who preforms at 2:00PM on Monday?
CREATE TABLE table_39768 ( "Time" text, "12:00 PM" text, "01:00 PM" text, "02:00 PM" text, "03:00 PM" text, "04:00 PM" text, "05:00 PM" text, "05:55 PM" text )
SELECT "02:00 PM" FROM table_39768 WHERE "Time" = 'monday'
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 preforms at 2:00PM on Monday? ### Input: CREATE TABLE table_39768 ( "Time" text, "12:00 PM" text, "01:00 PM"...
Please use a pie chart to show the proportion of the total amount of payment by each payment method code.
CREATE TABLE Settlements ( Settlement_ID INTEGER, Claim_ID INTEGER, Date_Claim_Made DATE, Date_Claim_Settled DATE, Amount_Claimed INTEGER, Amount_Settled INTEGER, Customer_Policy_ID INTEGER ) CREATE TABLE Customer_Policies ( Policy_ID INTEGER, Customer_ID INTEGER, Policy_Type_Co...
SELECT Payment_Method_Code, SUM(Amount_Payment) FROM Payments GROUP BY Payment_Method_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: Please use a pie chart to show the proportion of the total amount of payment by each payment method code. ### Input: CREATE ...
How many 2007's have a 2000 greater than 56,6, 23,2 as 2006, and a 1998 greater than 61,1?
CREATE TABLE table_75780 ( "Capital/Region" text, "1997" real, "1998" real, "1999" real, "2000" real, "2001" real, "2002" real, "2003" real, "2004" real, "2005" real, "2006" real, "2007" real )
SELECT SUM("2007") FROM table_75780 WHERE "2000" > '56,6' AND "2006" = '23,2' AND "1998" > '61,1'
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 2007's have a 2000 greater than 56,6, 23,2 as 2006, and a 1998 greater than 61,1? ### Input: CREATE TABLE table_757...
For those products with a price between 60 and 120, visualize a bar chart about the distribution of name and manufacturer , rank from low to high by the Y.
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 Name, Manufacturer FROM Products WHERE Price BETWEEN 60 AND 120 ORDER BY Manufacturer
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 products with a price between 60 and 120, visualize a bar chart about the distribution of name and manufacturer , ...
is there a round trip flight from BALTIMORE to DALLAS connecting in DENVER
CREATE TABLE flight_leg ( flight_id int, leg_number int, leg_flight int ) 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 TA...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, airport_service AS AIRPORT_SERVICE_3, city AS CITY_0, city AS CITY_1, city AS CITY_2, city AS CITY_3, flight, flight_stop AS FLIGHT_STOP_0, flight_stop AS FLIGHT_STOP_1...
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: is there a round trip flight from BALTIMORE to DALLAS connecting in DENVER ### Input: CREATE TABLE flight_leg ( flight_i...
Name the swuinsuit for oregon
CREATE TABLE table_72915 ( "State" text, "Preliminary" text, "Interview" text, "Swimsuit" text, "Evening Gown" text, "Average" text )
SELECT "Swimsuit" FROM table_72915 WHERE "State" = 'Oregon'
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 swuinsuit for oregon ### Input: CREATE TABLE table_72915 ( "State" text, "Preliminary" text, "Interview...
how many hours has it been since the first time that patient 4401 on the current intensive care unit visit received a d5w intake?
CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime t...
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', inputevents_cv.charttime)) FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 4401) AND icustays.outtime IS NULL) ...
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: how many hours has it been since the first time that patient 4401 on the current intensive care unit visit received a d5w in...
what are the top five most common medications that followed within 2 months for those patients who were prescribed clindamycin?
CREATE TABLE lab ( labid number, patientunitstayid number, labname text, labresult number, labresulttime time ) CREATE TABLE vitalperiodic ( vitalperiodicid number, patientunitstayid number, temperature number, sao2 number, heartrate number, respiration number, systemics...
SELECT t3.drugname FROM (SELECT t2.drugname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, medication.drugstarttime FROM medication JOIN patient ON medication.patientunitstayid = patient.patientunitstayid WHERE medication.drugname = 'clindamycin') AS t1 JOIN (SELECT patient.uniquepid,...
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: what are the top five most common medications that followed within 2 months for those patients who were prescribed clindamyc...
Name the date which has type of plain stage
CREATE TABLE table_68334 ( "Date" text, "Course" text, "Distance" text, "Type" text, "Winner" text )
SELECT "Date" FROM table_68334 WHERE "Type" = 'plain stage'
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 date which has type of plain stage ### Input: CREATE TABLE table_68334 ( "Date" text, "Course" text, "D...
creatinine clearance < 60 by cockcroft _ gault calculator
CREATE TABLE table_dev_58 ( "id" int, "gender" string, "pregnancy_or_lactation" bool, "intra_aortic_balloon_pump_iabp" bool, "systemic_arterial_po2" int, "creatinine_clearance_cl" float, "supplemental_oxygen" bool, "age" float, "NOUSE" float )
SELECT * FROM table_dev_58 WHERE creatinine_clearance_cl < 60
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: creatinine clearance < 60 by cockcroft _ gault calculator ### Input: CREATE TABLE table_dev_58 ( "id" int, "gender" ...
Name the player with 238 hits and years after 1885
CREATE TABLE table_80109 ( "Hits" real, "Player" text, "Team" text, "Year" real, "Years Record Stood" text )
SELECT "Player" FROM table_80109 WHERE "Year" > '1885' AND "Hits" = '238'
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 player with 238 hits and years after 1885 ### Input: CREATE TABLE table_80109 ( "Hits" real, "Player" text,...
What was the attendance at the game that resulted in w 24-20?
CREATE TABLE table_18026 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Game site" text, "Record" text, "Attendance" text )
SELECT "Attendance" FROM table_18026 WHERE "Result" = 'W 24-20'
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 attendance at the game that resulted in w 24-20? ### Input: CREATE TABLE table_18026 ( "Week" real, "Da...
What is the lowest number for draw when the points are less than 17, and the lost is 13?
CREATE TABLE table_name_4 ( draw INTEGER, points VARCHAR, lost VARCHAR )
SELECT MIN(draw) FROM table_name_4 WHERE points < 17 AND lost = 13
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 number for draw when the points are less than 17, and the lost is 13? ### Input: CREATE TABLE table_name_...
does patient 031-1337 have any organisms that were found in his last sputum, expectorated microbiology test?
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(*) > 0 FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-1337')) AND microlab.culturesite = 'sputum, expectorated' ORDER BY microla...
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: does patient 031-1337 have any organisms that were found in his last sputum, expectorated microbiology test? ### Input: CREA...
What was the Loss when the Record was 50-54?
CREATE TABLE table_name_46 ( loss VARCHAR, record VARCHAR )
SELECT loss FROM table_name_46 WHERE record = "50-54"
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 was the Loss when the Record was 50-54? ### Input: CREATE TABLE table_name_46 ( loss VARCHAR, record VARCHAR ) ...
Display to me what is required for a CS-LSA degree .
CREATE TABLE course ( course_id int, name varchar, department varchar, number varchar, credits varchar, advisory_requirement varchar, enforced_requirement varchar, description varchar, num_semesters int, num_enrolled int, has_discussion varchar, has_lab varchar, has_p...
SELECT DISTINCT program_requirement.additional_req, program_requirement.category, program_requirement.min_credit, program.name FROM program, program_requirement WHERE program.name LIKE '%CS-LSA%' AND program.program_id = program_requirement.program_id
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: Display to me what is required for a CS-LSA degree . ### Input: CREATE TABLE course ( course_id int, name varchar, ...
had 1000 ml flex cont: sodium chloride 0.9 % iv soln, dextrose 5% in water (d5w) iv : 1000 ml bag or potassium chloride been in 12/2105 prescribed for patient 022-44805?
CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime time ) CREATE TABLE vitalperiodi...
SELECT COUNT(*) > 0 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-44805')) AND medication.drugname IN ('1000 ml flex cont: sodium chlori...
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: had 1000 ml flex cont: sodium chloride 0.9 % iv soln, dextrose 5% in water (d5w) iv : 1000 ml bag or potassium chloride been...
which country has the most gold medals ?
CREATE TABLE table_204_320 ( id number, "rank" number, "nation" text, "gold" number, "silver" number, "bronze" number, "total" number )
SELECT "nation" FROM table_204_320 ORDER BY "gold" 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 country has the most gold medals ? ### Input: CREATE TABLE table_204_320 ( id number, "rank" number, "nati...
Which Played is the lowest one that has a Blackpool smaller than 0?
CREATE TABLE table_6318 ( "Competition" text, "Played" real, "Blackpool" real, "Draw" real, "Preston North End" real )
SELECT MIN("Played") FROM table_6318 WHERE "Blackpool" < '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: Which Played is the lowest one that has a Blackpool smaller than 0? ### Input: CREATE TABLE table_6318 ( "Competition" t...
Which state has the most apple collected?
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 distst FROM sampledata15 WHERE commod = "AP" GROUP BY distst ORDER BY COUNT(*) DESC LIMIT 1
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: Which state has the most apple collected? ### Input: CREATE TABLE sampledata15 ( sample_pk number, state text, y...
What is the nationality of the Washington Capitals?
CREATE TABLE table_name_68 ( nationality VARCHAR, nhl_team VARCHAR )
SELECT nationality FROM table_name_68 WHERE nhl_team = "washington capitals"
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 nationality of the Washington Capitals? ### Input: CREATE TABLE table_name_68 ( nationality VARCHAR, nhl...
How many Assists for the Player with more than 25 Games?
CREATE TABLE table_name_45 ( assists INTEGER, games INTEGER )
SELECT SUM(assists) FROM table_name_45 WHERE games > 25
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 Assists for the Player with more than 25 Games? ### Input: CREATE TABLE table_name_45 ( assists INTEGER, ga...
what is the top listed venue in the table ?
CREATE TABLE table_204_913 ( id number, "#" number, "date" text, "venue" text, "opponent" text, "score" text, "result" text, "competition" text )
SELECT "venue" FROM table_204_913 WHERE id = 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: what is the top listed venue in the table ? ### Input: CREATE TABLE table_204_913 ( id number, "#" number, "date...
What song was used resulting in the bottom 3?
CREATE TABLE table_3524 ( "Week #" text, "Theme" text, "Song choice" text, "Original artist" text, "Order #" text, "Result" text )
SELECT "Song choice" FROM table_3524 WHERE "Result" = 'Bottom 3'
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 song was used resulting in the bottom 3? ### Input: CREATE TABLE table_3524 ( "Week #" text, "Theme" text, ...
How many votes were cast when the notes reported lost to incumbent vic gilliam?
CREATE TABLE table_name_51 ( votes VARCHAR, notes VARCHAR )
SELECT votes FROM table_name_51 WHERE notes = "lost to incumbent vic gilliam"
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 votes were cast when the notes reported lost to incumbent vic gilliam? ### Input: CREATE TABLE table_name_51 ( ...
For those records from the products and each product's manufacturer, give me the comparison about the average of revenue over the name , and group by attribute name by a bar chart, list by the total number in asc.
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 T2.Name, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Name ORDER BY T2.Revenue
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, give me the comparison about the average of revenue ove...
What college did the defensive back attend?
CREATE TABLE table_14650162_1 ( college VARCHAR, position VARCHAR )
SELECT college FROM table_14650162_1 WHERE position = "Defensive Back"
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 college did the defensive back attend? ### Input: CREATE TABLE table_14650162_1 ( college VARCHAR, position VAR...
When did woking compete?
CREATE TABLE table_name_92 ( date VARCHAR, opponent VARCHAR )
SELECT date FROM table_name_92 WHERE opponent = "woking"
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 did woking compete? ### Input: CREATE TABLE table_name_92 ( date VARCHAR, opponent VARCHAR ) ### Response: SELE...
What is the Country of the Player with a To par of +1 and a Score of 74-70-70=214?
CREATE TABLE table_12500 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text )
SELECT "Country" FROM table_12500 WHERE "To par" = '+1' AND "Score" = '74-70-70=214'
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 Country of the Player with a To par of +1 and a Score of 74-70-70=214? ### Input: CREATE TABLE table_12500 ( ...
What are the names of all products, and count them by a bar chart, and I want to list y axis in desc order.
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 Name, COUNT(Name) FROM Products GROUP BY Name ORDER BY COUNT(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: What are the names of all products, and count them by a bar chart, and I want to list y axis in desc order. ### Input: CREAT...
Where did Scott Fitzgerald rank on the UK charts?
CREATE TABLE table_65325 ( "Year" real, "Artist" text, "Song" text, "UK Chart" text, "At Eurovision" text )
SELECT "UK Chart" FROM table_65325 WHERE "Artist" = 'scott fitzgerald'
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: Where did Scott Fitzgerald rank on the UK charts? ### Input: CREATE TABLE table_65325 ( "Year" real, "Artist" text, ...
calculate the total number of patients belonging to white-russian ethnic origin amongst those who had radical cystectomy
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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.ethnicity = "WHITE - RUSSIAN" AND procedures.long_title = "Radical cystectomy"
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: calculate the total number of patients belonging to white-russian ethnic origin amongst those who had radical cystectomy ###...
How many draws occured with a record of 10 losses, and 6 wins?
CREATE TABLE table_name_38 ( draws VARCHAR, losses VARCHAR, wins VARCHAR )
SELECT COUNT(draws) FROM table_name_38 WHERE losses = 10 AND wins > 6
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 draws occured with a record of 10 losses, and 6 wins? ### Input: CREATE TABLE table_name_38 ( draws VARCHAR, ...
What type of car has the model 6cm?
CREATE TABLE table_60275 ( "Model" text, "Year" text, "Type" text, "Engine" text, "Displacement cc" text )
SELECT "Type" FROM table_60275 WHERE "Model" = '6cm'
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 type of car has the model 6cm? ### Input: CREATE TABLE table_60275 ( "Model" text, "Year" text, "Type" text...
For all employees who have the letters D or S in their first name, give me the comparison about the average of department_id over the hire_date bin hire_date by weekday by a bar chart, sort by the y axis from low to high please.
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 employees ( EMPLOYEE_ID decimal(6,0), FIRST_NAME varchar(20), LAST_NAME varchar(25), EMAIL v...
SELECT HIRE_DATE, AVG(DEPARTMENT_ID) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%' ORDER BY AVG(DEPARTMENT_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: For all employees who have the letters D or S in their first name, give me the comparison about the average of department_id...
what are the draft pick numbers and draft classes for players who play the Defender position?, rank by the X in ascending.
CREATE TABLE match_season ( Season real, Player text, Position text, Country int, Team int, Draft_Pick_Number int, Draft_Class text, College text ) CREATE TABLE country ( Country_id int, Country_name text, Capital text, Official_native_language text ) CREATE TABLE playe...
SELECT Draft_Class, Draft_Pick_Number FROM match_season WHERE Position = "Defender" ORDER BY Draft_Class
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 are the draft pick numbers and draft classes for players who play the Defender position?, rank by the X in ascending. #...
Who directed Dulcinea?
CREATE TABLE table_10798928_1 ( director VARCHAR, original_title VARCHAR )
SELECT director FROM table_10798928_1 WHERE original_title = "Dulcinea"
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 directed Dulcinea? ### Input: CREATE TABLE table_10798928_1 ( director VARCHAR, original_title VARCHAR ) ### Res...
when in their last hospital visit was the first time patient 85131 received non-invasive mech vent?
CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE chartevents ( row_id number, subject_id number, hadm_id number, icustay_id number, itemid number, charttime ...
SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'non-invasive mech vent') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 85131 AND NO...
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: when in their last hospital visit was the first time patient 85131 received non-invasive mech vent? ### Input: CREATE TABLE ...
What is the total number of captains with different classes?, sort by the bars in desc.
CREATE TABLE captain ( Captain_ID int, Name text, Ship_ID int, age text, Class text, Rank text ) CREATE TABLE Ship ( Ship_ID int, Name text, Type text, Built_Year real, Class text, Flag text )
SELECT Class, COUNT(Class) FROM captain GROUP BY Class ORDER BY Class 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: What is the total number of captains with different classes?, sort by the bars in desc. ### Input: CREATE TABLE captain ( ...
What rank were the Buckeyes when there were 68,586 in attendance?
CREATE TABLE table_name_90 ( rank__number VARCHAR, attendance VARCHAR )
SELECT rank__number FROM table_name_90 WHERE attendance = "68,586"
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 rank were the Buckeyes when there were 68,586 in attendance? ### Input: CREATE TABLE table_name_90 ( rank__number V...
For those dates that have the 5 highest cloud cover rates, please bin the date into day of the week interval and compute their average cloud cover, and display y-axis in ascending order.
CREATE TABLE trip ( id INTEGER, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE weather ( date TEX...
SELECT date, AVG(cloud_cover) FROM weather ORDER BY AVG(cloud_cover)
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 dates that have the 5 highest cloud cover rates, please bin the date into day of the week interval and compute the...
What is the Revenue of the population of more than 1,499,402, with Spending (millions) of $13,986?
CREATE TABLE table_38365 ( "State" text, "Revenue (millions)" text, "Population" real, "Revenue per capita" text, "Spending (millions)" text, "Spending per capita" text, "Net contribution per capita" text )
SELECT "Revenue (millions)" FROM table_38365 WHERE "Population" > '1,499,402' AND "Spending (millions)" = '$13,986'
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 Revenue of the population of more than 1,499,402, with Spending (millions) of $13,986? ### Input: CREATE TABLE t...
what is minimum age of patients whose admission type is emergency and year of birth is greater than 2078?
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 MIN(demographic.age) FROM demographic WHERE demographic.admission_type = "EMERGENCY" 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: what is minimum age of patients whose admission type is emergency and year of birth is greater than 2078? ### Input: CREATE ...
How many years have a Record of 73-65?
CREATE TABLE table_name_74 ( year VARCHAR, record VARCHAR )
SELECT COUNT(year) FROM table_name_74 WHERE record = "73-65"
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 years have a Record of 73-65? ### Input: CREATE TABLE table_name_74 ( year VARCHAR, record VARCHAR ) ### Re...
Which visitor visited on February 21?
CREATE TABLE table_name_14 ( visitor VARCHAR, date VARCHAR )
SELECT visitor FROM table_name_14 WHERE date = "february 21"
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 visitor visited on February 21? ### Input: CREATE TABLE table_name_14 ( visitor VARCHAR, date VARCHAR ) ### Re...
Which surface has an Opponent of fernando verdasco?
CREATE TABLE table_55036 ( "Outcome" text, "Date" text, "Surface" text, "Opponent" text, "Score" text )
SELECT "Surface" FROM table_55036 WHERE "Opponent" = 'fernando verdasco'
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 surface has an Opponent of fernando verdasco? ### Input: CREATE TABLE table_55036 ( "Outcome" text, "Date" tex...
Who won the mens doubles when wang hao won the mens singles?
CREATE TABLE table_30303 ( "Year Location" text, "Mens Singles" text, "Womens Singles" text, "Mens Doubles" text, "Womens Doubles" text )
SELECT "Mens Doubles" FROM table_30303 WHERE "Mens Singles" = 'Wang Hao'
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 won the mens doubles when wang hao won the mens singles? ### Input: CREATE TABLE table_30303 ( "Year Location" text,...
Which 2nd leg has pamesa valencia for team #2?
CREATE TABLE table_41692 ( "Team #1" text, "Agg." text, "Team #2" text, "1st leg" text, "2nd leg" text )
SELECT "2nd leg" FROM table_41692 WHERE "Team #2" = 'pamesa valencia'
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 2nd leg has pamesa valencia for team #2? ### Input: CREATE TABLE table_41692 ( "Team #1" text, "Agg." text, ...
what is the average gold when rank is total and silver is more than 20?
CREATE TABLE table_13501 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT AVG("Gold") FROM table_13501 WHERE "Rank" = 'total' AND "Silver" > '20'
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 gold when rank is total and silver is more than 20? ### Input: CREATE TABLE table_13501 ( "Rank" tex...
Which home team scored 12.11 (83)?
CREATE TABLE table_56113 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text )
SELECT "Home team" FROM table_56113 WHERE "Home team score" = '12.11 (83)'
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 home team scored 12.11 (83)? ### Input: CREATE TABLE table_56113 ( "Home team" text, "Home team score" text, ...
which rider came in first with 25 points ?
CREATE TABLE table_204_214 ( id number, "pos" text, "no." number, "rider" text, "manufacturer" text, "laps" number, "time/retired" text, "grid" number, "points" number )
SELECT "rider" FROM table_204_214 WHERE "points" = 25
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 rider came in first with 25 points ? ### Input: CREATE TABLE table_204_214 ( id number, "pos" text, "no." ...
What is the attendance for the game against the Kansas City Chiefs earlier than week 13?
CREATE TABLE table_name_32 ( attendance INTEGER, opponent VARCHAR, week VARCHAR )
SELECT AVG(attendance) FROM table_name_32 WHERE opponent = "kansas city chiefs" AND week < 13
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 attendance for the game against the Kansas City Chiefs earlier than week 13? ### Input: CREATE TABLE table_name_...
With a To par of 5, what is Nick Faldo's Place?
CREATE TABLE table_name_95 ( place VARCHAR, to_par VARCHAR, player VARCHAR )
SELECT place FROM table_name_95 WHERE to_par = "–5" AND player = "nick faldo"
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: With a To par of 5, what is Nick Faldo's Place? ### Input: CREATE TABLE table_name_95 ( place VARCHAR, to_par VARCHA...
Show the number of the countries that have managers of age above 50 or below 46, and could you show by the bars from low to high?
CREATE TABLE railway_manage ( Railway_ID int, Manager_ID int, From_Year text ) CREATE TABLE manager ( Manager_ID int, Name text, Country text, Working_year_starts text, Age int, Level int ) CREATE TABLE railway ( Railway_ID int, Railway text, Builder text, Built tex...
SELECT Country, COUNT(Country) FROM manager WHERE Age > 50 OR Age < 46 GROUP BY Country ORDER BY Country
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 the countries that have managers of age above 50 or below 46, and could you show by the bars from low to ...
What was the score of the game with the Broadview Hawks as the home team?
CREATE TABLE table_43140 ( "Date" text, "Time" text, "Home" text, "Away" text, "Score" text, "Ground" text )
SELECT "Score" FROM table_43140 WHERE "Home" = 'broadview hawks'
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 of the game with the Broadview Hawks as the home team? ### Input: CREATE TABLE table_43140 ( "Date" t...
how many total albums did this group have under capitol records ?
CREATE TABLE table_204_928 ( id number, "year" number, "album" text, "territory" text, "label" text, "notes" text )
SELECT COUNT("album") FROM table_204_928 WHERE "label" = 'capitol records'
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 total albums did this group have under capitol records ? ### Input: CREATE TABLE table_204_928 ( id number, ...
what was the top four most frequent procedures performed since 5 years ago that patients were given within 2 months after the diagnosis of malig neo bladder nos?
CREATE TABLE diagnoses_icd ( row_id number, subject_id number, hadm_id number, icd9_code text, charttime time ) CREATE TABLE transfers ( row_id number, subject_id number, hadm_id number, icustay_id number, eventtype text, careunit text, wardid number, intime time, ...
SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissi...
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 top four most frequent procedures performed since 5 years ago that patients were given within 2 months after th...
how many patients are diagnosed with primary disease rash and suggested with drug route via iv?
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 lab ( subject_id text, hadm_id text, ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.diagnosis = "RASH" AND prescriptions.route = "IV"
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 are diagnosed with primary disease rash and suggested with drug route via iv? ### Input: CREATE TABLE proc...
Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final?
CREATE TABLE table_71400 ( "Date" text, "Tournament" text, "Surface" text, "Tier" text, "Partner" text, "Opponents in the final" text, "Score" text )
SELECT "Date" FROM table_71400 WHERE "Opponents in the final" = 'akgul amanmuradova nina bratchikova'
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 date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final? ### Input: CREATE TABLE table_71400 ( "Date...
What is the largest played number when the difference is - 8 and position is more than 8?
CREATE TABLE table_34593 ( "Position" real, "Team" text, "Points" real, "Played" real, "Drawn" real, "Lost" real, "Against" real, "Difference" text )
SELECT MAX("Played") FROM table_34593 WHERE "Difference" = '- 8' AND "Position" > '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 largest played number when the difference is - 8 and position is more than 8? ### Input: CREATE TABLE table_3459...
what was the first year that the romanian population was less than 51,000 ?
CREATE TABLE table_203_163 ( id number, "year" number, "total" number, "serbs" text, "hungarians" text, "germans" text, "romanians" text, "slovaks" text )
SELECT MIN("year") FROM table_203_163 WHERE "romanians" < 51000
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 was the first year that the romanian population was less than 51,000 ? ### Input: CREATE TABLE table_203_163 ( id n...
What is the Power (kW) for the station with a frequency of 95.1mhz?
CREATE TABLE table_name_72 ( power__kw_ VARCHAR, frequency VARCHAR )
SELECT power__kw_ FROM table_name_72 WHERE frequency = "95.1mhz"
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 Power (kW) for the station with a frequency of 95.1mhz? ### Input: CREATE TABLE table_name_72 ( power__kw_ V...
What is the total of Frequency MHz with a Class of b1?
CREATE TABLE table_69060 ( "Call sign" text, "Frequency MHz" real, "City of license" text, "ERP W" text, "Class" text, "FCC info" text )
SELECT SUM("Frequency MHz") FROM table_69060 WHERE "Class" = 'b1'
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 total of Frequency MHz with a Class of b1? ### Input: CREATE TABLE table_69060 ( "Call sign" text, "Freq...
Who was the opponent when the result was w24-7?
CREATE TABLE table_50221 ( "Date" text, "Opponent#" text, "Rank #" text, "Site" text, "Result" text, "Attendance" text )
SELECT "Opponent#" FROM table_50221 WHERE "Result" = 'w24-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: Who was the opponent when the result was w24-7? ### Input: CREATE TABLE table_50221 ( "Date" text, "Opponent#" text,...
How many bronzes have west germany as the nation?
CREATE TABLE table_64829 ( "Rank" text, "Nation" text, "Gold" real, "Silver" real, "Bronze" real, "Total" real )
SELECT SUM("Bronze") FROM table_64829 WHERE "Nation" = 'west germany'
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 bronzes have west germany as the nation? ### Input: CREATE TABLE table_64829 ( "Rank" text, "Nation" text, ...
Name the content for sky famiglia for italian and dar 16:9 for mtv hits
CREATE TABLE table_20374 ( "N\u00b0" real, "Television service" text, "Country" text, "Language" text, "Content" text, "DAR" text, "HDTV" text, "PPV" text, "Package/Option" text )
SELECT "Content" FROM table_20374 WHERE "Package/Option" = 'Sky Famiglia' AND "Language" = 'Italian' AND "DAR" = '16:9' AND "Television service" = 'MTV Hits'
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 content for sky famiglia for italian and dar 16:9 for mtv hits ### Input: CREATE TABLE table_20374 ( "N\u00b0" ...
What is the name of the institution that 'Matthias Blume' belongs to?
CREATE TABLE authorship ( authid number, instid number, paperid number, authorder number ) CREATE TABLE papers ( paperid number, title text ) CREATE TABLE inst ( instid number, name text, country text ) CREATE TABLE authors ( authid number, lname text, fname text )
SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Matthias" AND t1.lname = "Blume"
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 is the name of the institution that 'Matthias Blume' belongs to? ### Input: CREATE TABLE authorship ( authid number...
What are the number of the dates with a maximum temperature higher than 85?, I want to show the number of date from low to high order.
CREATE TABLE trip ( id INTEGER, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE weather ( date TEX...
SELECT date, COUNT(date) FROM weather WHERE max_temperature_f > 85 ORDER BY COUNT(date)
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 are the number of the dates with a maximum temperature higher than 85?, I want to show the number of date from low to h...
how many hours has it been since the first time patient 65582 visited ward 50 in this hospital visit?
CREATE TABLE outputevents ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, value number ) CREATE TABLE patients ( row_id number, subject_id number, gender text, dob time, dod time ) CREATE TABLE procedures_icd ( r...
SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', transfers.intime)) FROM transfers WHERE transfers.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 65582 AND admissions.dischtime IS NULL)) AND transfers...
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: how many hours has it been since the first time patient 65582 visited ward 50 in this hospital visit? ### Input: CREATE TABL...
Which countries do not have a stadium that was opened after 2006?
CREATE TABLE stadium ( id number, name text, capacity number, city text, country text, opening_year number ) CREATE TABLE swimmer ( id number, name text, nationality text, meter_100 number, meter_200 text, meter_300 text, meter_400 text, meter_500 text, meter...
SELECT country FROM stadium EXCEPT SELECT country FROM stadium WHERE opening_year > 2006
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: Which countries do not have a stadium that was opened after 2006? ### Input: CREATE TABLE stadium ( id number, name ...
How many points are in the scored category for the team that has less than 5 draws, 8 total wins, and total overall points less than 27?
CREATE TABLE table_name_83 ( scored VARCHAR, points VARCHAR, draws VARCHAR, wins VARCHAR )
SELECT COUNT(scored) FROM table_name_83 WHERE draws < 5 AND wins = 8 AND points < 27
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 points are in the scored category for the team that has less than 5 draws, 8 total wins, and total overall points l...
Draw a scatter chart about the correlation between Team_ID and ACC_Percent , and group by attribute All_Games.
CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Percent text, ACC_Home text, ACC_Road text, All_Games text, All_Games_Percent int, All_Home text, All_Road text, All_Neutral text ) CREATE TABLE university ( Scho...
SELECT Team_ID, ACC_Percent FROM basketball_match GROUP BY All_Games
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: Draw a scatter chart about the correlation between Team_ID and ACC_Percent , and group by attribute All_Games. ### Input: CR...
What is the average number played of the team with 1 drawn and 24 against?
CREATE TABLE table_41533 ( "Position" real, "Team" text, "Points" real, "Played" real, "Drawn" real, "Lost" real, "Against" real, "Difference" text )
SELECT AVG("Played") FROM table_41533 WHERE "Drawn" = '1' AND "Against" = '24'
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 number played of the team with 1 drawn and 24 against? ### Input: CREATE TABLE table_41533 ( "Positi...
what is the mascot when the school is warsaw?
CREATE TABLE table_64076 ( "School" text, "Location" text, "Mascot" text, "County" text, "Year Joined" text, "Previous Conference" text, "Year Left" text )
SELECT "Mascot" FROM table_64076 WHERE "School" = 'warsaw'
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 mascot when the school is warsaw? ### Input: CREATE TABLE table_64076 ( "School" text, "Location" text, ...
what were the first outputs of patient 12885 on 06/28/last year?
CREATE TABLE labevents ( row_id number, subject_id number, hadm_id number, itemid number, charttime time, valuenum number, valueuom text ) CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number...
SELECT d_items.label FROM d_items WHERE d_items.itemid IN (SELECT outputevents.itemid FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 12885)) AND DATETIME(outputevents.charttim...
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 were the first outputs of patient 12885 on 06/28/last year? ### Input: CREATE TABLE labevents ( row_id number, ...
What's the model of the processor with a 5.5 w TDP?
CREATE TABLE table_26580 ( "Processor" text, "Brand name" text, "Model (list)" text, "Cores" real, "L2 Cache" text, "Socket" text, "TDP" text )
SELECT "Model (list)" FROM table_26580 WHERE "TDP" = '5.5 W'
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 model of the processor with a 5.5 w TDP? ### Input: CREATE TABLE table_26580 ( "Processor" text, "Brand n...
What is the french word for the Russian word filtrovat ( )?
CREATE TABLE table_19818 ( "Ido" text, "English" text, "Italian" text, "French" text, "German" text, "Russian" text, "Spanish" text )
SELECT "French" FROM table_19818 WHERE "Russian" = 'filtrovat (фильтровать)'
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 french word for the Russian word filtrovat ( )? ### Input: CREATE TABLE table_19818 ( "Ido" text, "Engli...
Whats the age demographic per tag?. I tried to make this accept the tag as a parameter but I kepy getting an error.
CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, Deletio...
SELECT TagName, COUNT(TagName) AS TagsPerAge, Age FROM Tags INNER JOIN PostTags ON PostTags.TagId = Tags.Id INNER JOIN Posts ON Posts.ParentId = PostTags.PostId INNER JOIN Users ON Users.Id = Posts.OwnerUserId WHERE TagName = 'php' AND age > 0 GROUP BY Age, TagName ORDER BY TagsPerAge DESC
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: Whats the age demographic per tag?. I tried to make this accept the tag as a parameter but I kepy getting an error. ### Inpu...
how many patients whose primary disease is acute subdural hematoma and year of death is less than or equal to 2183?
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 WHERE demographic.diagnosis = "ACUTE SUBDURAL HEMATOMA" AND demographic.dod_year <= "2183.0"
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 primary disease is acute subdural hematoma and year of death is less than or equal to 2183? ### Inpu...
Answers with word '.BY' for 'data.table' tag posts.
CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, Description text ) CREATE TABLE VoteTypes ( Id number, Name text ) CREATE TABLE ReviewTaskResults ( Id number, ...
SELECT OwnerUserId AS "user_link", Id AS "post_link" FROM Posts WHERE ParentId IN (SELECT Id FROM Posts WHERE Tags LIKE '%data.table%' AND Body COLLATE Latin1_General_CS_AS LIKE '%column%') AND Body COLLATE Latin1_General_CS_AS LIKE '%.BY%'
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: Answers with word '.BY' for 'data.table' tag posts. ### Input: CREATE TABLE Tags ( Id number, TagName text, Coun...
what's the score where year is 2007
CREATE TABLE table_11214772_1 ( score VARCHAR, year VARCHAR )
SELECT score FROM table_11214772_1 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: what's the score where year is 2007 ### Input: CREATE TABLE table_11214772_1 ( score VARCHAR, year VARCHAR ) ### Res...
What is in the ninth position where the tenth position is rabat ajax?
CREATE TABLE table_33623 ( "Year" text, "1st Position" text, "2nd Position" text, "9th Position" text, "10th Position" text )
SELECT "9th Position" FROM table_33623 WHERE "10th Position" = 'rabat ajax'
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 in the ninth position where the tenth position is rabat ajax? ### Input: CREATE TABLE table_33623 ( "Year" text,...
What is the lowest round for Southern College?
CREATE TABLE table_69835 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text )
SELECT MIN("Round") FROM table_69835 WHERE "College" = 'southern'
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 lowest round for Southern College? ### Input: CREATE TABLE table_69835 ( "Round" real, "Pick #" real, ...
What is the away team score of a Melbourne team that has a home team score of 12.7 (79)?
CREATE TABLE table_54881 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Date" text )
SELECT "Away team score" FROM table_54881 WHERE "Home team score" = '12.7 (79)' AND "Away team" = 'melbourne'
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 away team score of a Melbourne team that has a home team score of 12.7 (79)? ### Input: CREATE TABLE table_54881...
what was patient 25733's first ward identification in their current hospital encounter?
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 transfers.wardid FROM transfers WHERE transfers.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 25733 AND admissions.dischtime IS NULL) AND NOT transfers.wardid IS NULL ORDER BY transfers.intime 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: what was patient 25733's first ward identification in their current hospital encounter? ### Input: CREATE TABLE admissions (...
what is admission location and discharge location of subject id 17787?
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 prescriptions...
SELECT demographic.admission_location, demographic.discharge_location FROM demographic WHERE demographic.subject_id = "17787"
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 admission location and discharge location of subject id 17787? ### Input: CREATE TABLE lab ( subject_id text, ...
What are radio electricals when secretariat is wtr i?
CREATE TABLE table_18772 ( "Serial & Branch" real, "Seaman" text, "Mechanical" text, "Secretariat" text, "Supply" text, "Electrical" text, "Radio Electrical" text, "Regulating" text, "Medical" text )
SELECT "Radio Electrical" FROM table_18772 WHERE "Secretariat" = 'WTR I'
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 are radio electricals when secretariat is wtr i? ### Input: CREATE TABLE table_18772 ( "Serial & Branch" real, ...
calculate the number of patients who have been hospitalized since 4 years ago.
CREATE TABLE patients ( row_id number, subject_id number, gender text, dob time, dod time ) CREATE TABLE diagnoses_icd ( row_id number, subject_id number, hadm_id number, icd9_code text, charttime time ) CREATE TABLE microbiologyevents ( row_id number, subject_id number...
SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE DATETIME(admissions.admittime) >= DATETIME(CURRENT_TIME(), '-4 year')
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: calculate the number of patients who have been hospitalized since 4 years ago. ### Input: CREATE TABLE patients ( row_id...
What was the date of the game that tied at 3?
CREATE TABLE table_name_56 ( date VARCHAR, tie_no VARCHAR )
SELECT date FROM table_name_56 WHERE tie_no = "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: What was the date of the game that tied at 3? ### Input: CREATE TABLE table_name_56 ( date VARCHAR, tie_no VARCHAR )...
In the Tennis Masters Cup, how did Ji Nov k do in 1997?
CREATE TABLE table_7412 ( "Tournament" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text, "2001" text, "2002" text, "2003" text, "2004" text, "2005" text, "2006" text )
SELECT "1997" FROM table_7412 WHERE "Tournament" = 'tennis masters cup'
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: In the Tennis Masters Cup, how did Ji Nov k do in 1997? ### Input: CREATE TABLE table_7412 ( "Tournament" text, "199...
What is the place of player john cook?
CREATE TABLE table_name_73 ( place VARCHAR, player VARCHAR )
SELECT place FROM table_name_73 WHERE player = "john cook"
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 place of player john cook? ### Input: CREATE TABLE table_name_73 ( place VARCHAR, player VARCHAR ) ### R...
provide the number of patients with lab test item id 51067 who were younger than 44 years.
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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.age < "44" AND lab.itemid = "51067"
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 with lab test item id 51067 who were younger than 44 years. ### Input: CREATE TABLE diagnoses...
what was the number of times insulin lispro, recombinant was prescribed for patient 010-5308 in 01/this year?
CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CRE...
SELECT COUNT(*) FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '010-5308')) AND medication.drugname = 'insulin lispro, recombinant' AND DATETI...
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: what was the number of times insulin lispro, recombinant was prescribed for patient 010-5308 in 01/this year? ### Input: CRE...
Find meter_200 and the sum of meter_100 , and group by attribute meter_200, and visualize them by a bar chart, list x-axis in descending order.
CREATE TABLE stadium ( ID int, name text, Capacity int, City text, Country text, Opening_year int ) CREATE TABLE event ( ID int, Name text, Stadium_ID int, Year text ) CREATE TABLE record ( ID int, Result text, Swimmer_ID int, Event_ID int ) CREATE TABLE swimme...
SELECT meter_200, SUM(meter_100) FROM swimmer GROUP BY meter_200 ORDER BY meter_200 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: Find meter_200 and the sum of meter_100 , and group by attribute meter_200, and visualize them by a bar chart, list x-axis i...
How many of the patients born before 2083 have confirmed death status?
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 WHERE demographic.expire_flag = "1" AND demographic.dob_year < "2083"
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 of the patients born before 2083 have confirmed death status? ### Input: CREATE TABLE lab ( subject_id text, ...
What is the number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.66?
CREATE TABLE table_12362 ( "Rank" real, "Athlete" text, "Qiangshu" real, "Jianshu" real, "Total" real )
SELECT COUNT("Jianshu") FROM table_12362 WHERE "Total" > '19.16' AND "Athlete" = 'nguyen huy thanh ( vie )' AND "Qiangshu" > '9.66'
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 number of Jianshu when the total is more than 19.16, for Nguyen Huy Thanh ( vie ), and Qiangshu is more than 9.6...
Visualize a bar chart about the distribution of meter_600 and ID , display by the Y in asc.
CREATE TABLE event ( ID int, Name text, Stadium_ID int, Year text ) CREATE TABLE record ( ID int, Result text, Swimmer_ID int, Event_ID int ) CREATE TABLE stadium ( ID int, name text, Capacity int, City text, Country text, Opening_year int ) CREATE TABLE swimme...
SELECT meter_600, ID FROM swimmer 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: Visualize a bar chart about the distribution of meter_600 and ID , display by the Y in asc. ### Input: CREATE TABLE event ( ...
What is Country of Origin, when Year of Intro is greater than 1985, and when Primary Cartridge is 125mm?
CREATE TABLE table_7703 ( "Name/ designation" text, "Year of intro" real, "Country of origin" text, "Primary cartridge" text, "Type" text )
SELECT "Country of origin" FROM table_7703 WHERE "Year of intro" > '1985' AND "Primary cartridge" = '125mm'
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 Country of Origin, when Year of Intro is greater than 1985, and when Primary Cartridge is 125mm? ### Input: CREATE T...