instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
Which Score has an Opponent of seattle?
CREATE TABLE table_49774 ("Game" real,"Date" text,"Opponent" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location/Attendance" text,"Record" text)
SELECT "Score" FROM table_49774 WHERE "Opponent" = 'seattle'
Which driver won the race xiv el intarhanajot?
CREATE TABLE table_1140116_5 (winning_driver VARCHAR,race_name VARCHAR)
SELECT winning_driver FROM table_1140116_5 WHERE race_name = "XIV Eläintarhanajot"
what is the total number of teams ?
CREATE TABLE table_203_761 (id number,"pos" number,"no" number,"driver" text,"team" text,"laps" number,"time/retired" text,"grid" number,"points" number)
SELECT COUNT(DISTINCT "team") FROM table_203_761
provide the number of patients whose religion is greek orthodox and lab test name is uptake ratio?
CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug tex...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.religion = "GREEK ORTHODOX" AND lab.label = "Uptake Ratio"
Show how many delegates in each county with a bar chart.
CREATE TABLE county (County_Id int,County_name text,Population real,Zip_code text)CREATE TABLE election (Election_ID int,Counties_Represented text,District int,Delegate text,Party int,First_Elected real,Committee text)CREATE TABLE party (Party_ID int,Year real,Party text,Governor text,Lieutenant_Governor text,Comptroll...
SELECT County_name, COUNT(County_name) FROM county AS T1 JOIN election AS T2 ON T1.County_Id = T2.District GROUP BY County_name
Name the nickerie for marowijne being 4.7%
CREATE TABLE table_21148 ("Religion" text,"Suriname" text,"Paramaribo" text,"Wanica" text,"Nickerie" text,"Coronie" text,"Saramacca" text,"Commewijne" text,"Marowijne" text,"Para" text,"Brokopondo" text,"Sipaliwini" text)
SELECT COUNT("Nickerie") FROM table_21148 WHERE "Marowijne" = '4.7%'
What was the result of the fight when Tetsuji Kato's record was 19-9?
CREATE TABLE table_name_73 (res VARCHAR,record VARCHAR)
SELECT res FROM table_name_73 WHERE record = "19-9"
How many wins had 58 goals scored?
CREATE TABLE table_18018248_2 (wins VARCHAR,goals_scored VARCHAR)
SELECT wins FROM table_18018248_2 WHERE goals_scored = 58
Mean of played with smaller than 7 conceded?
CREATE TABLE table_50936 ("Position" real,"Team" text,"Played" real,"Wins" real,"Draws" real,"Losses" real,"Scored" real,"Conceded" real,"Points" real)
SELECT AVG("Played") FROM table_50936 WHERE "Conceded" < '7'
what is the name of the country that participated in the most tournament competitions?
CREATE TABLE competition_result (competition_id number,club_id_1 number,club_id_2 number,score text)CREATE TABLE competition (competition_id number,year number,competition_type text,country text)CREATE TABLE player (player_id number,name text,position text,club_id number,apps number,tries number,goals text,points numbe...
SELECT country FROM competition WHERE competition_type = 'Tournament' GROUP BY country ORDER BY COUNT(*) DESC LIMIT 1
What year was olympics, Canada and the Men's Eight Event ended with a silver medal?
CREATE TABLE table_name_92 (year INTEGER,result VARCHAR,nation VARCHAR,championship VARCHAR,event VARCHAR)
SELECT MAX(year) FROM table_name_92 WHERE championship = "olympics" AND event = "men's eight" AND nation = "canada" AND result = "silver"
What is the 92'-93 result for the team with 55 in 91'-92?
CREATE TABLE table_19306 ("Team" text,"Average" text,"Points" real,"Played" real,"1991-92" text,"1992-93" text,"1993-94" real)
SELECT "1992-93" FROM table_19306 WHERE "1991-92" = '55'
What is the release date of I Wanna Play House?
CREATE TABLE table_name_95 (release_date VARCHAR,title VARCHAR)
SELECT release_date FROM table_name_95 WHERE title = "i wanna play house"
Which Series are on may 18?
CREATE TABLE table_name_86 (series VARCHAR,date VARCHAR)
SELECT series FROM table_name_86 WHERE date = "may 18"
Who is the player with a to par of +1?
CREATE TABLE table_name_71 (player VARCHAR,to_par VARCHAR)
SELECT player FROM table_name_71 WHERE to_par = "+1"
For those records from the products and each product's manufacturer, give me the comparison about the average of code over the founder , and group by attribute founder by a bar chart, and rank Founder in descending order please.
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 T2.Founder, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY T2.Founder ORDER BY T2.Founder DESC
Mean of played with smaller than 7 conceded?
CREATE TABLE table_name_62 (played INTEGER,conceded INTEGER)
SELECT AVG(played) FROM table_name_62 WHERE conceded < 7
What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823?
CREATE TABLE table_name_68 (rank INTEGER,area VARCHAR,density VARCHAR,province VARCHAR)
SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = "valverde" AND area > 823
what is the total attendance on 11/09/2013 ?
CREATE TABLE table_204_168 (id number,"date" text,"time" text,"opponent" text,"site" text,"tv" text,"result" text,"attendance" number,"record" text)
SELECT "attendance" FROM table_204_168 WHERE "date" = '11/09/2013'
whats the sex of patient 002-59265?
CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim...
SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '002-59265'
what is the number of patients whose year of birth is less than 2065?
CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id t...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.dob_year < "2065"
When there are 9.28 million viewers what is the share (18-49)?
CREATE TABLE table_28980706_4 (share__18_49_ VARCHAR,viewers__millions_ VARCHAR)
SELECT share__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "9.28"
Show all origins and the number of flights from each origin.
CREATE TABLE aircraft (aid number,name text,distance number)CREATE TABLE flight (flno number,origin text,destination text,distance number,departure_date time,arrival_date time,price number,aid number)CREATE TABLE employee (eid number,name text,salary number)CREATE TABLE certificate (eid number,aid number)
SELECT origin, COUNT(*) FROM flight GROUP BY origin
provide the diagnosis short title of diagnosis icd9 code 53550.
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 diagnoses.short_title FROM diagnoses WHERE diagnoses.icd9_code = "53550"
Who has published more papers in NSDI ?
CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE paperkeyphrase (paperid int,keyphraseid int)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE dataset (datasetid int,datasetname varchar)CREATE TABLE venue (venueid int,venuename varchar)CREATE...
SELECT DISTINCT COUNT(DISTINCT paper.paperid), writes.authorid FROM paper, venue, writes WHERE venue.venueid = paper.venueid AND venue.venuename = 'NSDI' AND writes.paperid = paper.paperid GROUP BY writes.authorid ORDER BY COUNT(DISTINCT paper.paperid) DESC
Show the id and salary of Mark Young.
CREATE TABLE flight (flno number,origin text,destination text,distance number,departure_date time,arrival_date time,price number,aid number)CREATE TABLE employee (eid number,name text,salary number)CREATE TABLE aircraft (aid number,name text,distance number)CREATE TABLE certificate (eid number,aid number)
SELECT eid, salary FROM employee WHERE name = 'Mark Young'
What is 2012, when Tournament is 'French Open'?
CREATE TABLE table_name_55 (tournament VARCHAR)
SELECT 2012 FROM table_name_55 WHERE tournament = "french open"
How many rooms have a king bed?
CREATE TABLE rooms (roomid text,roomname text,beds number,bedtype text,maxoccupancy number,baseprice number,decor text)CREATE TABLE reservations (code number,room text,checkin text,checkout text,rate number,lastname text,firstname text,adults number,kids number)
SELECT COUNT(*) FROM rooms WHERE bedtype = "King"
Which team was in a game with a record of 15-63?
CREATE TABLE table_18874 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text)
SELECT "Team" FROM table_18874 WHERE "Record" = '15-63'
Which players were born in 1983 and play as forward position?
CREATE TABLE table_26245 ("No" real,"Player" text,"Height (m)" text,"Height (f)" text,"Position" text,"Year born" real,"Current Club" text)
SELECT "Player" FROM table_26245 WHERE "Year born" = '1983' AND "Position" = 'Forward'
What position was played at the World Athletics Final Competition in a year more recent than 2008?
CREATE TABLE table_40512 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Event" text)
SELECT "Position" FROM table_40512 WHERE "Competition" = 'world athletics final' AND "Year" > '2008'
What was the wind at New York City when the rank was smaller than 6?
CREATE TABLE table_name_18 (wind VARCHAR,rank VARCHAR,location VARCHAR)
SELECT wind FROM table_name_18 WHERE rank < 6 AND location = "new york city"
List all the log entry descriptions and count them using a bar chart.
CREATE TABLE Problems (problem_id INTEGER,product_id INTEGER,closure_authorised_by_staff_id INTEGER,reported_by_staff_id INTEGER,date_problem_reported DATETIME,date_problem_closed DATETIME,problem_description VARCHAR(255),other_problem_details VARCHAR(255))CREATE TABLE Problem_Log (problem_log_id INTEGER,assigned_to_st...
SELECT log_entry_description, COUNT(log_entry_description) FROM Problem_Log GROUP BY log_entry_description
What is listed in drainage basin when the type is gravity and the reservoir surface is 34.36?
CREATE TABLE table_30694 ("Reservoir" text,"Basin" text,"Location" text,"Type" text,"Height (m)" text,"Length along the top (m)" text,"Drainage basin (km\u00b2)" text,"Reservoir surface (ha)" text,"Volume (hm\u00b3)" text)
SELECT "Drainage basin (km\u00b2)" FROM table_30694 WHERE "Type" = 'Gravity' AND "Reservoir surface (ha)" = '34.36'
which team won after ballymore eustace ?
CREATE TABLE table_204_772 (id number,"team" text,"county" text,"wins" number,"years won" number)
SELECT "team" FROM table_204_772 WHERE "years won" > (SELECT "years won" FROM table_204_772 WHERE "team" = 'ballymore eustace') ORDER BY "years won" LIMIT 1
What are the children per donor in the country where the allowed recipients are married or in cohabitation?
CREATE TABLE table_16175217_1 (children_per_donor VARCHAR,allowed_recipients VARCHAR)
SELECT children_per_donor FROM table_16175217_1 WHERE allowed_recipients = "Married or in cohabitation"
Who was the away team when the home team scored 20.15 (135)?
CREATE TABLE table_32282 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Away team score" FROM table_32282 WHERE "Home team score" = '20.15 (135)'
Which away team played a home team with a score of 10.9 (69) at Glenferrie Oval?
CREATE TABLE table_57429 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Away team" FROM table_57429 WHERE "Home team score" = '10.9 (69)' AND "Venue" = 'glenferrie oval'
How much Loss has a Gain smaller than 1571, and a Long smaller than 47, and an Avg/G of 36.4?
CREATE TABLE table_77057 ("Name" text,"Gain" real,"Loss" real,"Long" real,"Avg/G" real)
SELECT COUNT("Loss") FROM table_77057 WHERE "Gain" < '1571' AND "Long" < '47' AND "Avg/G" = '36.4'
What is the info for the year 2010, for the Australian Open tournament?
CREATE TABLE table_6242 ("Tournament" text,"2004" text,"2005" text,"2006" text,"2007" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text)
SELECT "2010" FROM table_6242 WHERE "Tournament" = 'australian open'
WHo has a Position of end and a School/Club Team of oregon state?
CREATE TABLE table_36511 ("Round" real,"Pick" real,"Player" text,"Position" text,"School/Club Team" text)
SELECT "Player" FROM table_36511 WHERE "Position" = 'end' AND "School/Club Team" = 'oregon state'
On how many different dates did schools from Chestnut Hill, Massachusetts join the conference?
CREATE TABLE table_23214 ("Institution" text,"Location" text,"Nickname" text,"Founded" real,"Type" text,"Enrollment" real,"Joined" real)
SELECT COUNT("Joined") FROM table_23214 WHERE "Location" = 'Chestnut Hill, Massachusetts'
What is the high loss total for players with zero wins and a win % greater than 0?
CREATE TABLE table_55996 ("Name" text,"Period" text,"Starts" real,"Wins" real,"Losses" real,"Ties" real,"Win %" real)
SELECT MAX("Losses") FROM table_55996 WHERE "Wins" = '0' AND "Win %" > '0'
What is the Hometown of Tim Williams?
CREATE TABLE table_name_72 (hometown__previous_school_ VARCHAR,name VARCHAR)
SELECT hometown__previous_school_ FROM table_name_72 WHERE name = "tim williams"
Which Giant Slalom has a Slalom of 45?
CREATE TABLE table_name_26 (Giant VARCHAR,slalom VARCHAR)
SELECT Giant AS slalom FROM table_name_26 WHERE slalom = "45"
What is 1990, when 1997 is '1R', and when Tournament is 'Hamburg'?
CREATE TABLE table_45555 ("Tournament" text,"1988" text,"1989" text,"1990" text,"1991" text,"1992" text,"1993" text,"1994" text,"1995" text,"1996" text,"1997" text,"1998" text,"1999" text,"2000" text,"2001" text,"2002" text,"2003" text,"2004" text,"Career SR" text,"Career Win-Loss" text)
SELECT "1990" FROM table_45555 WHERE "1997" = '1r' AND "Tournament" = 'hamburg'
how many games did he score but his team lost ?
CREATE TABLE table_203_551 (id number,"goal" number,"date" text,"venue" text,"opponent" text,"score" text,"result" text,"competition" text)
SELECT COUNT(*) FROM table_203_551 WHERE "result" < "result"
what nationality is on top of french navy ?
CREATE TABLE table_203_148 (id number,"date" text,"name" text,"nationality" text,"tonnage\n(grt)" number,"fate" text)
SELECT "nationality" FROM table_203_148 WHERE id = (SELECT id FROM table_203_148 WHERE "nationality" = 'french navy') - 1
What is the to par for Jiyai Shin when the place is t1?
CREATE TABLE table_65903 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text)
SELECT "To par" FROM table_65903 WHERE "Place" = 't1' AND "Player" = 'jiyai shin'
Name the number of reason for change on may 11, 1939
CREATE TABLE table_24508 ("District" text,"Vacator" text,"Reason for change" text,"Successor" text,"Date successor seated" text)
SELECT COUNT("Reason for change") FROM table_24508 WHERE "Date successor seated" = 'May 11, 1939'
how many patients are admitted before the year 2120 and administered through oral drug route?
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 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 prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admityear < "2120" AND prescriptions.route = "ORAL"
What is the to par of player peter senior?
CREATE TABLE table_name_91 (to_par VARCHAR,player VARCHAR)
SELECT to_par FROM table_name_91 WHERE player = "peter senior"
Who were the candidates in the Kentucky 5 district?
CREATE TABLE table_2668254_8 (candidates VARCHAR,district VARCHAR)
SELECT candidates FROM table_2668254_8 WHERE district = "Kentucky 5"
Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?
CREATE TABLE table_name_36 (championship VARCHAR,year VARCHAR,opponent VARCHAR,surface VARCHAR)
SELECT championship FROM table_name_36 WHERE opponent = "roger federer" AND surface = "clay" AND year < 2007
Which position had a goal difference of less than 27, lost more than 13 games, scored less than 42 goals and drew 6 games?
CREATE TABLE table_67377 ("Position" real,"Club" text,"Played" real,"Points" text,"Wins" real,"Draws" real,"Losses" real,"Goals for" real,"Goals against" real,"Goal Difference" real)
SELECT MAX("Played") FROM table_67377 WHERE "Goal Difference" < '27' AND "Losses" > '13' AND "Goals for" < '42' AND "Draws" = '6'
What is the total number of FA Cup Goals, when FLT Goals is greater than 0?
CREATE TABLE table_name_47 (fa_cup_goals VARCHAR,flt_goals INTEGER)
SELECT COUNT(fa_cup_goals) FROM table_name_47 WHERE flt_goals > 0
In what even was the compulsory dance scored 23.75?
CREATE TABLE table_22644589_4 (event VARCHAR,compulsory_dance__cd_ VARCHAR)
SELECT event FROM table_22644589_4 WHERE compulsory_dance__cd_ = "23.75"
You can return a bar chart to show the employees' first name and the corresponding manager's id, and rank total number in ascending order.
CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY dec...
SELECT FIRST_NAME, MANAGER_ID FROM employees ORDER BY MANAGER_ID
What is the public debt % of GDP in 2013 Q1 with a 4.7% GDP of EU in 2012?
CREATE TABLE table_20461 ("Member State sorted by GDP" text,"GDP in s billion of USD (2012)" text,"GDP % of EU (2012)" text,"Annual change % of GDP (2012)" text,"GDP per capita in PPP US$ (2012)" real,"Public Debt % of GDP (2013 Q1)" text,"Deficit (-)/ Surplus (+) % of GDP (2012)" text,"Inflation % Annual (2012)" text,...
SELECT "Public Debt % of GDP (2013 Q1)" FROM table_20461 WHERE "GDP % of EU (2012)" = '4.7%'
Which Yards has a Long smaller than 3?
CREATE TABLE table_name_2 (yards INTEGER,long INTEGER)
SELECT AVG(yards) FROM table_name_2 WHERE long < 3
What was the score when the partner is Rafael Osuna?
CREATE TABLE table_24801 ("Outcome" text,"Year" real,"Championship" text,"Surface" text,"Partner" text,"Opponents" text,"Score" text)
SELECT "Score" FROM table_24801 WHERE "Partner" = 'Rafael Osuna'
how many patients stayed in hospital for more than 3 days and were diagnosed with ac vasc insuff intestine?
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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.days_stay > "3" AND diagnoses.short_title = "Ac vasc insuff intestine"
What driver has 19 as the zan 1?
CREATE TABLE table_name_13 (driver VARCHAR,zan_1 VARCHAR)
SELECT driver FROM table_name_13 WHERE zan_1 = "19"
Which Surface has a Score of 7 5, 6 4?
CREATE TABLE table_35496 ("Date" text,"Tournament" text,"Surface" text,"Opponen" text,"Score" text)
SELECT "Surface" FROM table_35496 WHERE "Score" = '7–5, 6–4'
what are the top three common diagnoses that patients were diagnosed with within 2 months after having been diagnosed with pleural effusion nos in 2105?
CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE patients (row_id num...
SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.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 = admissions...
what was the four most frequent specimen tests that patients had during the same month after they had been diagnosed with cerv spondyl w myelopath?
CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime 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 d_labitems (row_id number,itemid number,label text)CREATE TABLE ...
SELECT t3.spec_type_desc FROM (SELECT t2.spec_type_desc, 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 = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_...
Find the average and minimum weight for each gender.
CREATE TABLE people (people_id number,sex text,name text,date_of_birth text,height number,weight number)CREATE TABLE candidate (candidate_id number,people_id number,poll_source text,date text,support_rate number,consider_rate number,oppose_rate number,unsure_rate number)
SELECT AVG(weight), MIN(weight), sex FROM people GROUP BY sex
how many patients whose admission year is less than 2154 and drug name is sw?
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.admityear < "2154" AND prescriptions.drug = "SW"
Which opponent was playing on December 20, 1998?
CREATE TABLE table_name_63 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_63 WHERE date = "december 20, 1998"
what were the top five most frequent diagnoses of the patients of age 40s a year before?
CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE lab (labid number,patientunitstayid nu...
SELECT t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age BETWEEN 40 AND 49) AND DATETIME(diagnosis.diagnosistime, 'start of year') = DATETIME(CURRENT...
Which player was the high points scorer during the game with an end score of W 93-85?
CREATE TABLE table_47734 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Series" text)
SELECT "High points" FROM table_47734 WHERE "Score" = 'w 93-85'
Who was the opponent on April 29?
CREATE TABLE table_name_5 (opponent VARCHAR,date VARCHAR)
SELECT opponent FROM table_name_5 WHERE date = "april 29"
what tournament happened on march 27, 2006?
CREATE TABLE table_69926 ("Date" text,"Tournament" text,"Surface" text,"Opponent" text,"Score" text)
SELECT "Tournament" FROM table_69926 WHERE "Date" = 'march 27, 2006'
Name the average Bronze when silver is more than 3, gold is more than 1 and the total is 14
CREATE TABLE table_34278 ("Rank" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real)
SELECT AVG("Bronze") FROM table_34278 WHERE "Gold" > '1' AND "Total" = '14' AND "Silver" > '3'
Which Water (sqmi) has a County of benson, and an ANSI code smaller than 1759243?
CREATE TABLE table_name_13 (water__sqmi_ INTEGER,county VARCHAR,ansi_code VARCHAR)
SELECT MIN(water__sqmi_) FROM table_name_13 WHERE county = "benson" AND ansi_code < 1759243
Which Species Specific has a Comparative of no, and an Intra-molecular structure of no, and a Link of sourcecode?
CREATE TABLE table_name_29 (species_specific VARCHAR,link VARCHAR,comparative VARCHAR,intra_molecular_structure VARCHAR)
SELECT species_specific FROM table_name_29 WHERE comparative = "no" AND intra_molecular_structure = "no" AND link = "sourcecode"
Which Home/Away was on April 27, 2008?
CREATE TABLE table_name_70 (home_away VARCHAR,date VARCHAR)
SELECT home_away FROM table_name_70 WHERE date = "april 27, 2008"
Before CMPLXSYS 281 what courses do I need ?
CREATE TABLE jobs (job_id int,job_title varchar,description varchar,requirement varchar,city varchar,state varchar,country varchar,zip int)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE ...
SELECT DISTINCT COURSE_0.department, COURSE_0.name, COURSE_0.number FROM course AS COURSE_0, course AS COURSE_1, course_prerequisite WHERE COURSE_0.course_id = course_prerequisite.pre_course_id AND NOT COURSE_0.course_id IN (SELECT STUDENT_RECORDalias0.course_id FROM student_record AS STUDENT_RECORDalias0 WHERE STUDENT...
Marcell Jansen with a transfer window of summer, and of transfer as type is from what nation?
CREATE TABLE table_name_15 (nat VARCHAR,name VARCHAR,transfer_window VARCHAR,type VARCHAR)
SELECT nat FROM table_name_15 WHERE transfer_window = "summer" AND type = "transfer" AND name = "marcell jansen"
Head Coach of wojciech kami ski is what club?
CREATE TABLE table_36906 ("Club" text,"Sport" text,"Founded" real,"League" text,"Venue" text,"Head Coach" text)
SELECT "Club" FROM table_36906 WHERE "Head Coach" = 'wojciech kamiński'
I want the total number of points for against of 753 and points diff more than -114
CREATE TABLE table_52801 ("Team" text,"Played" real,"Drawn" real,"Lost" real,"Against" real,"Points Diff" real,"Points" real)
SELECT COUNT("Points") FROM table_52801 WHERE "Against" = '753' AND "Points Diff" > '-114'
How many Apogee sis Ops-8285 with more than 1500 kg?
CREATE TABLE table_name_74 (apogee__km_ VARCHAR,alt_name VARCHAR,mass__kg_ VARCHAR)
SELECT COUNT(apogee__km_) FROM table_name_74 WHERE alt_name = "ops-8285" AND mass__kg_ > 1500
which is the only rider with number 6 grid on the chart
CREATE TABLE table_204_535 (id number,"pos" text,"rider" text,"manufacturer" text,"laps" number,"time/retired" text,"grid" number,"points" number)
SELECT "rider" FROM table_204_535 WHERE "grid" = 6
what is the score for the game on 21 april 2001?
CREATE TABLE table_15776 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text)
SELECT "Score" FROM table_15776 WHERE "Date" = '21 april 2001'
Name the game for andre miller , rudy fernandez (7)
CREATE TABLE table_23286158_8 (game VARCHAR,high_rebounds VARCHAR)
SELECT game FROM table_23286158_8 WHERE high_rebounds = "Andre Miller , Rudy Fernandez (7)"
other than friendly games , how many games did serbia play in 2010 ?
CREATE TABLE table_204_275 (id number,"date" text,"city" text,"opponent" text,"results" text,"scorers" text,"type of game" text)
SELECT COUNT(*) FROM table_204_275 WHERE "type of game" <> 'friendly' AND "date" = 2010
what was the number of party votes cast in 1987 ?
CREATE TABLE table_204_72 (id number,"election year" number,"# of\nconstituency votes" number,"# of\nparty list votes" number,"% of\nparty list votes" number,"# of\noverall seats won" text,"+/-" number)
SELECT "# of\nparty list votes" FROM table_204_72 WHERE "election year" = 1987
show me flights from DALLAS to SAN FRANCISCO on WEDNESDAY
CREATE TABLE flight (aircraft_code_sequence text,airline_code varchar,airline_flight text,arrival_time int,connections int,departure_time int,dual_carrier text,flight_days text,flight_id int,flight_number int,from_airport varchar,meal_code text,stops int,time_elapsed int,to_airport varchar)CREATE TABLE restriction (res...
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, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND days.day_name = 'WEDNESDAY' AND flight.flight_days = days.days_c...
does alexandria county have a higher or lower population than delaware county ?
CREATE TABLE table_204_616 (id number,"township" text,"fips" number,"population\ncenter" text,"population" number,"population\ndensity\n/km2 (/sq mi)" text,"land area\nkm2 (sq mi)" text,"water area\nkm2 (sq mi)" text,"water %" text,"geographic coordinates" text)
SELECT (SELECT "population" FROM table_204_616 WHERE "township" = 'alexandria') > (SELECT "population" FROM table_204_616 WHERE "township" = 'delaware')
Tell me the tv time for attendance of 60,894
CREATE TABLE table_74562 ("Week" real,"Date" text,"Opponent" text,"Result" text,"TV Time" text,"Attendance" text)
SELECT "TV Time" FROM table_74562 WHERE "Attendance" = '60,894'
What date did the home team score 9.10 (64)?
CREATE TABLE table_11636 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Date" FROM table_11636 WHERE "Home team score" = '9.10 (64)'
how many days have elapsed since the first time that patient 4401 had a tpn d13.0 intake on the current intensive care unit visit?
CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE diagnoses_icd (row_id number...
SELECT 1 * (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) A...
how many districts are there in this city ?
CREATE TABLE table_204_739 (id number,"districts" text,"ubigeo" number,"area\n(km2)" number,"population" number,"population density\n(/km2)" number,"created" text,"postal\ncode" number)
SELECT COUNT("districts") FROM table_204_739
Find the number of the enrollment date for all the tests that have 'Pass' result, sort in asc by the Y.
CREATE TABLE Student_Course_Enrolment (registration_id INTEGER,student_id INTEGER,course_id INTEGER,date_of_enrolment DATETIME,date_of_completion DATETIME)CREATE TABLE Course_Authors_and_Tutors (author_id INTEGER,author_tutor_ATB VARCHAR(3),login_name VARCHAR(40),password VARCHAR(40),personal_name VARCHAR(80),middle_na...
SELECT date_of_enrolment, COUNT(date_of_enrolment) FROM Student_Course_Enrolment AS T1 JOIN Student_Tests_Taken AS T2 ON T1.registration_id = T2.registration_id WHERE T2.test_result = "Pass" ORDER BY COUNT(date_of_enrolment)
Which yacht name has a Combined elapsed time of 179d 11h 58m 14s?
CREATE TABLE table_name_50 (yacht_name VARCHAR,combined_elapsed_time VARCHAR)
SELECT yacht_name FROM table_name_50 WHERE combined_elapsed_time = "179d 11h 58m 14s"
How many Attendances have a Score of 4 5? Question 4
CREATE TABLE table_36394 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Decision" text,"Attendance" real,"Series" text)
SELECT MAX("Attendance") FROM table_36394 WHERE "Score" = '4 – 5'
Display a bar chart for how many rooms in each building have a capacity of over 50?, could you list from low to high by the X?
CREATE TABLE teaches (ID varchar(5),course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0))CREATE TABLE department (dept_name varchar(20),building varchar(15),budget numeric(12,2))CREATE TABLE takes (ID varchar(5),course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0),grade v...
SELECT building, COUNT(*) FROM classroom WHERE capacity > 50 GROUP BY building ORDER BY building
what is the total number of medals given ?
CREATE TABLE table_203_314 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number)
SELECT SUM("total") FROM table_203_314
For those employees who do not work in departments with managers that have ids between 100 and 200, visualize a bar chart about the distribution of last_name and department_id , and I want to list in descending by the X 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 job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE departments (D...
SELECT LAST_NAME, DEPARTMENT_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY LAST_NAME DESC
What is the lowest number of last cfs of the team with 2 cf appearances, 0 cup wins, and less than 0 cf wins?
CREATE TABLE table_60296 ("Team" text,"CF appearances" real,"CF wins" real,"Cup wins" real,"Last CF" real)
SELECT MIN("Last CF") FROM table_60296 WHERE "CF appearances" = '2' AND "Cup wins" = '0' AND "CF wins" < '0'