instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
what is the sum of bronze when the rank is 5, the nation is poland and gold is less than 0? | CREATE TABLE table_60198 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT SUM("Bronze") FROM table_60198 WHERE "Rank" = '5' AND "Nation" = 'poland' AND "Gold" < '0' |
Answers with the lowest score. | CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName t... | SELECT r.Score AS rRep, q.Score AS qRep, 'http://scifi.stackexchange.com/a/' + CAST(r.Id AS TEXT) + '/4918|' + q.Title AS link, q.Tags AS tags, COALESCE(r.LastEditDate, r.CreationDate) AS rDate FROM Posts AS r, Posts AS q WHERE q.Id = r.ParentId AND r.PostTypeId = 2 AND r.Score < -10 ORDER BY rRep |
what is the number of patients whose days of hospital stay is greater than 23 and procedure icd9 code is 3606? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marita... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.days_stay > "23" AND procedures.icd9_code = "3606" |
What is the value in 2009 at the French Open? | CREATE TABLE table_name_86 (tournament VARCHAR) | SELECT 2009 FROM table_name_86 WHERE tournament = "french open" |
What teams has a home of 5-0? | CREATE TABLE table_13059 ("Season" text,"League" text,"Teams" text,"Home" text,"Away" text) | SELECT "Teams" FROM table_13059 WHERE "Home" = '5-0' |
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 first_name and manager_id , and display in asc by the Y-axis please. | CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTME... | SELECT FIRST_NAME, MANAGER_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY MANAGER_ID |
What is the genre of the Mass Effect game? | CREATE TABLE table_name_14 (genre VARCHAR,game VARCHAR) | SELECT genre FROM table_name_14 WHERE game = "mass effect" |
who died first : sala burton or harold earthman ? | CREATE TABLE table_204_145 (id number,"representative" text,"state" text,"district(s)" text,"served" text,"party" text,"date of birth" text,"date of death" text,"age" text) | SELECT "representative" FROM table_204_145 WHERE "representative" IN ('sala burton', 'harold earthman') ORDER BY "date of death" LIMIT 1 |
My comment score per comment. | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE Sugg... | SELECT Id AS "comment_link", Score FROM Comments WHERE UserId = @UserId |
when has patient 85027 last received a procedure since 2105? | CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE outputevents (row_id... | SELECT procedures_icd.charttime FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 85027) AND STRFTIME('%y', procedures_icd.charttime) >= '2105' ORDER BY procedures_icd.charttime DESC LIMIT 1 |
On what date did the Cavaliers have a record of 9-14? | CREATE TABLE table_8037 ("Date" text,"H/A/N" text,"Opponent" text,"Score" text,"Record" text) | SELECT "Date" FROM table_8037 WHERE "Record" = '9-14' |
What is the week 8 Oct 26 standing with georgia tech (8-2) on week 12 Nov 23? | CREATE TABLE table_name_1 (week_8_oct_26 VARCHAR,week_12_nov_23 VARCHAR) | SELECT week_8_oct_26 FROM table_name_1 WHERE week_12_nov_23 = "georgia tech (8-2)" |
what was the number of baskets houston scored on may 25th ? | CREATE TABLE table_203_689 (id number,"date" text,"opponent" text,"score" text,"result" text,"record" text) | SELECT "score" FROM table_203_689 WHERE "date" = 'may 25' |
Visualize a bar chart about the distribution of date_address_to and the average of monthly_rental , and group by attribute other_details and bin date_address_to by time. | CREATE TABLE Behavior_Incident (incident_id INTEGER,incident_type_code VARCHAR(10),student_id INTEGER,date_incident_start DATETIME,date_incident_end DATETIME,incident_summary VARCHAR(255),recommendations VARCHAR(255),other_details VARCHAR(255))CREATE TABLE Teachers (teacher_id INTEGER,address_id INTEGER,first_name VARC... | SELECT date_address_to, AVG(monthly_rental) FROM Student_Addresses GROUP BY other_details ORDER BY monthly_rental DESC |
Away result of 1-2 has what season? | CREATE TABLE table_name_95 (season VARCHAR,away_result VARCHAR) | SELECT season FROM table_name_95 WHERE away_result = "1-2" |
what is the number of patients whose days of hospital stay is greater than 6 and procedure long title is (aorto)coronary bypass of two coronary arteries? | 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 diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.days_stay > "6" AND procedures.long_title = "(Aorto)coronary bypass of two coronary arteries" |
Language Trends (# Questions per Tag per Month). | CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAutoRename time,Score number,ApprovedByUserId number,ApprovalDate time)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE Users (Id number,Reputation number,CreationDate... | SELECT DATEADD(mm, (YEAR(Posts.CreationDate) - 1900) * 12 + MONTH(Posts.CreationDate) - 1, 0) AS Month, Tags.TagName, COUNT(*) AS Questions FROM Tags LEFT JOIN PostTags ON PostTags.TagId = Tags.Id LEFT JOIN Posts ON Posts.Id = PostTags.PostId LEFT JOIN PostTypes ON PostTypes.Id = Posts.PostTypeId WHERE Tags.TagName IN ... |
what was the score when goran ivani evi was runner up and the tournament was in algarve? | CREATE TABLE table_name_53 (score VARCHAR,runner_up VARCHAR,tournament VARCHAR) | SELECT score FROM table_name_53 WHERE runner_up = "goran ivanišević" AND tournament = "algarve" |
How many bank branches are there? | CREATE TABLE bank (branch_id number,bname text,no_of_customers number,city text,state text)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 loan (loan_id text,loan_type text,cust_id text,branch_id text,amount ... | SELECT COUNT(*) FROM bank |
what is death status and admission time of subject id 17570? | 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 diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT demographic.expire_flag, demographic.admittime FROM demographic WHERE demographic.subject_id = "17570" |
What is the production number of From Hare to Heir? | CREATE TABLE table_name_33 (production_number INTEGER,title VARCHAR) | SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir" |
Name the party for john randolph redistricted from the 15th district | CREATE TABLE table_74010 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text) | SELECT "Party" FROM table_74010 WHERE "Incumbent" = 'John Randolph Redistricted from the 15th district' |
What was the score of the game on September 14, 2008? | CREATE TABLE table_name_88 (result VARCHAR,date VARCHAR) | SELECT result FROM table_name_88 WHERE date = "september 14, 2008" |
Tell me the the claim date and settlement date for each settlement case. | CREATE TABLE payments (payment_id number,settlement_id number,payment_method_code text,date_payment_made time,amount_payment number)CREATE TABLE customer_policies (policy_id number,customer_id number,policy_type_code text,start_date time,end_date time)CREATE TABLE claims (claim_id number,policy_id number,date_claim_mad... | SELECT date_claim_made, date_claim_settled FROM settlements |
For those employees who did not have any job in the past, return a bar chart about the distribution of hire_date and the sum of department_id bin hire_date by time. | CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,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),EMAIL varchar(25),PHONE... | SELECT HIRE_DATE, SUM(DEPARTMENT_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) |
What is the name of the team from goreville vienna school? | CREATE TABLE table_58761 ("Team Name" text,"Schools" text,"Sports" text,"Host" text,"Nickname(s)" text,"Colors" text,"Enrollment (2013/14)" real) | SELECT "Team Name" FROM table_58761 WHERE "Schools" = 'goreville vienna' |
Find the names of districts where have both city mall and village store type stores. | CREATE TABLE product (product_id number,product text,dimensions text,dpi number,pages_per_minute_color number,max_page_size text,interface text)CREATE TABLE store (store_id number,store_name text,type text,area_size number,number_of_product_category number,ranking number)CREATE TABLE district (district_id number,distri... | SELECT t3.district_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_id = t3.district_id WHERE t1.type = "City Mall" INTERSECT SELECT t3.district_name FROM store AS t1 JOIN store_district AS t2 ON t1.store_id = t2.store_id JOIN district AS t3 ON t2.district_... |
Most popular StackOverflow tags in time range. | CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,W... | SELECT num.TagName AS Tag, ROW_NUMBER() OVER (ORDER BY rate.Rate DESC) AS TimePeriodRank, ROW_NUMBER() OVER (ORDER BY num.Num DESC) AS TotalRank, rate.Rate AS TimePeriodQuestions, num.Num AS QuestionsTotal FROM (SELECT COUNT(PostId) AS Rate, TagName FROM Tags, PostTags, Posts WHERE Tags.Id = PostTags.TagId AND Posts.Id... |
What is the title of the episode written by Vanessa Bates? | CREATE TABLE table_23052 ("Series #" real,"Episode #" real,"Title" text,"Written by" text,"Directed by" text,"Viewers" real,"Original airdate" text) | SELECT "Title" FROM table_23052 WHERE "Written by" = 'Vanessa Bates' |
For the 1948-49 season, what was the At Home record? | CREATE TABLE table_name_31 (home VARCHAR,season VARCHAR) | SELECT home FROM table_name_31 WHERE season = "1948-49" |
Which Date has an Attendance larger than 16,186, and Points smaller than 52, and a Record of 21 16 9? | CREATE TABLE table_64403 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text,"Arena" text,"Points" real) | SELECT "Date" FROM table_64403 WHERE "Attendance" > '16,186' AND "Points" < '52' AND "Record" = '21–16–9' |
Name the club when tries for is 83 | CREATE TABLE table_13564702_3 (club VARCHAR,tries_for VARCHAR) | SELECT club FROM table_13564702_3 WHERE tries_for = "83" |
how many patients admitted before year 2182 had the primary disease aortic insufficiency\re-do sternotomy; aortic valve replacement? | 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 diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.diagnosis = "AORTIC INSUFFICIENCY\RE-DO STERNOTOMY; AORTIC VALVE REPLACEMENT " AND demographic.admityear < "2182" |
WHAT ARE THE TOTAL NUMBER OF POINTS WITH WINS SMALLER THAN 14, AT SD INDAUCHU, POSITION BIGGER THAN 12? | CREATE TABLE table_61006 ("Position" real,"Club" text,"Played" real,"Points" real,"Wins" real,"Draws" real,"Losses" real,"Goals for" real,"Goals against" real,"Goal Difference" real) | SELECT COUNT("Points") FROM table_61006 WHERE "Wins" < '14' AND "Club" = 'sd indauchu' AND "Position" > '12' |
what is the number of patients whose discharge location is home and procedure long title is endoscopic sphincterotomy and papillotomy? | 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 diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.discharge_location = "HOME" AND procedures.long_title = "Endoscopic sphincterotomy and papillotomy" |
What was the date of vacancy when Viorel Moldovan replaced a manager? | CREATE TABLE table_1606 ("Team" text,"Outgoing manager" text,"Manner of departure" text,"Date of vacancy" text,"Replaced by" text,"Date of appointment" text) | SELECT "Date of vacancy" FROM table_1606 WHERE "Replaced by" = 'Viorel Moldovan' |
return me the journals, which have papers by ' H. V. Jagadish ' . | CREATE TABLE publication_keyword (kid int,pid int)CREATE TABLE keyword (keyword varchar,kid int)CREATE TABLE publication (abstract varchar,cid int,citation_num int,jid int,pid int,reference_num int,title varchar,year int)CREATE TABLE conference (cid int,homepage varchar,name varchar)CREATE TABLE domain (did int,name va... | SELECT journal.name FROM author, journal, publication, writes WHERE author.name = 'H. V. Jagadish' AND publication.jid = journal.jid AND writes.aid = author.aid AND writes.pid = publication.pid |
Name the sum of Laps for lance reventlow with grid more than 16 | CREATE TABLE table_name_56 (laps INTEGER,driver VARCHAR,grid VARCHAR) | SELECT SUM(laps) FROM table_name_56 WHERE driver = "lance reventlow" AND grid > 16 |
what was the drug that patient 21110 had been prescribed two times a month before. | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text... | SELECT t1.drug FROM (SELECT prescriptions.drug, COUNT(prescriptions.startdate) AS c1 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 21110) AND DATETIME(prescriptions.startdate, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-1 ... |
what was the total prize money earned by contestants ? | CREATE TABLE table_203_446 (id number,"name" text,"gender" text,"age" number,"from" text,"occupation" text,"prize money (usd)" text,"status" text) | SELECT SUM("prize money (usd)") FROM table_203_446 |
Name the least 2 credits for flush | CREATE TABLE table_19612 ("Hand" text,"1 credit" real,"2 credits" real,"3 credits" real,"4 credits" real,"5 credits" real) | SELECT MIN("2 credits") FROM table_19612 WHERE "Hand" = 'Flush' |
What is the average weight of all players? | CREATE TABLE player_attributes (id number,player_fifa_api_id number,player_api_id number,date text,overall_rating number,potential number,preferred_foot text,attacking_work_rate text,defensive_work_rate text,crossing number,finishing number,heading_accuracy number,short_passing number,volleys number,dribbling number,cu... | SELECT AVG(weight) FROM player |
What is the average election result for the province of Grosseto from 1766 and prior? | CREATE TABLE table_64200 ("Province" text,"Inhabitants" real,"established" real,"President" text,"Party" text,"Election" real) | SELECT AVG("Election") FROM table_64200 WHERE "Province" = 'grosseto' AND "established" < '1766' |
Who were the semi finalists when the runner-up was Alexandra Fusai Wiltrud Probst? | CREATE TABLE table_43263 ("Week of" text,"Tier" text,"Winner" text,"Runner-up" text,"Semi finalists" text) | SELECT "Semi finalists" FROM table_43263 WHERE "Runner-up" = 'alexandra fusai wiltrud probst' |
What opponents played Waldstadion in a game? | CREATE TABLE table_27233 ("Week" real,"Date" text,"Kickoff" text,"Opponent" text,"Final score" text,"Team record" text,"Game site" text,"Attendance" real) | SELECT "Opponent" FROM table_27233 WHERE "Game site" = 'Waldstadion' |
who was the only opponent to be scored against with an assist from wambach ? | CREATE TABLE table_204_920 (id number,"goal" number,"date" text,"location" text,"opponent" text,"lineup" text,"min" number,"assist/pass" text,"score" text,"result" text,"competition" text) | SELECT "opponent" FROM table_204_920 WHERE "assist/pass" = 'wambach' |
For what length of time has MUSTHTRE 141 been offered ? | CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE area (course_id int,area varchar)CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE course (course... | SELECT DISTINCT semester.year FROM course, course_offering, semester WHERE course.course_id = course_offering.course_id AND course.department = 'MUSTHTRE' AND course.number = 141 AND semester.semester_id = course_offering.semester ORDER BY semester.year LIMIT 1 |
how many singles were released as part of an album ? | CREATE TABLE table_203_751 (id number,"year" number,"title" text,"peak chart positions\nus\nair" number,"peak chart positions\nus\nmain" number,"peak chart positions\nus\nmod" number,"album" text) | SELECT COUNT("title") FROM table_203_751 WHERE "album" <> 'non-album single' |
Name the agg for team 2 of asl sport guyanais. | CREATE TABLE table_name_34 (agg VARCHAR,team_2 VARCHAR) | SELECT agg FROM table_name_34 WHERE team_2 = "asl sport guyanais" |
what is discharge time of subject id 8440? | 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 demographic.dischtime FROM demographic WHERE demographic.subject_id = "8440" |
Which race has a replica of DNF? | CREATE TABLE table_name_72 (race VARCHAR,replica VARCHAR) | SELECT race FROM table_name_72 WHERE replica = "dnf" |
What 1997, has qf as a 1994, and 1r as a 1999? | CREATE TABLE table_name_6 (Id VARCHAR) | SELECT 1997 FROM table_name_6 WHERE 1994 = "qf" AND 1999 = "1r" |
what is the sum of attendance of week 11 | CREATE TABLE table_name_62 (attendance INTEGER,week VARCHAR) | SELECT SUM(attendance) FROM table_name_62 WHERE week = 11 |
which year had the most NIPS papers ? | CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE author (authorid int,authorname varchar)CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE paperkeyphrase (paperid int,keyphraseid int)CREATE TABLE field (fieldid int)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE ... | SELECT DISTINCT COUNT(paper.paperid), paper.year FROM paper, venue WHERE venue.venueid = paper.venueid AND venue.venuename = 'NIPS' GROUP BY paper.year ORDER BY COUNT(paper.paperid) DESC |
Find the numbers of different majors and cities. | CREATE TABLE student (major VARCHAR,city_code VARCHAR) | SELECT COUNT(DISTINCT major), COUNT(DISTINCT city_code) FROM student |
Which bodyweight has a Total (kg) of 145.0? | CREATE TABLE table_name_18 (bodyweight VARCHAR,total__kg_ VARCHAR) | SELECT bodyweight FROM table_name_18 WHERE total__kg_ = "145.0" |
Who directed the episode with production code 40811-005? | CREATE TABLE table_name_7 (director VARCHAR,prod_code VARCHAR) | SELECT director FROM table_name_7 WHERE prod_code = "40811-005" |
Which state has a royal house of Ying? | CREATE TABLE table_name_66 (state VARCHAR,royal_house VARCHAR) | SELECT state FROM table_name_66 WHERE royal_house = "ying" |
calculate how many times patient 26995 has undergone the procedure of insert endotracheal tube a year before. | CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)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_... | SELECT COUNT(*) FROM procedures_icd WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'insert endotracheal tube') AND procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 26995) AND DATETIME(proced... |
How much was the prize money for rwe-sporthalle, m lheim ? | CREATE TABLE table_22627 ("Year" real,"Champion (average in final)" text,"Legs" text,"Runner-up (average in final)" text,"Sponsor" text,"Prize Fund" text,"Champion" text,"Runner-up" text,"Venue" text) | SELECT "Prize Fund" FROM table_22627 WHERE "Venue" = 'RWE-Sporthalle, Mülheim' |
show me a good arabic restaurant in mountain view ? | CREATE TABLE restaurant (id int,name varchar,food_type varchar,city_name varchar,rating "decimal)CREATE TABLE geographic (city_name varchar,county varchar,region varchar)CREATE TABLE location (restaurant_id int,house_number int,street_name varchar,city_name varchar) | SELECT location.house_number, restaurant.name FROM location, restaurant WHERE location.city_name = 'mountain view' AND restaurant.food_type = 'arabic' AND restaurant.id = location.restaurant_id AND restaurant.rating > 2.5 |
WHAT SCORE HAD A RECORD OF 1-1? | CREATE TABLE table_name_42 (score VARCHAR,record VARCHAR) | SELECT score FROM table_name_42 WHERE record = "1-1" |
On what date did the away team Fremantle play? | CREATE TABLE table_16388478_3 (date VARCHAR,away_team VARCHAR) | SELECT date FROM table_16388478_3 WHERE away_team = "Fremantle" |
In what stadium did a game result in a final scoreline reading 27-34? | CREATE TABLE table_name_30 (stadium VARCHAR,final_score VARCHAR) | SELECT stadium FROM table_name_30 WHERE final_score = "27-34" |
What venue had a draw? | CREATE TABLE table_67801 ("Date" text,"Home captain" text,"Away captain" text,"Venue" text,"Result" text) | SELECT "Venue" FROM table_67801 WHERE "Result" = 'draw' |
What is the series number for the episode written by Kristen Dunphy and David Ogilvy? | CREATE TABLE table_23057 ("Series #" real,"Episode #" real,"Title" text,"Written by" text,"Directed by" text,"Viewers" real,"Original airdate" text) | SELECT MAX("Series #") FROM table_23057 WHERE "Written by" = 'Kristen Dunphy and David Ogilvy' |
what is the latest year when the venue is berlin, germany? | CREATE TABLE table_8576 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text) | SELECT MAX("Year") FROM table_8576 WHERE "Venue" = 'berlin, germany' |
what is the number of patients whose admission type is emergency and procedure long title is hemodialysis? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND procedures.long_title = "Hemodialysis" |
What was the latest year with a position of 1st at Maputo, Mozambique? | CREATE TABLE table_12557 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text) | SELECT MAX("Year") FROM table_12557 WHERE "Position" = '1st' AND "Venue" = 'maputo, mozambique' |
what is the implied probability of 8 = 23 + 0 ? | CREATE TABLE table_200_41 (id number,"number" text,"encoding" text,"implied probability" number) | SELECT "implied probability" FROM table_200_41 WHERE "number" = '8 = 23 + 0' |
Who is the Winning Applicant of Ensemble Name Muxco Lincolnshire in Block 10D? | CREATE TABLE table_74569 ("Area" text,"Advertisement date" text,"Block" text,"Winning applicant" text,"Ensemble name" text) | SELECT "Winning applicant" FROM table_74569 WHERE "Block" = '10d' AND "Ensemble name" = 'muxco lincolnshire' |
Find out the short title of the procedure for procedure icd9 code 3613. | 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 procedures.short_title FROM procedures WHERE procedures.icd9_code = "3613" |
For Ibsen and Strindberg , are there any classes I need to have taken ? | 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_projects varchar,has_exams varchar,num_reviews int,clarity_score i... | SELECT DISTINCT advisory_requirement FROM course WHERE name LIKE '%Ibsen and Strindberg%' |
What was the finish for Billy Casper? | CREATE TABLE table_name_59 (finish VARCHAR,player VARCHAR) | SELECT finish FROM table_name_59 WHERE player = "billy casper" |
Percentage of closed question per month. | CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostNotices (Id n... | SELECT LAST_DATE_OF_MONTH(p.CreationDate), ROUND((COUNT(p.ClosedDate)) * 100.0 / (COUNT(p.Id)), 2) AS percentage FROM Posts AS p WHERE (p.PostTypeId = 1) AND (p.CreationDate >= '##Date1?2010-01-01##') AND (p.CreationDate <= '##Date2?2021-01-01##') GROUP BY LAST_DATE_OF_MONTH(p.CreationDate) ORDER BY LAST_DATE_OF_MONTH(... |
In what city does Janessa Sawayn live? | CREATE TABLE staff (staff_id number,staff_address_id number,nickname text,first_name text,middle_name text,last_name text,date_of_birth time,date_joined_staff time,date_left_staff time)CREATE TABLE customers (customer_id number,customer_address_id number,customer_status_code text,date_became_customer time,date_of_birth... | SELECT T1.city FROM addresses AS T1 JOIN staff AS T2 ON T1.address_id = T2.staff_address_id WHERE T2.first_name = "Janessa" AND T2.last_name = "Sawayn" |
Which player has a nationality of spain? | CREATE TABLE table_name_24 (player VARCHAR,nationality VARCHAR) | SELECT player FROM table_name_24 WHERE nationality = "spain" |
what was the name of procedure, that patient 43959 was first received in this year? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE patients (row_id numbe... | SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT procedures_icd.icd9_code FROM procedures_icd WHERE procedures_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 43959) AND DATETIME(procedures_icd.charttime, 'start of year') = DAT... |
how many hours has passed since the last sodium polystyrene sulfonate prescription of patient 99647 in this hospital visit? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,l... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', prescriptions.startdate)) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 99647 AND admissions.dischtime IS NULL) AND prescriptions.drug = 'sodium polystyrene sulfonate' ORDER BY presc... |
what species of tree was the tallest one used ? | CREATE TABLE table_203_700 (id number,"year" number,"species" text,"height" text,"location grown" text,"state" text,"notes" text) | SELECT "species" FROM table_203_700 ORDER BY "height" DESC LIMIT 1 |
What is the average account balance of customers with credit score below 50 for the different account types. Visualize by bar chart. | CREATE TABLE customer (cust_ID varchar(3),cust_name varchar(20),acc_type char(1),acc_bal int,no_of_loans int,credit_score int,branch_ID int,state varchar(20))CREATE TABLE bank (branch_ID int,bname varchar(20),no_of_customers int,city varchar(10),state varchar(20))CREATE TABLE loan (loan_ID varchar(3),loan_type varchar(... | SELECT acc_type, AVG(acc_bal) FROM customer WHERE credit_score < 50 GROUP BY acc_type |
On Race 14 when the FLap is larger than 1, what is the podium number? | CREATE TABLE table_name_42 (podium VARCHAR,race VARCHAR,flap VARCHAR) | SELECT COUNT(podium) FROM table_name_42 WHERE race = 14 AND flap > 1 |
What is the recoupa sudamericana 1996 result of team corinthians? | CREATE TABLE table_35609 ("Team" text,"Copa Libertadores 1996" text,"Supercopa Sudamericana 1996" text,"Copa CONMEBOL 1996" text,"Recopa Sudamericana 1996" text) | SELECT "Recopa Sudamericana 1996" FROM table_35609 WHERE "Team" = 'corinthians' |
Which Extra points 1 point is the highest one that has a Total Points smaller than 8? | CREATE TABLE table_36579 ("Player" text,"Touchdowns (5 points)" real,"Extra points 1 point" real,"Field goals (5 points)" real,"Total Points" real) | SELECT MAX("Extra points 1 point") FROM table_36579 WHERE "Total Points" < '8' |
Name the sum of drawn for 30 october 2006 and win % more than 43.2 | CREATE TABLE table_54845 ("Team" text,"Nation" text,"From" text,"Matches" real,"Drawn" real,"Lost" real,"Win %" real) | SELECT SUM("Drawn") FROM table_54845 WHERE "From" = '30 october 2006' AND "Win %" > '43.2' |
WHAT DATE DID JOE SESTAK HAVE 46% WITH 3.0% MARGIN OF ERROR? | CREATE TABLE table_name_49 (date_s__administered VARCHAR,joe_sestak__d_ VARCHAR,margin_of_error VARCHAR) | SELECT date_s__administered FROM table_name_49 WHERE joe_sestak__d_ = "46%" AND margin_of_error = "± 3.0%" |
What is the 2013 with virgin in 2009? | CREATE TABLE table_name_5 (Id VARCHAR) | SELECT 2013 FROM table_name_5 WHERE 2009 = "virgin" |
when did patient 027-41381 get admitted to the hospital for the first time until 2104 via emergency department? | 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,systemicsystolic number,systemicdiastolic number,systemicmean number,obs... | SELECT patient.hospitaladmittime FROM patient WHERE patient.uniquepid = '027-41381' AND patient.hospitaladmitsource = 'emergency department' AND STRFTIME('%y', patient.hospitaladmittime) <= '2104' ORDER BY patient.hospitaladmittime LIMIT 1 |
since 6 years ago, how many patients were given the stress ulcer prophylaxis - esomeprazole two times? | 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 allergy (allergyid number,patientunitstayid number,drugname tex... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, COUNT(*) AS c1 FROM patient WHERE patient.patientunitstayid = (SELECT treatment.patientunitstayid FROM treatment WHERE treatment.treatmentname = 'stress ulcer prophylaxis - esomeprazole' AND DATETIME(treatment.treatmenttime) >= DATETIME(CURRENT_TIME(),... |
Return a bar chart on what is the number of professors for different school? | CREATE TABLE DEPARTMENT (DEPT_CODE varchar(10),DEPT_NAME varchar(30),SCHOOL_CODE varchar(8),EMP_NUM int,DEPT_ADDRESS varchar(20),DEPT_EXTENSION varchar(4))CREATE TABLE ENROLL (CLASS_CODE varchar(5),STU_NUM int,ENROLL_GRADE varchar(50))CREATE TABLE STUDENT (STU_NUM int,STU_LNAME varchar(15),STU_FNAME varchar(15),STU_INI... | SELECT SCHOOL_CODE, COUNT(*) FROM DEPARTMENT AS T1 JOIN PROFESSOR AS T2 ON T1.DEPT_CODE = T2.DEPT_CODE GROUP BY T1.SCHOOL_CODE |
where did arron oberholser play? | CREATE TABLE table_name_84 (country VARCHAR,player VARCHAR) | SELECT country FROM table_name_84 WHERE player = "arron oberholser" |
Name the Number of electorates (2009 which has a Reserved for ( SC / ST /None) of none, and a Name of jahanabad? | CREATE TABLE table_name_40 (number_of_electorates__2009_ INTEGER,reserved_for___sc___st__none_ VARCHAR,name VARCHAR) | SELECT MIN(number_of_electorates__2009_) FROM table_name_40 WHERE reserved_for___sc___st__none_ = "none" AND name = "jahanabad" |
List the distinct hometowns that are not associated with any gymnast. | CREATE TABLE gymnast (gymnast_id number,floor_exercise_points number,pommel_horse_points number,rings_points number,vault_points number,parallel_bars_points number,horizontal_bar_points number,total_points number)CREATE TABLE people (people_id number,name text,age number,height number,hometown text) | SELECT DISTINCT hometown FROM people EXCEPT SELECT DISTINCT T2.hometown FROM gymnast AS T1 JOIN people AS T2 ON T1.gymnast_id = T2.people_id |
what is the number of patients whose gender is f and diagnoses short title is depress psychosis-unspec? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.gender = "F" AND diagnoses.short_title = "Depress psychosis-unspec" |
What is the total number of Losses that Melton had when they had fewer Draws than 0? | CREATE TABLE table_name_35 (losses INTEGER,ballarat_fl VARCHAR,draws VARCHAR) | SELECT SUM(losses) FROM table_name_35 WHERE ballarat_fl = "melton" AND draws < 0 |
List the top 5 genres by number of tracks. List genres name and total tracks. | CREATE TABLE media_types (id number,name text)CREATE TABLE employees (id number,last_name text,first_name text,title text,reports_to number,birth_date time,hire_date time,address text,city text,state text,country text,postal_code text,phone text,fax text,email text)CREATE TABLE albums (id number,title text,artist_id nu... | SELECT T1.name, COUNT(*) FROM genres AS T1 JOIN tracks AS T2 ON T2.genre_id = T1.id GROUP BY T1.id ORDER BY COUNT(*) DESC LIMIT 5 |
What was the Score in the game against the Buffalo Sabres? | CREATE TABLE table_36317 ("Game" real,"November" real,"Opponent" text,"Score" text,"Record" text,"Points" real) | SELECT "Score" FROM table_36317 WHERE "Opponent" = 'buffalo sabres' |
Which player is an offensive tackle for the New York Jets? | CREATE TABLE table_59606 ("Pick" real,"AFL Team" text,"Player" text,"Position" text,"College" text) | SELECT "Player" FROM table_59606 WHERE "Position" = 'offensive tackle' AND "AFL Team" = 'new york jets' |
Give me a histogram for what are the ids and names of the architects who built at least 3 bridges ?, and I want to display by the Y in desc. | CREATE TABLE mill (architect_id int,id int,location text,name text,type text,built_year int,notes text)CREATE TABLE architect (id text,name text,nationality text,gender text)CREATE TABLE bridge (architect_id int,id int,name text,location text,length_meters real,length_feet real) | SELECT T1.name, T1.id FROM architect AS T1 JOIN bridge AS T2 ON T1.id = T2.architect_id ORDER BY T1.id DESC |
which is david d'or 's oldest album ? | CREATE TABLE table_203_325 (id number,"year" number,"title" text,"(english)" text,"ifpi israel certification" text,"label" text) | SELECT "title" FROM table_203_325 ORDER BY "year" LIMIT 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.