instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
What is the name of the movie that has been reviewed the most?
CREATE TABLE movie (mid number,title text,year number,director text)CREATE TABLE rating (rid number,mid number,stars number,ratingdate time)CREATE TABLE reviewer (rid number,name text)
SELECT T2.title, T1.mid FROM rating AS T1 JOIN movie AS T2 ON T1.mid = T2.mid GROUP BY T1.mid ORDER BY COUNT(*) DESC LIMIT 1
what is language of subject name kelly gallardo?
CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ...
SELECT demographic.language FROM demographic WHERE demographic.name = "Kelly Gallardo"
What week number did November 19, 1989 games fall on?
CREATE TABLE table_name_14 (week VARCHAR,date VARCHAR)
SELECT week FROM table_name_14 WHERE date = "november 19, 1989"
Which CFL team got pick 34?
CREATE TABLE table_31486 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text)
SELECT "CFL Team" FROM table_31486 WHERE "Pick #" = '34'
Name the team for november 9
CREATE TABLE table_15872814_3 (team VARCHAR,date VARCHAR)
SELECT team FROM table_15872814_3 WHERE date = "November 9"
What is the callsign of the 5kW Sonshine Radio Cotabato?
CREATE TABLE table_67473 ("Branding" text,"Callsign" text,"Frequency" text,"Power (kW)" text,"Location" text)
SELECT "Callsign" FROM table_67473 WHERE "Power (kW)" = '5kw' AND "Branding" = 'sonshine radio cotabato'
Draw a bar chart of name versus age
CREATE TABLE journal_committee (Editor_ID int,Journal_ID int,Work_Type text)CREATE TABLE editor (Editor_ID int,Name text,Age real)CREATE TABLE journal (Journal_ID int,Date text,Theme text,Sales int)
SELECT Name, Age FROM editor
Name the least indian tamil for population density being 240
CREATE TABLE table_24574438_1 (indian_tamil INTEGER,population_density___km_2__ VARCHAR)
SELECT MIN(indian_tamil) FROM table_24574438_1 WHERE population_density___km_2__ = 240
What year is center Ann Wauters?
CREATE TABLE table_name_26 (year INTEGER,position VARCHAR,player VARCHAR)
SELECT SUM(year) FROM table_name_26 WHERE position = "center" AND player = "ann wauters"
Give me a line chart about each year's maximum score , and rank by the x-axis in descending.
CREATE TABLE grapes (ID INTEGER,Grape TEXT,Color TEXT)CREATE TABLE appellations (No INTEGER,Appelation TEXT,County TEXT,State TEXT,Area TEXT,isAVA TEXT)CREATE TABLE wine (No INTEGER,Grape TEXT,Winery TEXT,Appelation TEXT,State TEXT,Name TEXT,Year INTEGER,Price INTEGER,Score INTEGER,Cases INTEGER,Drink TEXT)
SELECT Year, MAX(Score) FROM wine GROUP BY Year ORDER BY Year DESC
What was the score of the game that had a record of 26 13 4 2 and a decision of Joseph?
CREATE TABLE table_70740 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Decision" text,"Attendance" real,"Record" text)
SELECT "Score" FROM table_70740 WHERE "Decision" = 'joseph' AND "Record" = '26–13–4–2'
What vote passed for the measure with the description, authorizing state acceptance of certain gifts?
CREATE TABLE table_256286_40 (passed VARCHAR,description VARCHAR)
SELECT passed FROM table_256286_40 WHERE description = "Authorizing State Acceptance of Certain Gifts"
what was their 1qr opponent in 2010-2011 ?
CREATE TABLE table_203_741 (id number,"season" text,"competition" text,"round" text,"opponent" text,"home" text,"away" text,"aggregate" text)
SELECT "opponent" FROM table_203_741 WHERE "round" = '1qr' AND "season" = '2010-11'
please give me the flights available from BOSTON to PITTSBURGH on wednesday of next week
CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE time_interval (period text,begin_time int,end_time int)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE airport_service (city...
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, date_day, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PITTSBURGH' AND date_day.day_number = 23 AND date_day.month_number = 4 AN...
Where did someone run a 58:33?
CREATE TABLE table_name_25 (event_place VARCHAR,time VARCHAR)
SELECT event_place FROM table_name_25 WHERE time = "58:33"
Return the number of the completion date for all the tests that have 'Fail' result, and I want to display in asc by the y axis.
CREATE TABLE Courses (course_id INTEGER,author_id INTEGER,subject_id INTEGER,course_name VARCHAR(120),course_description VARCHAR(255))CREATE TABLE Students (student_id INTEGER,date_of_registration DATETIME,date_of_latest_logon DATETIME,login_name VARCHAR(40),password VARCHAR(10),personal_name VARCHAR(40),middle_name VA...
SELECT date_of_completion, COUNT(date_of_completion) FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Fail" ORDER BY COUNT(date_of_completion)
how many honda motorcycles completed the race ?
CREATE TABLE table_203_166 (id number,"pos" text,"no" number,"rider" text,"manufacturer" text,"laps" number,"time" text,"grid" number,"points" number)
SELECT COUNT(*) FROM table_203_166 WHERE "manufacturer" = 'honda'
Name the opponent with attendance of 31,777
CREATE TABLE table_69512 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text)
SELECT "Opponent" FROM table_69512 WHERE "Attendance" = '31,777'
Which Points have a Year larger than 1998, and Wins of 1?
CREATE TABLE table_33935 ("Year" real,"Team" text,"Wins" real,"Points" real,"Championship Finish" text)
SELECT AVG("Points") FROM table_33935 WHERE "Year" > '1998' AND "Wins" = '1'
Which chassis has a year later than 1964, a Ford engine, and 13 points?
CREATE TABLE table_68737 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Pts." real)
SELECT "Chassis" FROM table_68737 WHERE "Year" > '1964' AND "Engine" = 'ford' AND "Pts." = '13'
What is Opponent, when Date is December 18, 1988?
CREATE TABLE table_name_7 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_7 WHERE date = "december 18, 1988"
What are the different names and credit scores of customers who have taken a loan?
CREATE TABLE loan (loan_id text,loan_type text,cust_id text,branch_id text,amount number)CREATE TABLE customer (cust_id text,cust_name text,acc_type text,acc_bal number,no_of_loans number,credit_score number,branch_id number,state text)CREATE TABLE bank (branch_id number,bname text,no_of_customers number,city text,stat...
SELECT DISTINCT T1.cust_name, T1.credit_score FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id
Which production company has the year of 2005 listed?
CREATE TABLE table_name_45 (production_company VARCHAR,year VARCHAR)
SELECT production_company FROM table_name_45 WHERE year = "2005"
Show the number of documents for each receipt date and bin by year with a line chart, sort by the x-axis in desc please.
CREATE TABLE Draft_Copies (document_id INTEGER,draft_number INTEGER,copy_number INTEGER)CREATE TABLE Employees (employee_id INTEGER,role_code CHAR(15),employee_name VARCHAR(255),other_details VARCHAR(255))CREATE TABLE Documents (document_id INTEGER,document_status_code CHAR(15),document_type_code CHAR(15),shipping_agen...
SELECT receipt_date, COUNT(receipt_date) FROM Documents ORDER BY receipt_date DESC
What was the date of the game with a goal of 7?
CREATE TABLE table_name_27 (date VARCHAR,goal VARCHAR)
SELECT date FROM table_name_27 WHERE goal = 7
What is the game site of the game with the san diego chargers as the opponent?
CREATE TABLE table_name_83 (game_site VARCHAR,opponent VARCHAR)
SELECT game_site FROM table_name_83 WHERE opponent = "san diego chargers"
how many patients on prochlorperazine prescription have american indian/alaska native ethnic background?
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 text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" AND prescriptions.drug = "Prochlorperazine"
What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?
CREATE TABLE table_41960 ("Date" text,"Tournament" text,"Winning score" text,"Margin of victory" text,"Runner(s)-up" text)
SELECT "Tournament" FROM table_41960 WHERE "Margin of victory" = '2 strokes' AND "Date" = 'sep 20, 1981'
What is the average age of captains in different classes?, and could you order in descending by the mean age please?
CREATE TABLE Ship (Ship_ID int,Name text,Type text,Built_Year real,Class text,Flag text)CREATE TABLE captain (Captain_ID int,Name text,Ship_ID int,age text,Class text,Rank text)
SELECT Class, AVG(age) FROM captain GROUP BY Class ORDER BY AVG(age) DESC
What was the name of the couple if the number of dances is 6?
CREATE TABLE table_23662272_4 (couple VARCHAR,number_of_dances VARCHAR)
SELECT couple FROM table_23662272_4 WHERE number_of_dances = 6
which single spent the least amount of time on the us hot 100 ?
CREATE TABLE table_203_877 (id number,"year" number,"single" text,"us cashbox" number,"us hot 100" number,"uk singles" number)
SELECT "single" FROM table_203_877 ORDER BY "us hot 100" LIMIT 1
provide me with the birth date and discharge location of patient jerry deberry.
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)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,sho...
SELECT demographic.dob, demographic.discharge_location FROM demographic WHERE demographic.name = "Jerry Deberry"
how many trains have the number 99808
CREATE TABLE table_31074 ("Train Number" real,"Train Name" text,"Departure Pune" text,"Arrival Lonavla" text,"Frequency" text,"Origin" text)
SELECT COUNT("Train Name") FROM table_31074 WHERE "Train Number" = '99808'
What manuals have the opus of 135?
CREATE TABLE table_12459 ("year" text,"opus" text,"town" text,"kind" text,"manuals" text,"stops" text)
SELECT "manuals" FROM table_12459 WHERE "opus" = '135'
count the number of patients whose diagnoses short title is dermatitis nos and lab test fluid is urine?
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 text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ...
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 = "Dermatitis NOS" AND lab.fluid = "Urine"
Which State has an Electorate of Barton?
CREATE TABLE table_name_14 (state VARCHAR,electorate VARCHAR)
SELECT state FROM table_name_14 WHERE electorate = "barton"
What is Eftychia Karagianni Pos.?
CREATE TABLE table_name_64 (pos VARCHAR,name VARCHAR)
SELECT pos FROM table_name_64 WHERE name = "eftychia karagianni"
calculate the number of patients with diagnosis prim cardiomyopathy nec who had emergency hospital admission.
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,itemid text,charttime text,flag text,value_unit text,label text,fluid ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.short_title = "Prim cardiomyopathy NEC"
Who did the cubs play on june 3?
CREATE TABLE table_10191 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text)
SELECT "Opponent" FROM table_10191 WHERE "Date" = 'june 3'
What is the Style of the First Performance of Billy Elliot on 15 November 2007?
CREATE TABLE table_name_50 (style VARCHAR,first_performance VARCHAR)
SELECT style FROM table_name_50 WHERE first_performance = "15 november 2007"
Which Date has a Record of 6-9?
CREATE TABLE table_58249 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text)
SELECT "Date" FROM table_58249 WHERE "Record" = '6-9'
What is the Margin of victory at the Bob Hope Desert Classic Tournament?
CREATE TABLE table_name_54 (margin_of_victory VARCHAR,tournament VARCHAR)
SELECT margin_of_victory FROM table_name_54 WHERE tournament = "bob hope desert classic"
get me the number of emergency hospital admission patients who have lab test item id 50801.
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND lab.itemid = "50801"
What is the value for the League Cup when the FA Cup value is 0 13 0 (49)?
CREATE TABLE table_name_20 (league VARCHAR,fa_cup VARCHAR)
SELECT league AS Cup FROM table_name_20 WHERE fa_cup = "0 13 0 (49)"
What primary sponsor has the owner Rick Hendrick and their crew chief is Alan Gustafson?
CREATE TABLE table_15222 ("Team" text,"Car(s)" text,"Driver(s)" text,"Primary Sponsor(s)" text,"Owner(s)" text,"Crew Chief" text)
SELECT "Primary Sponsor(s)" FROM table_15222 WHERE "Owner(s)" = 'rick hendrick' AND "Crew Chief" = 'alan gustafson'
name the first pornographic film listed on the table .
CREATE TABLE table_203_365 (id number,"released" text,"video title" text,"company" text,"director" text,"notes" text)
SELECT "video title" FROM table_203_365 ORDER BY id LIMIT 1
what is the difference in points between the finalists and average in iowa ?
CREATE TABLE table_203_523 (id number,"state" text,"swimsuit" number,"interview" number,"evening gown" number,"average" number,"finalists" number)
SELECT "finalists" - "average" FROM table_203_523 WHERE "state" = 'iowa'
papers that used NELL
CREATE TABLE field (fieldid int)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE TABLE venue (venueid int,venuename varchar)CREATE TABLE dataset (datasetid int,datasetname varchar)CREATE TABLE author (auth...
SELECT DISTINCT paper.paperid FROM dataset, paper, paperdataset WHERE dataset.datasetname = 'NELL' AND paperdataset.datasetid = dataset.datasetid AND paper.paperid = paperdataset.paperid
What is the total of the cultural and educational panel when the industrial and commercial panel is 0 and the agricultural panel is greater than 0?
CREATE TABLE table_name_90 (cultural_and_educational_panel INTEGER,industrial_and_commercial_panel VARCHAR,agricultural_panel VARCHAR)
SELECT SUM(cultural_and_educational_panel) FROM table_name_90 WHERE industrial_and_commercial_panel = 0 AND agricultural_panel > 0
For those employees who was hired before 2002-06-21, show me about the distribution of hire_date and the average of salary bin hire_date by time in a bar chart, and rank by the y axis in descending.
CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),E...
SELECT HIRE_DATE, AVG(SALARY) FROM employees WHERE HIRE_DATE < '2002-06-21' ORDER BY AVG(SALARY) DESC
Rank of 6 has what time?
CREATE TABLE table_14069 ("Rank" real,"Athlete" text,"Country" text,"Time" text,"Notes" text)
SELECT "Time" FROM table_14069 WHERE "Rank" = '6'
What College team has 8 rounds?
CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR,round VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_31 WHERE round = 8
What was the final result when the Mountaineers scored less than 13 and their opponents scored 26?
CREATE TABLE table_69893 ("Date" text,"Bowl" text,"Result" text,"Points For" real,"Points Against" real)
SELECT "Result" FROM table_69893 WHERE "Points For" < '13' AND "Points Against" = '26'
tell me the test that was last given to patient 035-4428 in 08/last year?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult nu...
SELECT lab.labname FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '035-4428')) AND DATETIME(lab.labresulttime, 'start of year') = DATETIME(CURRENT_TIME(), '...
Which team has finished in 1st place in 2011?
CREATE TABLE table_50504 ("Year" real,"Team" text,"Co-Drivers" text,"Class" text,"Laps" real,"Pos." text,"Class Pos." text)
SELECT "Team" FROM table_50504 WHERE "Pos." = '1st' AND "Year" = '2011'
What is the total attendance for the August 8 game?
CREATE TABLE table_71337 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text)
SELECT SUM("Attendance") FROM table_71337 WHERE "Date" = 'august 8'
what is days of hospital stay and death status of subject id 74032?
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 (subject_id text,hadm_id text,name text,marital_status text,age text,dob...
SELECT demographic.days_stay, demographic.expire_flag FROM demographic WHERE demographic.subject_id = "74032"
i'd like to get a flight leaving SAN FRANCISCO and arriving at PHILADELPHIA pennsylvania
CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE airport_service (city_code varchar,airport_code varchar,mile...
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 = 'SAN FRANCISCO' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = '...
In what place(s) did the player(s) with a total less than 282 finish?
CREATE TABLE table_60921 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" text,"Finish" text)
SELECT "Finish" FROM table_60921 WHERE "Total" < '282'
For those records from the products and each product's manufacturer, give me the comparison about revenue over the name , and group by attribute founder by a bar chart.
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, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder, T1.Name
What callsign has commenced operations in 2011?
CREATE TABLE table_name_34 (callsign VARCHAR,commenced_operations VARCHAR)
SELECT callsign FROM table_name_34 WHERE commenced_operations = 2011
For those records from the products and each product's manufacturer, show me about the distribution of name and revenue , and group by attribute founder in a bar chart.
CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)
SELECT T1.Name, T2.Revenue FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder, T1.Name
What was the date of the Mariners game that had a loss of Segui (0-5)?
CREATE TABLE table_name_77 (date VARCHAR,loss VARCHAR)
SELECT date FROM table_name_77 WHERE loss = "segui (0-5)"
How many Pos have a Driver of todd bodine, and a Car # larger than 30?
CREATE TABLE table_38901 ("Pos." real,"Car #" real,"Driver" text,"Make" text,"Team" text)
SELECT COUNT("Pos.") FROM table_38901 WHERE "Driver" = 'todd bodine' AND "Car #" > '30'
how many women were above the age of 45 when executed ?
CREATE TABLE table_204_867 (id number,"number" number,"date" text,"name" text,"age\n(at execution)" number,"age\n(at offense)" number,"race" text,"state" text,"method" text)
SELECT COUNT(*) FROM table_204_867 WHERE "age\n(at execution)" > 45
What is recorded as the lowest Round for the Player Jim Thompson?
CREATE TABLE table_5020 ("Round" real,"Pick" real,"Player" text,"Position" text,"School/Club Team" text)
SELECT MIN("Round") FROM table_5020 WHERE "Player" = 'jim thompson'
what is the average age of patients whose primary disease is copd exacerbation and who were admitted in or after year 2166?
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)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marita...
SELECT AVG(demographic.age) FROM demographic WHERE demographic.diagnosis = "COPD EXACERBATION" AND demographic.admityear >= "2166"
Name the least goals when position is more than 4 and draws is more than 11
CREATE TABLE table_15763 ("Position" real,"Club" text,"Played" real,"Points" text,"Wins" real,"Draws" real,"Losses" real,"Goals for" real,"Goals against" real,"Goal Difference" real)
SELECT MIN("Goals for") FROM table_15763 WHERE "Position" > '4' AND "Draws" > '11'
what are the three commonest prescribed drugs for patients who previously were prescribed calcium chloride within 2 months until 2104?
CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosi...
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 = 'calcium chloride' AND STRFTIME('%y', medication.dru...
what were the five most frequent diagnoses among the patients 30s?
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 TABLE prescriptions (row_id number,subject_id number,hadm_id number,...
SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT t1.icd9_code FROM (SELECT diagnoses_icd.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age BETWEEN...
How many poles had a moto2 class?
CREATE TABLE table_name_75 (pole VARCHAR,class VARCHAR)
SELECT pole FROM table_name_75 WHERE class = "moto2"
What is the rank for the person with time 11.14?
CREATE TABLE table_name_54 (rank INTEGER,time___sec__ VARCHAR)
SELECT AVG(rank) FROM table_name_54 WHERE time___sec__ = 11.14
let me know the number of patients with diagnoses icd9 code 29634 who were admitted in hospital before 2124.
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 (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2124" AND diagnoses.icd9_code = "29634"
Who plays goaltender for the Vancouver Canucks?
CREATE TABLE table_name_22 (player VARCHAR,position VARCHAR,nhl_team VARCHAR)
SELECT player FROM table_name_22 WHERE position = "goaltender" AND nhl_team = "vancouver canucks"
Find all the distinct district names ordered by city area in descending.
CREATE TABLE district (District_name VARCHAR,city_area VARCHAR)
SELECT DISTINCT District_name FROM district ORDER BY city_area DESC
What jockey rode for Michael House before 2012
CREATE TABLE table_68181 ("Year" real,"Winner" text,"Jockey" text,"Trainer" text,"Owner" text,"Distance (Miles)" text,"Time" text)
SELECT "Jockey" FROM table_68181 WHERE "Year" < '2012' AND "Owner" = 'michael house'
What was the highest attendance when the opponent was the Indians and the record was 13-4?
CREATE TABLE table_69463 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text)
SELECT MAX("Attendance") FROM table_69463 WHERE "Opponent" = 'indians' AND "Record" = '13-4'
tell me the costs of a drug named emtricitabine?
CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)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 (r...
SELECT DISTINCT cost.cost FROM cost WHERE cost.event_type = 'prescriptions' AND cost.event_id IN (SELECT prescriptions.row_id FROM prescriptions WHERE prescriptions.drug = 'emtricitabine')
Which films does the actor Alla Sergiyko star in?
CREATE TABLE table_10236830_6 (film_name VARCHAR,actors_name VARCHAR)
SELECT film_name FROM table_10236830_6 WHERE actors_name = "Alla Sergiyko"
severe uncontrolled hypertension ( >= 180 / 110 ) or hypertensive retinopathy
CREATE TABLE table_test_19 ("id" int,"gender" string,"left_ventricular_ejection_fraction_lvef" int,"systolic_blood_pressure_sbp" int,"acute_infectious" bool,"hypertensive_retinopathy" bool,"leukocyte_count" int,"severe_uncontrolled_hypertension" bool,"chronic_infectious" bool,"heart_disease" bool,"nyha_class" int,"body...
SELECT * FROM table_test_19 WHERE severe_uncontrolled_hypertension = 1 OR systolic_blood_pressure_sbp >= 180 OR diastolic_blood_pressure_dbp >= 110 OR hypertensive_retinopathy = 1
What is the rank of the 150.163 qual?
CREATE TABLE table_name_34 (rank VARCHAR,qual VARCHAR)
SELECT rank FROM table_name_34 WHERE qual = "150.163"
What is the oldest year with a main span feet of 1,640 in South Korea?
CREATE TABLE table_75878 ("Rank" real,"Main span metres" text,"Main span feet" text,"Year opened" real,"Country" text)
SELECT MIN("Year opened") FROM table_75878 WHERE "Main span feet" = '1,640' AND "Country" = 'south korea'
Who were the writers of episode 20?
CREATE TABLE table_20538157_2 (written_by VARCHAR,no_in_season VARCHAR)
SELECT written_by FROM table_20538157_2 WHERE no_in_season = 20
What's the total number of episodes with the production code 2395113A?
CREATE TABLE table_10953197_4 (title VARCHAR,production_code VARCHAR)
SELECT COUNT(title) FROM table_10953197_4 WHERE production_code = "2395113A"
what's the district with incumbent being richard j. welch
CREATE TABLE table_1342359_5 (district VARCHAR,incumbent VARCHAR)
SELECT district FROM table_1342359_5 WHERE incumbent = "Richard J. Welch"
Who is the player when the highest score is 84?
CREATE TABLE table_28846752_4 (player VARCHAR,highest_score VARCHAR)
SELECT player FROM table_28846752_4 WHERE highest_score = "84"
What are the details of the lots which are not used in any transactions?
CREATE TABLE sales (sales_transaction_id number,sales_details text)CREATE TABLE investors (investor_id number,investor_details text)CREATE TABLE purchases (purchase_transaction_id number,purchase_details text)CREATE TABLE transactions (transaction_id number,investor_id number,transaction_type_code text,date_of_transact...
SELECT lot_details FROM lots EXCEPT SELECT T1.lot_details FROM lots AS T1 JOIN transactions_lots AS T2 ON T1.lot_id = T2.lot_id
What is the Icelandic title for the Norweigan titled galgeblomsten?
CREATE TABLE table_name_28 (icelandic_title VARCHAR,norwegian_title VARCHAR)
SELECT icelandic_title FROM table_name_28 WHERE norwegian_title = "galgeblomsten"
What's the Home ground(s) listed for the Name Melville Cricket Club?
CREATE TABLE table_name_11 (home_ground_s_ VARCHAR,name VARCHAR)
SELECT home_ground_s_ FROM table_name_11 WHERE name = "melville cricket club"
How many goals were there in game 47?
CREATE TABLE table_name_29 (goals VARCHAR,games VARCHAR)
SELECT goals FROM table_name_29 WHERE games = "47"
What is Score, when Location Attendance is 'Madison Square Garden Unknown', and when High Rebounds is 'Sidney Green (10)'?
CREATE TABLE table_name_9 (score VARCHAR,location_attendance VARCHAR,high_rebounds VARCHAR)
SELECT score FROM table_name_9 WHERE location_attendance = "madison square garden unknown" AND high_rebounds = "sidney green (10)"
how many bronze medals did el salvador win ?
CREATE TABLE table_204_785 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number)
SELECT "bronze" FROM table_204_785 WHERE "nation" = 'el salvador'
What Area (km 2) is lowest with a type being Apostolic Administration?
CREATE TABLE table_name_47 (area__km_2__ INTEGER,type VARCHAR)
SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = "apostolic administration"
Name the county with the peak being indre russetind?
CREATE TABLE table_12280396_1 (county VARCHAR,peak VARCHAR)
SELECT county FROM table_12280396_1 WHERE peak = "Indre Russetind"
give me a list of flights between PITTSBURGH and BALTIMORE
CREATE TABLE compartment_class (compartment varchar,class_type varchar)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 city (city_code varchar,city_name varchar,state_code va...
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 = 'PITTSBURGH' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BAL...
Name the original air date for harry hannigan directed by adam weissman
CREATE TABLE table_26401 ("Series #" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Prod. code" real)
SELECT "Original air date" FROM table_26401 WHERE "Written by" = 'Harry Hannigan' AND "Directed by" = 'Adam Weissman'
When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes?
CREATE TABLE table_name_38 (byes INTEGER,south_west_dfl VARCHAR,wins VARCHAR)
SELECT MAX(byes) FROM table_name_38 WHERE south_west_dfl = "heathmere" AND wins > 11
Who attended Columbia law school and was appointed in 2004?
CREATE TABLE table_name_30 (name VARCHAR,law_school_attended VARCHAR,appointed VARCHAR)
SELECT name FROM table_name_30 WHERE law_school_attended = "columbia law school" AND appointed = 2004
WHAT YEAR HAD 5 TOTAL MATCHES?
CREATE TABLE table_50756 ("Year" text,"Total matches" real,"Total W-L-H" text,"Singles W-L-H" text,"Points won" real,"Points %" text)
SELECT "Year" FROM table_50756 WHERE "Total matches" = '5'
For Venue vfl park, what was the home team score?
CREATE TABLE table_53708 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Home team score" FROM table_53708 WHERE "Venue" = 'vfl park'