instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Which drivers won $40,000 in the NASCAR Winston Cup? | CREATE TABLE table_2439 ("Position" real,"Driver" text,"Points" real,"Winnings" text,"Series" text) | SELECT "Driver" FROM table_2439 WHERE "Series" = 'NASCAR Winston Cup' AND "Winnings" = '$40,000' |
Show the name and location of track with 1 race. | CREATE TABLE race (track_id VARCHAR)CREATE TABLE track (name VARCHAR,location VARCHAR,track_id VARCHAR) | SELECT T2.name, T2.location FROM race AS T1 JOIN track AS T2 ON T1.track_id = T2.track_id GROUP BY T1.track_id HAVING COUNT(*) = 1 |
What is the day 1 when the day 3 is math? | CREATE TABLE table_name_16 (day_1 VARCHAR,day_3 VARCHAR) | SELECT day_1 FROM table_name_16 WHERE day_3 = "math" |
What are the notes for 2005? | CREATE TABLE table_66599 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Event" text,"Notes" text) | SELECT "Notes" FROM table_66599 WHERE "Year" = '2005' |
What is listed for the Province with a Wamalwa of 4,431? | CREATE TABLE table_35714 ("Province" text,"Kibaki" text,"Raila" text,"Wamalwa" text,"Ngilu" text,"Others" text,"Registered Voters" text,"Turnout %" text) | SELECT "Province" FROM table_35714 WHERE "Wamalwa" = '4,431' |
Compare number of Questions per week, for 3 given tags, over a specified period. | CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score numb... | SELECT DATEADD(week, DATEDIFF(week, 0, CreationDate), 0), COUNT(*) FROM PostTags AS pt JOIN Posts AS q ON q.Id = pt.PostId WHERE pt.TagId = 93513 AND q.CreationDate > '2016-07-10' GROUP BY DATEADD(week, DATEDIFF(week, 0, CreationDate), 0) ORDER BY DATEADD(week, DATEDIFF(week, 0, CreationDate), 0) |
Who produced track 7? | CREATE TABLE table_name_7 (producer_s_ VARCHAR,track VARCHAR) | SELECT producer_s_ FROM table_name_7 WHERE track = 7 |
has patient 14054 had any lab tests performed for eosinophils since 2105? | 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 icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wardid nu... | SELECT COUNT(*) > 0 FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'eosinophils') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 14054) AND STRFTIME('%y', labevents.charttime) >= '2105' |
Who is the rider who had the time of 1:27.37.22? | CREATE TABLE table_name_52 (rider VARCHAR,time VARCHAR) | SELECT rider FROM table_name_52 WHERE time = "1:27.37.22" |
tell me the difference of arterial bp [diastolic] of patient 4401 second measured on the current icu visit compared to the first value measured on the current icu visit? | 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 patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_... | SELECT (SELECT chartevents.valuenum FROM chartevents WHERE chartevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 4401) AND icustays.outtime IS NULL) AND chartevents.itemid IN (SELECT d_items.itemid FROM d_it... |
calculate the maximum age of widow patients who had elective hospital admission. | 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 MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "WIDOWED" AND demographic.admission_type = "ELECTIVE" |
What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals? | CREATE TABLE table_name_72 (fa_cup INTEGER,name VARCHAR,total VARCHAR) | SELECT AVG(fa_cup) FROM table_name_72 WHERE name = "whelan" AND total > 7 |
For the headstamp id of h2, what was the color of the bullet tip? | CREATE TABLE table_1036189_1 (bullet_tip_color VARCHAR,headstamp_id VARCHAR) | SELECT bullet_tip_color FROM table_1036189_1 WHERE headstamp_id = "H2" |
Result of w, and a Competition of 1968 asian cup happened on what date? | CREATE TABLE table_name_5 (date VARCHAR,result VARCHAR,competition VARCHAR) | SELECT date FROM table_name_5 WHERE result = "w" AND competition = "1968 asian cup" |
What is College, when Round is greater than 1, and when Pick is greater than 163? | CREATE TABLE table_46735 ("Round" real,"Pick" real,"Player" text,"Nationality" text,"College" text) | SELECT "College" FROM table_46735 WHERE "Round" > '1' AND "Pick" > '163' |
What date did Renger Van Der Zande have the pole position at Donington Park? | CREATE TABLE table_2449 ("Round" real,"Circuit" text,"Date" text,"Pole Position" text,"Fastest Lap" text,"Winning Driver" text,"Winning Team" text) | SELECT "Date" FROM table_2449 WHERE "Pole Position" = 'Renger van der Zande' AND "Circuit" = 'Donington Park' |
Which years did Martin Sacks work on a soap opera? | CREATE TABLE table_79215 ("Actor" text,"Character" text,"Soap Opera" text,"Years" text,"Duration" text) | SELECT "Years" FROM table_79215 WHERE "Actor" = 'martin sacks' |
Who was the away team at South Melbourne with a crowd size larger than 10,000. | CREATE TABLE table_53983 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Home team" FROM table_53983 WHERE "Crowd" > '10,000' AND "Away team" = 'south melbourne' |
What are the different police forces of counties that are not located in the East? | CREATE TABLE county_public_safety (county_id number,name text,population number,police_officers number,residents_per_officer number,case_burden number,crime_rate number,police_force text,location text)CREATE TABLE city (city_id number,county_id number,name text,white number,black number,amerindian number,asian number,m... | SELECT DISTINCT police_force FROM county_public_safety WHERE location <> "East" |
Who won with a majority more than 6,181 and J W Andrews as runner up? | CREATE TABLE table_10896 ("Electorate" text,"Incumbent" text,"Winner" text,"Majority" real,"Runner up" text) | SELECT "Winner" FROM table_10896 WHERE "Majority" > '6,181' AND "Runner up" = 'j w andrews' |
What is the highest Position when the against is less than 41, and lost is more than 7? | CREATE TABLE table_39795 ("Position" real,"Team" text,"Points" real,"Played" real,"Drawn" real,"Lost" real,"Against" real,"Difference" text) | SELECT MAX("Position") FROM table_39795 WHERE "Against" < '41' AND "Lost" > '7' |
What is the date for home team Collingwood? | CREATE TABLE table_56990 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_56990 WHERE "Home team" = 'collingwood' |
how long has it been since chermaine sheh first appeared on a variety show ? | CREATE TABLE table_203_631 (id number,"year" number,"name of show" text,"episodes" text,"other guests" text,"winner(s)" text) | SELECT present_ref - MIN("year") FROM table_203_631 |
What was the original nonequity tour when the original broadway was Kevin Chamberlin? | CREATE TABLE table_61056 ("Role" text,"Original Broadway cast" text,"Closing Broadway cast" text,"Original US Tour cast" text,"Original NonEquity Tour cast" text,"Original S\u00e3o Paulo cast" text,"Original Lima cast" text) | SELECT "Original NonEquity Tour cast" FROM table_61056 WHERE "Original Broadway cast" = 'kevin chamberlin' |
What regions of the USSR have a percentage of deportees of 10.6? | CREATE TABLE table_20507 ("Region of USSR" text,"Number of families" real,"Number of people" real,"Average family size" text,"% of total deportees" text) | SELECT "Region of USSR" FROM table_20507 WHERE "% of total deportees" = '10.6' |
how many patients during this year had an intake of d5 normal saline? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)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 d_icd_procedures (row... | SELECT COUNT(DISTINCT admissions.subject_id) FROM admissions WHERE admissions.hadm_id IN (SELECT icustays.hadm_id FROM icustays WHERE icustays.icustay_id IN (SELECT inputevents_cv.icustay_id FROM inputevents_cv WHERE inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'd5 normal saline' A... |
what year was the only year the team qualified for the playoffs ? | CREATE TABLE table_203_462 (id number,"year" number,"division" number,"league" text,"regular season" text,"playoffs" text,"open cup" text) | SELECT "year" FROM table_203_462 WHERE "playoffs" <> 'did not qualify' |
What is the lowest female number of the hiroo 1-ch me district, which has more than 1,666 households? | CREATE TABLE table_65017 ("District" text,"Number of Households" real,"Total Population" real,"Male" real,"Female" real) | SELECT MIN("Female") FROM table_65017 WHERE "District" = 'hiroo 1-chōme' AND "Number of Households" > '1,666' |
Which record has an Attendance larger than 17,033, and a Location of air canada centre, and less than 3 points? | CREATE TABLE table_9042 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Location" text,"Attendance" real,"Record" text,"Points" real) | SELECT "Record" FROM table_9042 WHERE "Attendance" > '17,033' AND "Location" = 'air canada centre' AND "Points" < '3' |
What was the tie number for the round against visiting opponent Chelsea? | CREATE TABLE table_50006 ("Tie no" real,"Home team" text,"Score" text,"Away team" text,"Date" text) | SELECT SUM("Tie no") FROM table_50006 WHERE "Away team" = 'chelsea' |
Which circuit did alfa romeo win? | CREATE TABLE table_60228 ("Name" text,"Circuit" text,"Date" text,"Winning driver" text,"Winning constructor" text,"Report" text) | SELECT "Circuit" FROM table_60228 WHERE "Winning constructor" = 'alfa romeo' |
tries against is 55, what is the try bonus? | CREATE TABLE table_35277 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Tries for" text,"Tries against" text,"Try bonus" text) | SELECT "Try bonus" FROM table_35277 WHERE "Tries against" = '55' |
What type of game had a result of 1:2? | CREATE TABLE table_38892 ("Date" text,"City" text,"Opponent" text,"Results\u00b9" text,"Type of game" text) | SELECT "Type of game" FROM table_38892 WHERE "Results\u00b9" = '1:2' |
what are the five most frequently prescribed medicines that patients are prescribed with within 2 months after being diagnosed with intermed coronary synd? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valu... | SELECT t3.drug FROM (SELECT t2.drug, 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_icd_diagnoses WHERE ... |
Which score has a record of 58 15 8? | CREATE TABLE table_name_80 (score VARCHAR,record VARCHAR) | SELECT score FROM table_name_80 WHERE record = "58–15–8" |
what is the difference between the total number of bronze medals won by the united states and west germany ? | CREATE TABLE table_204_311 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number) | SELECT (SELECT "bronze" FROM table_204_311 WHERE "nation" = 'united states') - (SELECT "bronze" FROM table_204_311 WHERE "nation" = 'west germany') |
What is the Score of the Round with Player Aaron Baddeley having a To par of +2? | CREATE TABLE table_12714 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text) | SELECT "Score" FROM table_12714 WHERE "To par" = '+2' AND "Player" = 'aaron baddeley' |
What label shows an Album of cover version v? | CREATE TABLE table_41308 ("Album" text,"Release date" text,"Label" text,"Format" text,"Covered Song" text,"Original Song" text) | SELECT "Label" FROM table_41308 WHERE "Album" = 'cover version v' |
Name the january when april is courtney rachel culkin | CREATE TABLE table_name_53 (january VARCHAR,april VARCHAR) | SELECT january FROM table_name_53 WHERE april = "courtney rachel culkin" |
Display a bar chart for what is the average salary for each job title?, I want to order Y in ascending order please. | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar(12),CITY varchar(30),STATE_PROVINCE varchar(25),COUNTRY_ID varchar(2))CREATE TABLE jobs (JOB_I... | SELECT JOB_TITLE, AVG(SALARY) FROM employees AS T1 JOIN jobs AS T2 ON T1.JOB_ID = T2.JOB_ID GROUP BY T2.JOB_TITLE ORDER BY AVG(SALARY) |
With a To par of +4, what is Andy Bean's Score? | CREATE TABLE table_name_21 (score VARCHAR,to_par VARCHAR,player VARCHAR) | SELECT score FROM table_name_21 WHERE to_par = "+4" AND player = "andy bean" |
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 show x axis in desc order. | 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 |
What year did the man from Norway who won the Holmenkollen in 1958 win the FIS Nordic World Ski Championships? | CREATE TABLE table_21694 ("Winner" text,"Country" text,"Winter Olympics" text,"FIS Nordic World Ski Championships" text,"Holmenkollen" text) | SELECT "FIS Nordic World Ski Championships" FROM table_21694 WHERE "Country" = 'Norway' AND "Holmenkollen" = '1958' |
What Title's Start of Reign is 1993? | CREATE TABLE table_name_69 (title VARCHAR,start_of_reign VARCHAR) | SELECT title FROM table_name_69 WHERE start_of_reign = 1993 |
what are the top four most frequent procedures given to patients within 2 months after the diagnosis of obstruction of trachea / bronchus - suspected until 2 years ago? | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname... | SELECT t3.treatmentname FROM (SELECT t2.treatmentname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'obstruction of trachea / bronchus - susp... |
what are the top five common diagnoses until 2104? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayi... | SELECT t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE STRFTIME('%y', diagnosis.diagnosistime) <= '2104' GROUP BY diagnosis.diagnosisname) AS t1 WHERE t1.c1 <= 5 |
What pick number was marc deschamps? | CREATE TABLE table_2897457_5 (pick__number VARCHAR,player VARCHAR) | SELECT pick__number FROM table_2897457_5 WHERE player = "Marc Deschamps" |
What is the new classification for La Mirada, California? | CREATE TABLE table_38848 ("Institution" text,"Location" text,"Team Nickname" text,"Tenure" text,"New Conference" text,"New Classification" text) | SELECT "New Classification" FROM table_38848 WHERE "Location" = 'la mirada, california' |
In what place did Nick Faldo, who had more than 284 points and a to par score of +5, finish? | CREATE TABLE table_60922 ("Player" text,"Country" text,"Year(s) won" text,"Total" real,"To par" text,"Finish" text) | SELECT "Finish" FROM table_60922 WHERE "Total" > '284' AND "To par" = '+5' AND "Player" = 'nick faldo' |
count the number of times that in 02/this year patient 20000 had taken tube feeding. | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE diagnoses_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 o... | SELECT COUNT(*) 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 = 20000)) AND inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'tube feeding... |
list the card number of all members whose hometown address includes word 'Kentucky'. | CREATE TABLE purchase (member_id number,branch_id text,year text,total_pounds number)CREATE TABLE membership_register_branch (member_id number,branch_id text,register_year text)CREATE TABLE member (member_id number,card_number text,name text,hometown text,level number)CREATE TABLE branch (branch_id number,name text,ope... | SELECT card_number FROM member WHERE hometown LIKE "%Kentucky%" |
Give me a scatter chart that groups acc road, the x-axis is school id and the y-axis is acc percent. | CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Percent int,All_Home text,All_Road text,All_Neutral text)CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,En... | SELECT School_ID, ACC_Percent FROM basketball_match GROUP BY ACC_Road |
When the third quarter is China Mobile 195,680.4, what is the rank? | CREATE TABLE table_name_45 (rank VARCHAR,third_quarter VARCHAR) | SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4" |
how many runners in the 2002 european athletics indoor championships completed the men 's 3000 metres event in under 8 minutes ? | CREATE TABLE table_204_893 (id number,"rank" number,"name" text,"nationality" text,"time" text,"notes" text) | SELECT COUNT("name") FROM table_204_893 WHERE "time" < 8 |
How many documents for each document type description? Visualize by a bar chart, sort from low to high by the bar. | CREATE TABLE Ref_Budget_Codes (Budget_Type_Code CHAR(15),Budget_Type_Description VARCHAR(255))CREATE TABLE Documents_with_Expenses (Document_ID INTEGER,Budget_Type_Code CHAR(15),Document_Details VARCHAR(255))CREATE TABLE Statements (Statement_ID INTEGER,Statement_Details VARCHAR(255))CREATE TABLE Accounts (Account_ID I... | SELECT Document_Type_Description, COUNT(Document_Type_Description) FROM Ref_Document_Types AS T1 JOIN Documents AS T2 ON T1.Document_Type_Code = T2.Document_Type_Code GROUP BY Document_Type_Description ORDER BY Document_Type_Description |
What is the total number of games that has Juan Carlos Navarro and more than 266 points? | CREATE TABLE table_name_77 (games INTEGER,points VARCHAR,name VARCHAR) | SELECT SUM(games) FROM table_name_77 WHERE points > 266 AND name = "juan carlos navarro" |
Who was the lyricist for the song with music directed by madan mohan kohli? | CREATE TABLE table_2528382_1 (lyricist VARCHAR,music_director VARCHAR) | SELECT lyricist FROM table_2528382_1 WHERE music_director = "Madan Mohan Kohli" |
What is the original air date of the episode written by David Zuckerman? | CREATE TABLE table_25755 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text,"U.S. viewers (millions)" text) | SELECT "Original air date" FROM table_25755 WHERE "Written by" = 'David Zuckerman' |
What is the days with rain figure for the city of Santiago de Compostela? | CREATE TABLE table_12837_1 (days_with_rain__year_summer_ VARCHAR,city_town VARCHAR) | SELECT days_with_rain__year_summer_ FROM table_12837_1 WHERE city_town = "Santiago de Compostela" |
How many people were present in a total of every crowd at the MCG venue? | CREATE TABLE table_name_32 (crowd INTEGER,venue VARCHAR) | SELECT SUM(crowd) FROM table_name_32 WHERE venue = "mcg" |
Unanswered php sorted by time desc. | CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId nu... | SELECT Posts.Id AS "post_link", Score, ViewCount, Tags FROM Posts INNER JOIN PostTags ON PostTags.PostId = Posts.Id INNER JOIN Tags ON PostTags.TagId = Tags.Id WHERE Tags.TagName = 'php' AND Posts.AcceptedAnswerId IS NULL AND Posts.ParentId IS NULL AND AnswerCount = 0 AND ClosedDate IS NULL AND Posts.Id NOT IN (SELECT ... |
give me the number patients with diagnoses icd9 code v452 who had pleural lab test. | 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE diagnoses.icd9_code = "V452" AND lab.fluid = "Pleural" |
Which opponent has an attendance of 17,015? | CREATE TABLE table_name_33 (opponent VARCHAR,attendance VARCHAR) | SELECT opponent FROM table_name_33 WHERE attendance = "17,015" |
what drug has patient 030-21071 been prescribed two times during the last month? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE patient (... | SELECT t1.drugname FROM (SELECT medication.drugname, COUNT(medication.drugstarttime) AS c1 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030... |
What visitor has tim duncan (16) as the leading scorer? | CREATE TABLE table_name_18 (visitor VARCHAR,leading_scorer VARCHAR) | SELECT visitor FROM table_name_18 WHERE leading_scorer = "tim duncan (16)" |
What is the lowest number of Electorates (2003) in District bhind, Reserved for none, and Constituency Number 11? | CREATE TABLE table_name_85 (number_of_electorates__2003_ INTEGER,constituency_number VARCHAR,district VARCHAR,reserved_for___sc___st__none_ VARCHAR) | SELECT MIN(number_of_electorates__2003_) FROM table_name_85 WHERE district = "bhind" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "11" |
Which Vote to Evict has a Vote to Save of 21.22%? | CREATE TABLE table_name_27 (vote_to_evict VARCHAR,vote_to_save VARCHAR) | SELECT vote_to_evict FROM table_name_27 WHERE vote_to_save = "21.22%" |
When was petter ronnquist picked? | CREATE TABLE table_52482 ("Round" real,"Overall" real,"Player" text,"Nationality" text,"Club team" text) | SELECT "Overall" FROM table_52482 WHERE "Player" = 'petter ronnquist' |
What is the highest number of cuts made in a tournament with 0 wins and 0 top 5 placings? | CREATE TABLE table_name_20 (cuts_made INTEGER,top_5 VARCHAR,wins VARCHAR) | SELECT MAX(cuts_made) FROM table_name_20 WHERE top_5 = 0 AND wins < 0 |
What is Result, when Date is 19 August 1992? | CREATE TABLE table_45602 ("Date" text,"Round" text,"Opponent" text,"Venue" text,"Result" text,"Attendance" real,"Scorers" text) | SELECT "Result" FROM table_45602 WHERE "Date" = '19 august 1992' |
count the number of elective hospital admissions who underwent arthrocentesis. | 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 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... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND procedures.long_title = "Arthrocentesis" |
what is the meet when the event is flying 200 m time trial? | CREATE TABLE table_8712 ("Event" text,"Record" text,"Nationality" text,"Date" text,"Meet" text,"Place" text) | SELECT "Meet" FROM table_8712 WHERE "Event" = 'flying 200 m time trial' |
what is the jewel power when the media debut is ep 17? | CREATE TABLE table_28827 ("Name" text,"Jewel" text,"Species" text,"Gender" text,"Jewel Power" text,"Attribute" text,"Birthday" text,"Media Debut" text,"Voice actor" text) | SELECT "Jewel Power" FROM table_28827 WHERE "Media Debut" = 'EP 17' |
Which Total has a Name of eoin jess category:articles with hcards, and a Scottish Cup larger than 23? | CREATE TABLE table_name_47 (total INTEGER,name VARCHAR,scottish_cup VARCHAR) | SELECT MIN(total) FROM table_name_47 WHERE name = "eoin jess category:articles with hcards" AND scottish_cup > 23 |
how many days did hardcore tv # 6 take ? | CREATE TABLE table_204_23 (id number,"#" number,"wrestlers" text,"reign" number,"date" text,"days held" number,"location" text,"event" text,"notes" text) | SELECT "days held" FROM table_204_23 WHERE "event" = 'hardcore tv #6' |
What was the Score at the Auckland, New Zealand Tournament? | CREATE TABLE table_35325 ("Date" text,"Tournament" text,"Surface" text,"Opponent" text,"Score" text) | SELECT "Score" FROM table_35325 WHERE "Tournament" = 'auckland, new zealand' |
Find the details of all the markets that are accessible by walk or bus. | CREATE TABLE visits (visit_id number,tourist_attraction_id number,tourist_id number,visit_date time,visit_details text)CREATE TABLE royal_family (royal_family_id number,royal_family_details text)CREATE TABLE staff (staff_id number,tourist_attraction_id number,name text,other_details text)CREATE TABLE street_markets (ma... | SELECT T1.market_details FROM street_markets AS T1 JOIN tourist_attractions AS T2 ON T1.market_id = T2.tourist_attraction_id WHERE T2.how_to_get_there = "walk" OR T2.how_to_get_there = "bus" |
What is the total number of Asian patients who had mesenteric ischemia as their primary disease. | 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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "ASIAN" AND demographic.diagnosis = "MESENTERIC ISCHEMIA" |
What is the result of the World Race Walking Cup tournament played before the year 2010? | CREATE TABLE table_80262 ("Year" real,"Tournament" text,"Venue" text,"Result" text,"Event" text) | SELECT "Result" FROM table_80262 WHERE "Year" > '2010' AND "Tournament" = 'world race walking cup' |
What is the Pixie and Dixie skit in episode 7? | CREATE TABLE table_23369 ("N\u00ba" real,"Ep" real,"Huckleberry Hound" text,"Pixie and Dixie" text,"Yogi Bear" text,"Air date" text,"Credited animators" text) | SELECT "Pixie and Dixie" FROM table_23369 WHERE "Ep" = '7' |
when was the first game played in houston , tx ? | CREATE TABLE table_203_636 (id number,"#" number,"date" text,"winner" text,"score" text,"location" text,"notes" text) | SELECT "date" FROM table_203_636 WHERE "location" = 'houston, tx' ORDER BY "date" LIMIT 1 |
What's the name of the church in Stavang? | CREATE TABLE table_21948 ("Parish (Prestegjeld)" text,"Sub-Parish (Sokn)" text,"Church Name" text,"Year Built" text,"Location of the Church" text) | SELECT "Church Name" FROM table_21948 WHERE "Location of the Church" = 'Stavang' |
igt: fasting glucose > 100 , < 126 or 2 _ hour ogtt > 140 but < 200 | CREATE TABLE table_dev_54 ("id" int,"ogtt" int,"anemia" bool,"gender" string,"c_peptide_level" float,"hemoglobin_a1c_hba1c" float,"hematocrit_hct" float,"body_mass_index_bmi" float,"igt" bool,"fasting_glucose" int,"age" float,"NOUSE" float) | SELECT * FROM table_dev_54 WHERE igt = 1 OR (fasting_glucose > 100 OR fasting_glucose < 126) OR (ogtt > 140 AND ogtt < 200) |
for the last time a month before, when was patient 005-46456 prescribed a drug? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE treatment (treatmentid number,patientunitstayi... | SELECT medication.drugstarttime FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '005-46456')) AND DATETIME(medication.drugstarttime, 'start of ... |
how many total points were score over all the seasons ? | CREATE TABLE table_203_34 (id number,"season" text,"appearance" number,"interchange" number,"tries" number,"goals" number,"f/g" number,"points" number) | SELECT SUM("points") FROM table_203_34 |
what is average days of hospital stay of patients whose marital status is divorced? | 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 procedures (subject_id text,hadm_id te... | SELECT AVG(demographic.days_stay) FROM demographic WHERE demographic.marital_status = "DIVORCED" |
What is the lowest Shot Pct., when Blank Ends is greater than 6? | CREATE TABLE table_name_2 (shot_pct INTEGER,blank_ends INTEGER) | SELECT MIN(shot_pct) FROM table_name_2 WHERE blank_ends > 6 |
Name the score for record 33-47 | CREATE TABLE table_69510 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" text,"Record" text) | SELECT "Score" FROM table_69510 WHERE "Record" = '33-47' |
How many items appear in the viewers column when the draw is 2? | CREATE TABLE table_30212 ("Draw" real,"Artist" text,"Song (English translation)" text,"Lyrics (l) / Music (m)" text,"Juries" real,"Viewers" real,"Total" real,"Place" real) | SELECT COUNT("Viewers") FROM table_30212 WHERE "Draw" = '2' |
Number of daily first posts last week. | CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPostId number,LinkTypeId number)CREATE TABLE PostNotices (Id number,PostId number,PostNoticeTypeId number,CreationDate time,DeletionDate time,ExpiryDate time,Body text,OwnerUserId number,DeletionUserId n... | SELECT COUNT(*) / '##NumDays:int?7##' AS numberOfDailyFirstPostsLastWeek FROM (SELECT u.Id FROM Users AS u INNER JOIN (SELECT * FROM Posts WHERE CreationDate >= DATEADD(day, DATEDIFF(day, '##NumDays:int?7##' + 1, GETDATE()), 0) AND CreationDate < DATEADD(day, DATEDIFF(day, 1, GETDATE()), 0)) AS p ON p.OwnerUserId = u.I... |
What is the latest date that has a serial number of Infec 107CDSX? | CREATE TABLE table_name_56 (date INTEGER,number VARCHAR) | SELECT MAX(date) FROM table_name_56 WHERE number = "infec 107cdsx" |
What is the earliest year with a Drama Desk award when the Mineola Twins was a nominated work? | CREATE TABLE table_61103 ("Year" real,"Award" text,"Category" text,"Nominated Work" text,"Result" text) | SELECT MIN("Year") FROM table_61103 WHERE "Award" = 'drama desk award' AND "Nominated Work" = 'the mineola twins' |
In what venue is Essendon the home team? | CREATE TABLE table_54353 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Venue" FROM table_54353 WHERE "Home team" = 'essendon' |
did patient 54281 ever excrete any condom cath since 05/2102? | 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,long_title text)CREATE TABLE microbiologyevents (row_id number,subject_id number,had... | SELECT COUNT(*) > 0 FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 54281)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'condom cath' A... |
What is Kerry J. Donley's Party? | CREATE TABLE table_name_48 (party VARCHAR,name VARCHAR) | SELECT party FROM table_name_48 WHERE name = "kerry j. donley" |
User, Badge, Count, Where Badge = INPUT. | 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 text,LastEditDate time,LastActivityDate time,Title text,Tags text,Ans... | SELECT u.DisplayName, b.Name, COUNT(*) AS awarded FROM Users AS u INNER JOIN Badges AS b ON u.Id = b.UserId WHERE b.Name = '##BadgeName:String##' GROUP BY u.DisplayName, b.Name ORDER BY Awarded DESC LIMIT 1000 |
What is the lowest number of dances with a less than 2 place and an average smaller than 27.5? | CREATE TABLE table_name_83 (number_of_dances INTEGER,place VARCHAR,average VARCHAR) | SELECT MIN(number_of_dances) FROM table_name_83 WHERE place < 2 AND average < 27.5 |
When did Demetrios III begin to hold power? | CREATE TABLE table_75885 ("Type" text,"Name" text,"Title" text,"Royal house" text,"From" text) | SELECT "From" FROM table_75885 WHERE "Name" = 'demetrios iii' |
How many hebrew forms are there for the arabic form yuktibu ? | CREATE TABLE table_2784232_1 (hebrew_form VARCHAR,arabic_form VARCHAR) | SELECT COUNT(hebrew_form) FROM table_2784232_1 WHERE arabic_form = "yuktibu يكتب" |
Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2? | CREATE TABLE table_71902 ("No.1" text,"No.2" text,"No.3" text,"No.5" text,"No.6" text,"FINAL" text) | SELECT "No.5" FROM table_71902 WHERE "No.1" = 'lena claudisabel' AND "No.2" = 'lena sylvie' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.