instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What Dutch word has the same meaning as the Greek word (pl )? | CREATE TABLE table_40477 ("English" text,"German" text,"Dutch" text,"Icelandic" text,"Latin" text,"Greek" text,"Russian" text) | SELECT "Dutch" FROM table_40477 WHERE "Greek" = 'πλέω (pléō)' |
Which Country has a Top Team of jam, and an Edition of 31st? | CREATE TABLE table_name_93 (country VARCHAR,top_team VARCHAR,edition VARCHAR) | SELECT country FROM table_name_93 WHERE top_team = "jam" AND edition = "31st" |
has patient 010-6010 been admitted to hospital until 3 years ago? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientunitstayid ... | SELECT COUNT(*) > 0 FROM patient WHERE patient.uniquepid = '010-6010' AND DATETIME(patient.hospitaladmittime) <= DATETIME(CURRENT_TIME(), '-3 year') |
What was the home team's score when North Melbourne was the away team? | CREATE TABLE table_name_39 (home_team VARCHAR,away_team VARCHAR) | SELECT home_team AS score FROM table_name_39 WHERE away_team = "north melbourne" |
when did the usl a-league have conference finals? | CREATE TABLE table_74856 ("Year" text,"Division" text,"League" text,"Reg. Season" text,"Playoffs" text,"Open Cup" text) | SELECT "Year" FROM table_74856 WHERE "League" = 'usl a-league' AND "Playoffs" = 'conference finals' |
When ihaia tainui is the incumbent what is the date? | CREATE TABLE table_28898948_3 (date VARCHAR,incumbent VARCHAR) | SELECT date FROM table_28898948_3 WHERE incumbent = "Ihaia Tainui" |
let me know the number of patients with procedure icd9 code 40 who were admitted in hospital before 2103. | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admityear < "2103" AND procedures.icd9_code = "40" |
What is the sum of Year 2007(s), when the Year 2005 is greater than 29,377? | CREATE TABLE table_75898 ("Team" text,"Year 2007" real,"Year 2006" real,"Year 2005" real,"Change 06/07" text) | SELECT SUM("Year 2007") FROM table_75898 WHERE "Year 2005" > '29,377' |
What is the High rebounds with a Game that is 62? | CREATE TABLE table_name_71 (high_rebounds VARCHAR,game VARCHAR) | SELECT high_rebounds FROM table_name_71 WHERE game = 62 |
What is the number of routes that end at John F Kennedy International Airport? | CREATE TABLE airports (apid number,name text,city text,country text,x number,y number,elevation number,iata text,icao text)CREATE TABLE airlines (alid number,name text,iata text,icao text,callsign text,country text,active text)CREATE TABLE routes (rid number,dst_apid number,dst_ap text,src_apid number,src_ap text,alid ... | SELECT COUNT(*) FROM airports AS T1 JOIN routes AS T2 ON T1.apid = T2.dst_apid WHERE T1.name = 'John F Kennedy International Airport' |
What is the sum of Population (1 July 2005 est.), when Area (km ) is less than 5,131, when Population density (per km ) is less than 180, when Subdivisions is Parishes, and when Capital is Roseau? | CREATE TABLE table_41612 ("Name" text,"Subdivisions" text,"Area (km\u00b2)" real,"Population (1 July 2005 est.)" real,"Population density (per km\u00b2)" real,"Capital" text) | SELECT SUM("Population (1 July 2005 est.)") FROM table_41612 WHERE "Area (km\u00b2)" < '5,131' AND "Population density (per km\u00b2)" < '180' AND "Subdivisions" = 'parishes' AND "Capital" = 'roseau' |
When the total was 11 and silver was greater than 4 what was the highest gold? | CREATE TABLE table_70068 ("Rank" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT MAX("Gold") FROM table_70068 WHERE "Total" = '11' AND "Silver" > '4' |
Draw a bar chart about the distribution of Time and ID . | CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 text,meter_400 text,meter_500 text,meter_600 text,meter_700 text,Time text)CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year... | SELECT Time, ID FROM swimmer |
Which Game has a Score of 3 6? | CREATE TABLE table_name_19 (game INTEGER,score VARCHAR) | SELECT SUM(game) FROM table_name_19 WHERE score = "3–6" |
What year was the 4-6-0 Wheel model train from 1908 withdrawn? | CREATE TABLE table_10251 ("Class" text,"Wheel arrangement" text,"Manufacturer" text,"Year made" text,"Quantity made" text,"Year(s) withdrawn" text) | SELECT "Year(s) withdrawn" FROM table_10251 WHERE "Wheel arrangement" = '4-6-0' AND "Year made" = '1908' |
what is the drug patient 009-5351 has been allergic to until 11/2105? | 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 lab (labi... | SELECT allergy.drugname FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '009-5351')) AND STRFTIME('%y-%m', allergy.allergytime) <= '2105-11' |
What did the Surname Lindberg rank? | CREATE TABLE table_8564 ("Rank" real,"Surname" text,"Number of bearers 2008" real,"Type" text,"Etymology" text) | SELECT COUNT("Rank") FROM table_8564 WHERE "Surname" = 'lindberg' |
does patient 95986 had any pacu urine output since 1511 days ago? | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)C... | 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 = 95986)) AND outputevents.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'pacu urine' AN... |
What is the lowest Apps with more than 1 level? | CREATE TABLE table_name_22 (apps INTEGER,level INTEGER) | SELECT MIN(apps) FROM table_name_22 WHERE level > 1 |
history of leukocyte dysfunction and deficiencies | CREATE TABLE table_train_260 ("id" int,"leukocyte_deficiencies" bool,"bleeding" int,"hemoglobin_a1c_hba1c" float,"leukocyte_dysfunction" bool,"renal_disease" bool,"hba1c" float,"serum_creatinine" float,"NOUSE" float) | SELECT * FROM table_train_260 WHERE leukocyte_dysfunction = 1 AND leukocyte_deficiencies = 1 |
What was the losing bonus for the 20 played, and 353 points? | CREATE TABLE table_9116 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Tries for" text,"Tries against" text,"Try bonus" text,"Losing bonus" text,"Points" text) | SELECT "Losing bonus" FROM table_9116 WHERE "Played" = '20' AND "Points for" = '353' |
where did rochdale play as opponent? | CREATE TABLE table_name_77 (venue VARCHAR,opponent VARCHAR) | SELECT venue FROM table_name_77 WHERE opponent = "rochdale" |
what was the last prescribed dose of erythromycin 0.5% ophth oint that patient 73693 got the last month? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)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... | SELECT prescriptions.dose_val_rx FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 73693) AND prescriptions.drug = 'erythromycin 0.5% ophth oint' AND DATETIME(prescriptions.startdate, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', ... |
For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against? | CREATE TABLE table_name_10 (points_against VARCHAR,tries_against VARCHAR,played VARCHAR,losing_bonus VARCHAR) | SELECT points_against FROM table_name_10 WHERE played = "22" AND losing_bonus = "3" AND tries_against = "45" |
What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals? | CREATE TABLE table_name_66 (league_goals VARCHAR,league_cup_goals VARCHAR,scorer VARCHAR) | SELECT league_goals FROM table_name_66 WHERE league_cup_goals = "0" AND scorer = "bill dearden" |
What's the total L/100km extra urban fueled by diesel, when the mpg-UK combines is more than 19.2, mpg-US is less than 50 and the L/100m combined is less than 5.7? | CREATE TABLE table_66550 ("Manufacturer" text,"Transmission" text,"Engine Capacity" real,"Fuel Type" text,"L/100km Urban (Cold)" real,"L/100km Extra-Urban" real,"L/100km Combined" real,"mpg-UK Urban (Cold)" real,"mpg-UK Extra-Urban" real,"mpg-UK Combined" real,"mpg-US Urban" real,"mpg-US Extra-Urban" real,"mpg-US Combi... | SELECT COUNT("L/100km Extra-Urban") FROM table_66550 WHERE "mpg-UK Combined" > '19.2' AND "L/100km Combined" < '5.7' AND "Fuel Type" = 'diesel' AND "mpg-US Combined" < '50' |
What place is the player with score of 70-68-70=208 from? | CREATE TABLE table_name_38 (place VARCHAR,score VARCHAR) | SELECT place FROM table_name_38 WHERE score = 70 - 68 - 70 = 208 |
How many byes for the team with more than 14 losses and more than 0 wins? | CREATE TABLE table_12670 ("Mininera DFL" text,"Wins" real,"Byes" real,"Losses" real,"Draws" real,"Against" real) | SELECT AVG("Byes") FROM table_12670 WHERE "Losses" > '14' AND "Wins" > '0' |
What is every value for rushing yards per game if the season is 1984? | CREATE TABLE table_27487336_1 (rushing_yards_per_game VARCHAR,season VARCHAR) | SELECT rushing_yards_per_game FROM table_27487336_1 WHERE season = "1984" |
Name the least attendance for l 36 1 | CREATE TABLE table_24126518_2 (attendance INTEGER,final_score VARCHAR) | SELECT MIN(attendance) FROM table_24126518_2 WHERE final_score = "L 36–1" |
what were the five specimen tests that were most frequently given to patients that were previously diagnosed with obtundation in the same month in the last year? | 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 microlab (microlabid number,patientunitstayid ... | SELECT t3.culturesite FROM (SELECT t2.culturesite, 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 = 'obtundation' AND DATETIME(diagnosis.diagnosi... |
in 2105 how many patients with s/p surgery for cancer - rectal were diagnosed within the same hospital visit after previously being diagnosed with myocardial infarction ruled out? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number... | SELECT COUNT(DISTINCT t1.uniquepid) FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 's/p surgery for cancer - rectal' AND STRFTIME('%y', diagnosis.diagnosisti... |
What is the Club, when the value for Played is 22, and when the value for Tries is 41? | CREATE TABLE table_name_44 (club VARCHAR,played VARCHAR,tries_for VARCHAR) | SELECT club FROM table_name_44 WHERE played = "22" AND tries_for = "41" |
What Sweet Sixteen team is in the Colonial conference? | CREATE TABLE table_name_95 (sweet_sixteen VARCHAR,conference VARCHAR) | SELECT sweet_sixteen FROM table_name_95 WHERE conference = "colonial" |
What FA cup apps has a total larger than 12 and league apps larger than 38, and FA Cup goals larger than 1? | CREATE TABLE table_name_50 (fa_cup_apps VARCHAR,fa_cup_goals VARCHAR,total_apps VARCHAR,league_apps VARCHAR) | SELECT COUNT(fa_cup_apps) FROM table_name_50 WHERE total_apps > 12 AND league_apps > 38 AND fa_cup_goals > 1 |
what is the number of patients whose death status is 0 and primary disease is hypertension;rule out coronary artery disease\cardiac cath? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_fla... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.expire_flag = "0" AND demographic.diagnosis = "HYPERTENSION;RULE OUT CORONARY ARTERY DISEASE\CARDIAC CATH" |
Alana Boyd of group B with a 4.30 result has what nationality? | CREATE TABLE table_64709 ("Group" text,"Name" text,"Nationality" text,"4.00" text,"Result" text) | SELECT "Nationality" FROM table_64709 WHERE "Group" = 'b' AND "Result" = '4.30' AND "Name" = 'alana boyd' |
What was the first broadcast date of episode 4x03? | CREATE TABLE table_23292220_4 (first_broadcast VARCHAR,episode VARCHAR) | SELECT first_broadcast FROM table_23292220_4 WHERE episode = "4x03" |
% downvoted questions per tag. | CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,... | SELECT t.TagName, t.Count AS "# of questions", ROUND(100.0 * (t.Count - COUNT(*)) / t.Count, 2) AS "% downvoted" FROM Tags AS t INNER JOIN PostTags AS pt ON t.Id = pt.TagId LEFT OUTER JOIN Votes AS v ON v.PostId = pt.PostId AND v.VoteTypeId = 3 WHERE v.PostId IS NULL GROUP BY t.TagName, t.Count ORDER BY ROUND(100.0 * (... |
What year was the Competition of World Junior Championships with a 20th (qf) position? | CREATE TABLE table_51831 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Event" text,"Notes" text) | SELECT AVG("Year") FROM table_51831 WHERE "Competition" = 'world junior championships' AND "Position" = '20th (qf)' |
Who was the team captain for Crystal Palace? | CREATE TABLE table_70937 ("Team" text,"Manager 1" text,"Captain" text,"Kit manufacturer" text,"Shirt sponsor" text) | SELECT "Captain" FROM table_70937 WHERE "Team" = 'crystal palace' |
Questions with dependency-injection and dagger-2 tag. | CREATE TABLE ReviewTasks (Id number,ReviewTaskTypeId number,CreationDate time,DeletionDate time,ReviewTaskStateId number,PostId number,SuggestedEditId number,CompletedByReviewTaskId number)CREATE TABLE Posts (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score n... | SELECT Id, AcceptedAnswerId, CreationDate FROM Posts WHERE Tags LIKE '%dependency-injection%' AND Tags LIKE '%dagger-2%' |
find the number of patients with primary disease as s/p fall and their year of death is in or before 2112. | 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 WHERE demographic.diagnosis = "S/P FALL" AND demographic.dod_year <= "2112.0" |
Return a bar chart on what are the id and name of the mountains that have at least 2 photos?, list from high to low by the bar. | CREATE TABLE photos (id int,camera_lens_id int,mountain_id int,color text,name text)CREATE TABLE mountain (id int,name text,Height real,Prominence real,Range text,Country text)CREATE TABLE camera_lens (id int,brand text,name text,focal_length_mm real,max_aperture real) | SELECT T1.name, T1.id FROM mountain AS T1 JOIN photos AS T2 ON T1.id = T2.mountain_id ORDER BY T1.name DESC |
what was the daily minimum amount of urine given to patient 002-38644 until 01/05/2104? | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean num... | SELECT MIN(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-38644')) AND intakeoutput.celllabel = 'urine... |
What is the average weeks of a song with a larger than 3 position after 1977? | CREATE TABLE table_name_40 (weeks_on_chart INTEGER,position VARCHAR,year VARCHAR) | SELECT AVG(weeks_on_chart) FROM table_name_40 WHERE position > 3 AND year > 1977 |
who had the best time ostrava or berlin ? | CREATE TABLE table_204_576 (id number,"year" number,"best" text,"location" text,"date" text,"world rank" text) | SELECT "location" FROM table_204_576 WHERE "location" IN ('ostrava', 'berlin') ORDER BY "best" LIMIT 1 |
Highest answer rate of popular tags. | CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,MarkdownPostOwnerGuidance text,MarkdownPrivilegedUserGuidance text,MarkdownConcensusDescription text,CreationDate time,CreationModera... | SELECT Tags.TagName, COUNT(*) AS NumQuestions, SUM(CASE WHEN NOT AcceptedAnswerId IS NULL THEN 1 ELSE 0 END) AS NumAnswered, (SUM(CASE WHEN NOT AcceptedAnswerId IS NULL THEN 1 ELSE 0 END) * 100 / COUNT(*)) AS PercentageAnswered FROM Tags INNER JOIN PostTags ON PostTags.TagId = Tags.Id INNER JOIN Posts ON Posts.Id = Pos... |
Name the transfer window of realmadrid | CREATE TABLE table_name_12 (transfer_window VARCHAR,moving_to VARCHAR) | SELECT transfer_window FROM table_name_12 WHERE moving_to = "realmadrid" |
Which pick number resulted in a defensive end? | CREATE TABLE table_name_34 (pick VARCHAR,position VARCHAR) | SELECT pick FROM table_name_34 WHERE position = "defensive end" |
which country took the least amount of time ? | CREATE TABLE table_204_204 (id number,"rank" number,"heat" number,"country" text,"cyclists" text,"result" number,"notes" text) | SELECT "country" FROM table_204_204 ORDER BY "result" LIMIT 1 |
What was the mintage when the theme was Santa Claus? | CREATE TABLE table_name_15 (mintage VARCHAR,theme VARCHAR) | SELECT mintage FROM table_name_15 WHERE theme = "santa claus" |
What is Team 2, when 2nd Leg is 1-0? | CREATE TABLE table_47674 ("Team 1" text,"Agg." text,"Team 2" text,"1st leg" text,"2nd leg" text) | SELECT "Team 2" FROM table_47674 WHERE "2nd leg" = '1-0' |
What player has a score less than 66, and a Place of t2, in the United States? | CREATE TABLE table_13483 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT "Player" FROM table_13483 WHERE "Score" < '66' AND "Place" = 't2' AND "Country" = 'united states' |
Which winner has a Challenge Loser of gisel? | CREATE TABLE table_9344 ("Episode" text,"7 Deadly Sin" text,"Challenge Winner" text,"Challenge Loser" text,"Voted In To 'El Duelo'" text,"Eliminated" text) | SELECT "Challenge Winner" FROM table_9344 WHERE "Challenge Loser" = 'gisel' |
show me all flights from PITTSBURGH to BOSTON both direct and connecting that depart PITTSBURGH after 1900 | CREATE TABLE fare (fare_id int,from_airport varchar,to_airport varchar,fare_basis_code text,fare_airline text,restriction_code text,one_direction_cost int,round_trip_cost int,round_trip_required varchar)CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE class_of_service (boo... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BOSTON' AND flight.departure_time > 1900 AND flight.to_airport = AIRPORT_SERVICE_1.airpor... |
how many times was the qualifying score 60.750? | CREATE TABLE table_13114949_3 (event VARCHAR,qualifying_score VARCHAR) | SELECT COUNT(event) FROM table_13114949_3 WHERE qualifying_score = "60.750" |
How many points did the driver who won $127,541 driving car #31 get? | CREATE TABLE table_name_88 (points INTEGER,winnings VARCHAR,car__number VARCHAR) | SELECT MAX(points) FROM table_name_88 WHERE winnings = "$127,541" AND car__number > 31 |
What is the Turkish word for the Bangla word shombar ? | CREATE TABLE table_36500 ("Arabic" text,"English" text,"Maltese" text,"Turkish" text,"Somali" text,"Persian" text,"Urdu" text,"Hindi" text,"Punjabi (India)" text,"Punjabi (Pakistan)" text,"Malayalam" text,"Bangla" text,"Hebrew" text,"Indonesian" text,"Malay" text,"Filipino" text,"Pashto" text,"Tamil" text,"Telugu" text... | SELECT "Turkish" FROM table_36500 WHERE "Bangla" = 'shombar সোমবার' |
What is the lowest draft pick number for mark doak who had an overall pick smaller than 147? | CREATE TABLE table_name_30 (pick INTEGER,name VARCHAR,overall VARCHAR) | SELECT MIN(pick) FROM table_name_30 WHERE name = "mark doak" AND overall < 147 |
what was the last time that patient 32153 received a lab test since 06/2105? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime... | SELECT labevents.charttime FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 32153) AND STRFTIME('%y-%m', labevents.charttime) >= '2105-06' ORDER BY labevents.charttime DESC LIMIT 1 |
What are the approximate translations when the morphological category is masc. sing. active participle? | CREATE TABLE table_30035 ("Semitological abbreviation" text,"Hebrew name" text,"Arabic name" text,"Morphological category" text,"Hebrew Form" text,"Arabic form" text,"Approximate translation" text) | SELECT "Approximate translation" FROM table_30035 WHERE "Morphological category" = 'masc. sing. active participle' |
what were the three most frequently given procedures for patients who had already had thoracentesis within the same month in 2102? | CREATE TABLE labevents (row_id number,subject_id number,hadm_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location text,discharge_location text,insurance text,langu... | SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admi... |
how many patients in 2105 have received closed bronchial biopsy in the same hospital visit after receiving hemodialysis? | CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE chartevents (row_id numb... | SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, procedures_icd.charttime, admissions.hadm_id FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_... |
BALTIMORE to PHILADELPHIA | CREATE TABLE aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion varchar,wide_body varchar,wing_span int,length int,weight int,capacity int,pay_load int,cruising_speed int,range_miles int,pressurized varchar)CREATE TABLE airport_service (city_code ... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BALTIMORE' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'PHIL... |
give me the number of patients whose admission type is emergency and diagnoses long title is abnormal involuntary movements? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.long_title = "Abnormal involuntary movements" |
What is Venue, when Year is 2005, and when Result is 8th? | CREATE TABLE table_name_63 (venue VARCHAR,year VARCHAR,result VARCHAR) | SELECT venue FROM table_name_63 WHERE year = 2005 AND result = "8th" |
When did the season air where the viewership was 14.71 million? | CREATE TABLE table_234 ("Season" real,"Season premiere" text,"Season finale" text,"TV season" text,"Ranking" text,"Viewers (in millions)" text) | SELECT "Season premiere" FROM table_234 WHERE "Viewers (in millions)" = '14.71' |
What is the 8:00 feature with je at 7:00? | CREATE TABLE table_69427 ("7:00" text,"7:30" text,"8:00" text,"8:30" text,"9:00" text,"9:30" text,"10:00" text) | SELECT "8:00" FROM table_69427 WHERE "7:00" = 'je' |
What is Second Member, when Election is '1835'? | CREATE TABLE table_name_99 (second_member VARCHAR,election VARCHAR) | SELECT second_member FROM table_name_99 WHERE election = "1835" |
Show the average age for male and female students Visualize by bar chart, and could you sort total number in descending order? | CREATE TABLE Student (StuID INTEGER,LName VARCHAR(12),Fname VARCHAR(12),Age INTEGER,Sex VARCHAR(1),Major INTEGER,Advisor INTEGER,city_code VARCHAR(3))CREATE TABLE Allergy_Type (Allergy VARCHAR(20),AllergyType VARCHAR(20))CREATE TABLE Has_Allergy (StuID INTEGER,Allergy VARCHAR(20)) | SELECT Sex, AVG(Age) FROM Student GROUP BY Sex ORDER BY AVG(Age) DESC |
have patient 76327's received tests during their first hospital encounter for alanine aminotransferase (alt)? | 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 inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE diagnoses_icd... | SELECT COUNT(*) > 0 FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'alanine aminotransferase (alt)') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 76327 AND NOT admissions.dischtime IS NULL ORDER BY admissio... |
previous to 1965 , when did jones have a number 5 start at the indy 500 ? | CREATE TABLE table_203_339 (id number,"year" text,"car" number,"start" number,"qual" number,"rank" number,"finish" number,"laps" number,"led" number,"retired" text) | SELECT "year" FROM table_203_339 WHERE "year" < 1965 AND "start" = 5 |
Name the opponent when the resultwas w 12-11 | CREATE TABLE table_name_45 (opponent VARCHAR,result VARCHAR) | SELECT opponent FROM table_name_45 WHERE result = "w 12-11" |
Which place is Andy Bean from the United States? | CREATE TABLE table_12732 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text) | SELECT "Place" FROM table_12732 WHERE "Country" = 'united states' AND "Player" = 'andy bean' |
How many episodes were shown on Friday if 210 Kirby's Epic Yarn was shown on Wednesday? | CREATE TABLE table_22175 ("Episodes" text,"Monday" text,"Tuesday" text,"Wednesday" text,"Thursday" text,"Friday" text) | SELECT COUNT("Friday") FROM table_22175 WHERE "Wednesday" = '210 Kirby''s Epic Yarn' |
What is Cha Bum-Kun's average number of goals per match? | CREATE TABLE table_62099 ("Name" text,"Confederation" text,"International goals" real,"Caps" real,"Goals per Match" real) | SELECT COUNT("Goals per Match") FROM table_62099 WHERE "Name" = 'cha bum-kun' |
Which platform has an Actual version of 0.147? | CREATE TABLE table_55130 ("Name" text,"Actual version" text,"System" text,"Platform" text,"License" text) | SELECT "Platform" FROM table_55130 WHERE "Actual version" = '0.147' |
How many games did they play when their record 0-2-0? | CREATE TABLE table_24091 ("Game" real,"Date" text,"Opponent" text,"Result" text,"Wildcats points" real,"Opponents" real,"Record" text) | SELECT COUNT("Date") FROM table_24091 WHERE "Record" = '0-2-0' |
What is the charity of the celebrity with the background reality star? | CREATE TABLE table_491 ("Celebrity" text,"Background" text,"Original Team" text,"Age" real,"Hometown" text,"Charity" text,"Result" text,"Raised" text) | SELECT "Charity" FROM table_491 WHERE "Background" = 'Reality Star' |
count the number of people diagnosed with chronic nephritis nec who did not come to the hospital in the same month. | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type t... | SELECT (SELECT COUNT(DISTINCT t1.subject_id) 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 d_icd_diagnoses.short_title = 'chronic ne... |
Name the title that got 1.54 viewers | CREATE TABLE table_24934 ("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 (million)" text) | SELECT "Title" FROM table_24934 WHERE "U.S. viewers (million)" = '1.54' |
Which Goals have Games of 51, and a Debut year smaller than 1992? | CREATE TABLE table_13444 ("Debut year" real,"Player" text,"Games" real,"Goals" real,"Years at club" text) | SELECT MIN("Goals") FROM table_13444 WHERE "Games" = '51' AND "Debut year" < '1992' |
What channel has station kdfw ++? | CREATE TABLE table_1353096_1 (channel_tv___dt__ VARCHAR,station VARCHAR) | SELECT channel_tv___dt__ FROM table_1353096_1 WHERE station = "KDFW ++" |
what is the minimum pos with clubs being 16 | CREATE TABLE table_14460937_2 (pos INTEGER,clubs VARCHAR) | SELECT MIN(pos) FROM table_14460937_2 WHERE clubs = "16" |
What sport did Miroslav Jambor Richard Csejtey participate in? | CREATE TABLE table_name_16 (sport VARCHAR,name VARCHAR) | SELECT sport FROM table_name_16 WHERE name = "miroslav jambor richard csejtey" |
The district North Carolina 10 have what candidates? | CREATE TABLE table_3608 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text) | SELECT "Candidates" FROM table_3608 WHERE "District" = 'North Carolina 10' |
What is the owner of the channel that has a 2012 rating of 5.42? | CREATE TABLE table_name_96 (owner VARCHAR) | SELECT owner FROM table_name_96 WHERE 2012 = "5.42" |
what was the yearly maximum value of weight for patient 015-56556 until 2104? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE intakeoutput (intakeoutputid number,pat... | SELECT MAX(patient.admissionweight) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '015-56556') AND NOT patient.admissionweight IS NULL AND STRFTIME('%y', patient.unitadmittime) <= '2104' GROUP BY STRFTIME('%y', patient.unitadmitt... |
What is the total of PI GP played by Anton Rodin with a Reg GP less than 0? | CREATE TABLE table_54772 ("Rd #" real,"Pick #" real,"Player" text,"Team (League)" text,"Reg GP" real,"Pl GP" real) | SELECT COUNT("Pl GP") FROM table_54772 WHERE "Player" = 'anton rodin' AND "Reg GP" < '0' |
give me some restaurants good for french food ? | CREATE TABLE geographic (city_name varchar,county varchar,region varchar)CREATE TABLE restaurant (id int,name varchar,food_type varchar,city_name varchar,rating "decimal)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 restaurant.food_type = 'french' AND restaurant.id = location.restaurant_id AND restaurant.rating > 2.5 |
how many patients have been prescribed the drug with code hald5i? | CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag text,admission_location text,discharge_location text,diagnosis text,dod text,dob_year text,dod_year ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE prescriptions.formulary_drug_cd = "HALD5I" |
what is the number of patients whose ethnicity is black/cape verdean and age is less than 86? | 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 COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.ethnicity = "BLACK/CAPE VERDEAN" AND demographic.age < "86" |
What were the highest points before the year 1974? | CREATE TABLE table_68607 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Points" real) | SELECT MAX("Points") FROM table_68607 WHERE "Year" < '1974' |
What's the 2012 when 2009 was 205? | CREATE TABLE table_62844 ("Tournament" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "2012" FROM table_62844 WHERE "2009" = '205' |
what are the number of times bangalore is listed as the destination ? | CREATE TABLE table_204_78 (id number,"no." number,"train no." text,"origin" text,"destination" text,"train name" text) | SELECT COUNT(*) FROM table_204_78 WHERE "destination" = 'bangalore' |
Where was the game where the senators scored 80 points? | CREATE TABLE table_50508 ("Game" real,"Date" text,"Opponent" text,"Score" text,"Location" text,"Attendance" real,"Record" text,"Points" real) | SELECT "Location" FROM table_50508 WHERE "Points" = '80' |
Which region had a release format of CD Maxi? | CREATE TABLE table_name_20 (region VARCHAR,format VARCHAR) | SELECT region FROM table_name_20 WHERE format = "cd maxi" |
until 09/10/2105, what was the daily average dose of enteral formula volume/bolus amt (ml) of patient 004-13672? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,d... | SELECT AVG(intakeoutput.cellvaluenumeric) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '004-13672')) AND intakeoutput.celllabel = 'enter... |
how many of the patients with item id 51181 had an unobtainable religious belief? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.religion = "UNOBTAINABLE" AND lab.itemid = "51181" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.