instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What is the person born in Australia, rick springfield notable for? | CREATE TABLE table_34689 ("Name" text,"Born \u2013 Died" text,"Notable for" text,"Connection with Australia" text,"Connection with America" text) | SELECT "Notable for" FROM table_34689 WHERE "Connection with Australia" = 'born in australia' AND "Name" = 'rick springfield' |
what is the number of patients whose admission year is less than 2182 and lab test fluid is blood? | 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.admityear < "2182" AND lab.fluid = "Blood" |
provide the number of patients whose admission location is clinic referral/premature and primary disease is sepsis? | 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,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "CLINIC REFERRAL/PREMATURE" AND demographic.diagnosis = "SEPSIS" |
What were the January ( F) temperatures in the Corner Brook location? | CREATE TABLE table_21980_1 (january__°f_ VARCHAR,location VARCHAR) | SELECT january__°f_ FROM table_21980_1 WHERE location = "Corner Brook" |
What is the average age for all managers? | CREATE TABLE manager (Age INTEGER) | SELECT AVG(Age) FROM manager |
what is the time/retired when the laps is 55? | CREATE TABLE table_name_96 (time_retired VARCHAR,laps VARCHAR) | SELECT time_retired FROM table_name_96 WHERE laps = 55 |
Which location has the top amount of 'Drugs' crime conducted? | CREATE TABLE greatermanchestercrime (crimeid text,crimets time,location text,lsoa text,type text,outcome text) | SELECT location FROM greatermanchestercrime WHERE type LIKE "%Drug%" GROUP BY location ORDER BY COUNT(*) DESC LIMIT 1 |
Best Algerian stack overflow users. | 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 ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Review... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Age, Location, WebsiteUrl AS Wesbite, LastAccessDate AS Seen, CreationDate FROM Users WHERE Reputation >= '##MinimalReputation:int?1##' AND (UPPER(Location) LIKE UPPER('%Algeria%') OR UPPER(Location) LIKE UPPER('%Algerie%') OR UP... |
what's the number of patients who had a tpn d11.5 intake a year before? | CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careu... | 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 = 'tpn d11.5' AND d_it... |
What is the fewest area in Derrynanool townland? | CREATE TABLE table_31495 ("Townland" text,"Area(acres)" real,"Barony" text,"Civil parish" text,"Poor law union" text) | SELECT MIN("Area( acres )") FROM table_31495 WHERE "Townland" = 'Derrynanool' |
How many times was the mens u20 recorded when the Womens 40 were Sydney Scorpions def North Queensland Cyclones? | CREATE TABLE table_16724844_1 (mens_u20 VARCHAR,womens_40 VARCHAR) | SELECT COUNT(mens_u20) FROM table_16724844_1 WHERE womens_40 = "Sydney Scorpions def North Queensland Cyclones" |
Who was the winner of the mechelen > mechelen route? | CREATE TABLE table_60903 ("Stage" text,"Route" text,"Distance" text,"Date" text,"Winner" text) | SELECT "Winner" FROM table_60903 WHERE "Route" = 'mechelen > mechelen' |
has patient 002-4486 been ordered chlorhexidine gluconate 0.12%, morphine 4 mg/ml syringe : 1 ml syringe, or amlodipine 5 mg tab during this 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 lab (labi... | SELECT COUNT(*) > 0 FROM medication WHERE medication.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-4486')) AND medication.drugname IN ('morphine 4 mg/ml syringe : 1 ml s... |
What is 4:30 pm, when Noon is 'Local Programs', and when 11:00 am is 'Local Programs'? | CREATE TABLE table_61154 ("7:00 am" text,"7:30 am" text,"8:00 am" text,"9:00 am" text,"11:00 am" text,"noon" text,"12:30 pm" text,"1:00 pm" text,"1:30 pm" text,"2:00 pm" text,"3:00 pm" text,"3:30 pm" text,"4:00 pm" text,"4:30 pm" text,"5:00 pm" text,"6:30 pm" text) | SELECT "4:30 pm" FROM table_61154 WHERE "noon" = 'local programs' AND "11:00 am" = 'local programs' |
What position did the person finish in with a notes of junior men individual 5.64km? | CREATE TABLE table_name_95 (position VARCHAR,notes VARCHAR) | SELECT position FROM table_name_95 WHERE notes = "junior men individual 5.64km" |
How many episodes were written by Jack Burditt & Robert Carlock | CREATE TABLE table_1378 ("No. in series" real,"Title" text,"Directed by" text,"Written by" text,"U.S. viewers (million)" text,"Original air date" text,"Production code" real) | SELECT COUNT("Production code") FROM table_1378 WHERE "Written by" = 'Jack Burditt & Robert Carlock' |
What was the type of ballot measure with the description of Department of Industry and Public Works Amendment? | CREATE TABLE table_27953 ("meas. num" real,"passed" text,"YES votes" real,"NO votes" real,"% YES" text,"Const. Amd.?" text,"type" text,"description" text) | SELECT "type" FROM table_27953 WHERE "description" = 'Department of Industry and Public Works Amendment' |
How much parking is in Van Nuys at the Sepulveda station? | CREATE TABLE table_2093995_1 (parking VARCHAR,city__neighborhood VARCHAR,stations VARCHAR) | SELECT parking FROM table_2093995_1 WHERE city__neighborhood = "Van Nuys" AND stations = "Sepulveda" |
Please list the age and famous title of artists in descending order of age. | CREATE TABLE volume (volume_id number,volume_issue text,issue_date text,weeks_on_top number,song text,artist_id number)CREATE TABLE artist (artist_id number,artist text,age number,famous_title text,famous_release_date text)CREATE TABLE music_festival (id number,music_festival text,date_of_ceremony text,category text,vo... | SELECT famous_title, age FROM artist ORDER BY age DESC |
What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11? | CREATE TABLE table_name_92 (laps INTEGER,grid VARCHAR,manufacturer VARCHAR,time_retired VARCHAR) | SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = "ktm" AND time_retired = "+56.440" AND grid < 11 |
Tell me the network for 13 january 2009 | CREATE TABLE table_name_80 (network VARCHAR,premiere VARCHAR) | SELECT network FROM table_name_80 WHERE premiere = "13 january 2009" |
What's the website for the yamagata international documentary film festival? | CREATE TABLE table_name_27 (website VARCHAR,name VARCHAR) | SELECT website FROM table_name_27 WHERE name = "yamagata international documentary film festival" |
What is the name of the person that was appointed on 13 May 2009? | CREATE TABLE table_name_74 (replaced_by VARCHAR,date_of_appointment VARCHAR) | SELECT replaced_by FROM table_name_74 WHERE date_of_appointment = "13 may 2009" |
Which away team's Venue is western oval? | CREATE TABLE table_10284 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Away team" FROM table_10284 WHERE "Venue" = 'western oval' |
give me the number of patients whose age is less than 62 and diagnoses short title is esophageal reflux? | 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.age < "62" AND diagnoses.short_title = "Esophageal reflux" |
what is the image quality when the multiple sessions is x, the authentication is and the date is may 15, 2007? | CREATE TABLE table_name_32 (image_quality VARCHAR,date VARCHAR,multiple_sessions VARCHAR,authentication VARCHAR) | SELECT image_quality FROM table_name_32 WHERE multiple_sessions = "x" AND authentication = "✓" AND date = "may 15, 2007" |
is patient 027-4674 ever diagnosed with anything during the last year? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE lab (labid number,p... | SELECT COUNT(*) > 0 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-4674')) AND DATETIME(diagnosis.diagnosistime, 'start of year') = DATETIM... |
Who holds the time of 17:11.572? | CREATE TABLE table_name_83 (race VARCHAR,time VARCHAR) | SELECT race FROM table_name_83 WHERE time = "17:11.572" |
Who directed 'hey now hey now perry'S girlfriend's back'? | CREATE TABLE table_3099 ("No." real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text,"U.S. viewers (million)" text) | SELECT "Directed by" FROM table_3099 WHERE "Title" = 'Hey Now Hey Now Perry''s Girlfriend''s Back' |
when was the first time patient 011-31236's procedure was performed in 2101? | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid num... | SELECT treatment.treatmenttime FROM treatment WHERE treatment.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '011-31236')) AND STRFTIME('%y', treatment.treatmenttime) = '2101'... |
When kumbha is the international alphabet of sanskrit transliteration what is the gloss? | CREATE TABLE table_22517 ("Number" real,"Sanskrit" text,"International Alphabet of Sanskrit Transliteration" text,"Sanskrit gloss" text,"Western name" text,"Greek" text,"Gloss" text,"Tattva (Element)" text,"Quality" text,"Ruling Planet" text) | SELECT "Gloss" FROM table_22517 WHERE "International Alphabet of Sanskrit Transliteration" = 'Kumbha' |
How much money does the player with a 68-67-69-71=275 score have? | CREATE TABLE table_60214 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money (\u00a3)" text) | SELECT "Money ( \u00a3 )" FROM table_60214 WHERE "Score" = '68-67-69-71=275' |
were any medications prescribed to patient 27038 when they came to the hospital last time? | CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title 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 labevents (row_id number,subject_id number,hadm_id number,itemid ... | SELECT COUNT(*) > 0 FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 27038 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1) |
Which Rank has a Player of matt ruth? | CREATE TABLE table_13632 ("Rank" real,"Player" text,"County" text,"Tally" text,"Total" real,"Opposition" text) | SELECT SUM("Rank") FROM table_13632 WHERE "Player" = 'matt ruth' |
what is the venue where the scores are 15.13 (103) 8.4 (52)? | CREATE TABLE table_16703 ("Year" real,"Winners" text,"Grand Finalist" text,"Scores" text,"Venue" text,"Crowd" real,"Margin" real,"Season Result" text) | SELECT "Venue" FROM table_16703 WHERE "Scores" = '15.13 (103) – 8.4 (52)' |
A bar chart for returning the number of the lot details of lots that belong to investors with details 'l'?, I want to rank by the how many lot details in descending. | CREATE TABLE Purchases (purchase_transaction_id INTEGER,purchase_details VARCHAR(255))CREATE TABLE Lots (lot_id INTEGER,investor_id INTEGER,lot_details VARCHAR(255))CREATE TABLE Sales (sales_transaction_id INTEGER,sales_details VARCHAR(255))CREATE TABLE Ref_Transaction_Types (transaction_type_code VARCHAR(10),transacti... | SELECT lot_details, COUNT(lot_details) FROM Investors AS T1 JOIN Lots AS T2 ON T1.investor_id = T2.investor_id WHERE T1.Investor_details = "l" GROUP BY lot_details ORDER BY COUNT(lot_details) DESC |
how many patients have medicaid health insurance? | CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd t... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.insurance = "Medicaid" |
What are the number of different course codes? | CREATE TABLE employee (emp_num number,emp_lname text,emp_fname text,emp_initial text,emp_jobcode text,emp_hiredate time,emp_dob time)CREATE TABLE class (class_code text,crs_code text,class_section text,class_time text,class_room text,prof_num number)CREATE TABLE student (stu_num number,stu_lname text,stu_fname text,stu... | SELECT COUNT(DISTINCT crs_code) FROM class |
The Reputation of Voters in This Election. | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE ReviewTaskStates (Id number,Name text,Description text)CREATE TABLE FlagTypes (Id number,Name text,Description text)CREATE TABLE ReviewTaskTypes (Id number,Name text,Descr... | SELECT u.Reputation FROM Badges AS b LEFT JOIN Users AS u ON u.Id = b.UserId WHERE b.Name = 'Constituent' AND CAST((JULIANDAY(Date) - JULIANDAY('2018-08-06')) * 1440.0 AS INT) > 0 |
What are the name and population of each county? | CREATE TABLE county (county_id number,county_name text,population number,zip_code text)CREATE TABLE election (election_id number,counties_represented text,district number,delegate text,party number,first_elected number,committee text)CREATE TABLE party (party_id number,year number,party text,governor text,lieutenant_go... | SELECT county_name, population FROM county |
What is the number of weeks where the venue was memorial stadium and the attendance was less than 41,252? | CREATE TABLE table_name_36 (week VARCHAR,venue VARCHAR,attendance VARCHAR) | SELECT COUNT(week) FROM table_name_36 WHERE venue = "memorial stadium" AND attendance < 41 OFFSET 252 |
was the attendance more or less in the saturday , april 13th game compared to the saturday , may 11th | CREATE TABLE table_204_123 (id number,"week" number,"date" text,"kickoff" text,"opponent" text,"results\nfinal score" text,"results\nteam record" text,"game site" text,"attendance" number) | SELECT (SELECT "attendance" FROM table_204_123 WHERE "date" = 'saturday, april 13') > (SELECT "attendance" FROM table_204_123 WHERE "date" = 'saturday, may 11') |
among patients admitted in the year less than 2203, how many of them were aged below 70? | 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 procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.age < "70" AND demographic.admityear < "2203" |
What are the first name and last name of the players who were paid salary by team Washington Nationals in both 2005 and 2007? | CREATE TABLE salary (year number,team_id text,league_id text,player_id text,salary number)CREATE TABLE manager_award_vote (award_id text,year number,league_id text,player_id text,points_won number,points_max number,votes_first number)CREATE TABLE manager_award (player_id text,award_id text,year number,league_id text,ti... | SELECT T2.name_first, T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JOIN team AS T3 ON T3.team_id_br = T1.team_id WHERE T1.year = 2005 AND T3.name = 'Washington Nationals' INTERSECT SELECT T2.name_first, T2.name_last FROM salary AS T1 JOIN player AS T2 ON T1.player_id = T2.player_id JO... |
find out the average age of patients whose marital status is single and ethnicity is hispanic/latino - puerto rican. | 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 AVG(demographic.age) FROM demographic WHERE demographic.marital_status = "SINGLE" AND demographic.ethnicity = "HISPANIC/LATINO - PUERTO RICAN" |
What year was finish Toulouse, and stage was larger than 12? | CREATE TABLE table_66233 ("Year" real,"Stage" real,"Start" text,"Finish" text,"Leader at the summit" text) | SELECT SUM("Year") FROM table_66233 WHERE "Finish" = 'toulouse' AND "Stage" > '12' |
WHICH Outcome IS ON 18 july 1993? | CREATE TABLE table_36288 ("Outcome" text,"Date" text,"Tournament" text,"Surface" text,"Opponent" text,"Score" text) | SELECT "Outcome" FROM table_36288 WHERE "Date" = '18 july 1993' |
since 2105, what are the top four most frequent diagnoses that patients were given during the same hospital encounter after being diagnosed with ventricular tachycardia - sustained? | CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT t3.diagnosisname FROM (SELECT t2.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = 'ventr... |
What is the total number of Wins, when Draws is less than 2? | CREATE TABLE table_name_48 (wins VARCHAR,draws INTEGER) | SELECT COUNT(wins) FROM table_name_48 WHERE draws < 2 |
what was the first type of hospital admission type of patient 3939? | CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE chartevents (row_id number,subject_... | SELECT admissions.admission_type FROM admissions WHERE admissions.subject_id = 3939 ORDER BY admissions.admittime LIMIT 1 |
What year was the USS Cambridge laid down? | CREATE TABLE table_66047 ("Hull Number" text,"Name" text,"Builder" text,"Laid down" text,"Launched" text,"Completed" text) | SELECT "Laid down" FROM table_66047 WHERE "Name" = 'uss cambridge' |
What is the rank of Lee Trevino, who had less than 27 wins? | CREATE TABLE table_name_89 (rank INTEGER,player VARCHAR,wins VARCHAR) | SELECT SUM(rank) FROM table_name_89 WHERE player = "lee trevino" AND wins < 27 |
How many courses for each office? Show me a bar chart, could you show by the x-axis in desc please? | CREATE TABLE ENROLL (CLASS_CODE varchar(5),STU_NUM int,ENROLL_GRADE varchar(50))CREATE TABLE COURSE (CRS_CODE varchar(10),DEPT_CODE varchar(10),CRS_DESCRIPTION varchar(35),CRS_CREDIT float(8))CREATE TABLE PROFESSOR (EMP_NUM int,DEPT_CODE varchar(10),PROF_OFFICE varchar(50),PROF_EXTENSION varchar(4),PROF_HIGH_DEGREE var... | SELECT PROF_OFFICE, COUNT(PROF_OFFICE) FROM CLASS AS T1 JOIN EMPLOYEE AS T2 ON T1.PROF_NUM = T2.EMP_NUM JOIN COURSE AS T3 ON T1.CRS_CODE = T3.CRS_CODE JOIN PROFESSOR AS T4 ON T2.EMP_NUM = T4.EMP_NUM GROUP BY PROF_OFFICE ORDER BY PROF_OFFICE DESC |
what's the cancelable with bubbles being yes | CREATE TABLE table_1507852_5 (cancelable VARCHAR,bubbles VARCHAR) | SELECT cancelable FROM table_1507852_5 WHERE bubbles = "Yes" |
to which religious background does the patient with patient id 6983 belong to? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime te... | SELECT demographic.religion FROM demographic WHERE demographic.subject_id = "6983" |
What is the highest numbered pick from round 7? | CREATE TABLE table_37107 ("Round" real,"Pick" real,"Player" text,"Nationality" text,"School/Club Team" text) | SELECT MAX("Pick") FROM table_37107 WHERE "Round" = '7' |
list patient identifications of patients who were diagnosed with ac/chr syst/dia hrt fail since 2 years ago. | 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)CREATE TABLE transfers (row_id number,subject_id number,hadm_id n... | SELECT admissions.subject_id FROM admissions WHERE admissions.hadm_id IN (SELECT diagnoses_icd.hadm_id FROM diagnoses_icd WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'ac/chr syst/dia hrt fail') AND DATETIME(diagnoses_icd.charttime) >= DATETI... |
What was the date of the premiere that had a 20.9 rating? | CREATE TABLE table_name_38 (premiere VARCHAR,rating VARCHAR) | SELECT premiere FROM table_name_38 WHERE rating = "20.9" |
What are the number of the dates in which the mean sea level pressure was between 30.3 and 31? | CREATE TABLE trip (id INTEGER,duration INTEGER,start_date TEXT,start_station_name TEXT,start_station_id INTEGER,end_date TEXT,end_station_name TEXT,end_station_id INTEGER,bike_id INTEGER,subscription_type TEXT,zip_code INTEGER)CREATE TABLE station (id INTEGER,name TEXT,lat NUMERIC,long NUMERIC,dock_count INTEGER,city T... | SELECT date, COUNT(date) FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 |
count the number of patients whose marital status is married and age is less than 31? | 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 WHERE demographic.marital_status = "MARRIED" AND demographic.age < "31" |
How many field goals did Donald Green score? | CREATE TABLE table_28062 ("Player" text,"Touchdowns" real,"Extra points" real,"Field goals" real,"Points" real) | SELECT COUNT("Field goals") FROM table_28062 WHERE "Player" = 'Donald Green' |
Please list the location and the winning aircraft name. | CREATE TABLE aircraft (Aircraft VARCHAR,Aircraft_ID VARCHAR)CREATE TABLE MATCH (Location VARCHAR,Winning_Aircraft VARCHAR) | SELECT T2.Location, T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft |
Which is the LMS SPR when the car number was 15? | CREATE TABLE table_name_60 (lms_spr VARCHAR,car_no VARCHAR) | SELECT lms_spr FROM table_name_60 WHERE car_no = "15" |
Which Run 4 has a Run 3 of 1:26.63? | CREATE TABLE table_77470 ("Team" text,"Athletes" text,"Run 1" text,"Run 2" text,"Run 3" text,"Run 4" text,"Final" text) | SELECT "Run 4" FROM table_77470 WHERE "Run 3" = '1:26.63' |
how many patients died in or before 2115? | 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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,do... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.dod_year <= "2115.0" |
Before 1956, what Chassis has Gordini Straight-4 engine with 3 points? | CREATE TABLE table_80101 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Points" real) | SELECT "Chassis" FROM table_80101 WHERE "Year" < '1956' AND "Engine" = 'gordini straight-4' AND "Points" = '3' |
count the number of times that patient 031-15666 has received a anion gap test in the lab since 157 months ago. | CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweight number,dischargeweight number,hospitaladmittime time,hospitaladmitsource text,unitadmittime time,unitdischargetime tim... | SELECT COUNT(*) FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-15666')) AND lab.labname = 'anion gap' AND DATETIME(lab.labresulttime) >= DATETIME(CURRE... |
What is the rank of American Pie 2? | CREATE TABLE table_name_4 (rank INTEGER,title VARCHAR) | SELECT MIN(rank) FROM table_name_4 WHERE title = "american pie 2" |
What's the total for the wc belgrade event with 10 rank points? | CREATE TABLE table_60905 ("Shooter" text,"Event" text,"Rank points" text,"Score points" text,"Total" text) | SELECT "Total" FROM table_60905 WHERE "Event" = 'wc belgrade' AND "Rank points" = '10' |
count the number of patients whose admission location is emergency room admit and age is less than 85? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,sho... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "EMERGENCY ROOM ADMIT" AND demographic.age < "85" |
What year was the comp 33? | CREATE TABLE table_54933 ("Year" text,"Team" text,"Comp" text,"Rate" text,"RAtt" text,"RYds" text,"RAvg" text) | SELECT "Year" FROM table_54933 WHERE "Comp" = '33' |
Which date has a Record of 22-22? | CREATE TABLE table_15615 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text) | SELECT "Date" FROM table_15615 WHERE "Record" = '22-22' |
What round did the spartak moscow club play? | CREATE TABLE table_name_12 (round VARCHAR,club VARCHAR) | SELECT round FROM table_name_12 WHERE club = "spartak moscow" |
Who is the manager whose rank is 16? | CREATE TABLE table_72293 ("Season" text,"League" text,"Rank" real,"Games" real,"Points" real,"GF" real,"GA" real,"Manager" text,"Top Scorer" text,"Goals" real) | SELECT "Manager" FROM table_72293 WHERE "Rank" = '16' |
Was there HDTV when the service was Priv ? | CREATE TABLE table_20385 ("N\u00b0" real,"Television service" text,"Country" text,"Language" text,"Content" text,"DAR" text,"HDTV" text,"PPV" text,"Package/Option" text) | SELECT "HDTV" FROM table_20385 WHERE "Television service" = 'PRIVÈ' |
what's the builder where withdrawn is 1954 1958 | CREATE TABLE table_1181375_1 (builder VARCHAR,withdrawn VARCHAR) | SELECT builder FROM table_1181375_1 WHERE withdrawn = "1954–1958" |
Give me a bar chart that the x-axis is the services and the Y is the count(services), and could you show bars from low to high order? | CREATE TABLE route (train_id int,station_id int)CREATE TABLE station (id int,network_name text,services text,local_authority text)CREATE TABLE train (id int,train_number int,name text,origin text,destination text,time text,interval text)CREATE TABLE weekly_weather (station_id int,day_of_week text,high_temperature int,l... | SELECT services, COUNT(services) FROM station GROUP BY services ORDER BY services |
How many different roles are there in the club 'Bootup Baltimore'? | CREATE TABLE club (clubid number,clubname text,clubdesc text,clublocation text)CREATE TABLE student (stuid number,lname text,fname text,age number,sex text,major number,advisor number,city_code text)CREATE TABLE member_of_club (stuid number,clubid number,position text) | SELECT COUNT(DISTINCT t2.position) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid WHERE t1.clubname = "Bootup Baltimore" |
What is the date of the Outback Steakhouse Pro-Am Tournament? | CREATE TABLE table_name_94 (date VARCHAR,tournament VARCHAR) | SELECT date FROM table_name_94 WHERE tournament = "outback steakhouse pro-am" |
what is patient 025-66662's gender? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid n... | SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '025-66662' |
What stadium was the December 29, 2008 game played at? | CREATE TABLE table_41009 ("Bowl Game" text,"Date" text,"Stadium" text,"City" text,"Television" text,"Conference Matchups" text,"Payout (US$)" text) | SELECT "Stadium" FROM table_41009 WHERE "Date" = 'december 29, 2008' |
What is the smallest number of third place earned for the Es Sahel at a rank less than 3? | CREATE TABLE table_name_37 (third INTEGER,club VARCHAR,rank VARCHAR) | SELECT MIN(third) FROM table_name_37 WHERE club = "es sahel" AND rank < 3 |
Name the club for when tries for is 32 | CREATE TABLE table_17625749_1 (club VARCHAR,tries_for VARCHAR) | SELECT club FROM table_17625749_1 WHERE tries_for = "32" |
What position is the player Jordan Fransoo in? | CREATE TABLE table_17209 ("Round" real,"Overall" text,"Player" text,"Position" text,"Nationality" text,"Club team" text) | SELECT "Position" FROM table_17209 WHERE "Player" = 'Jordan Fransoo' |
Venue of klfa stadium, cheras, and a Score of 3-3 had what competition? | CREATE TABLE table_name_71 (competition VARCHAR,venue VARCHAR,score VARCHAR) | SELECT competition FROM table_name_71 WHERE venue = "klfa stadium, cheras" AND score = "3-3" |
For the top 3 days with the largest max gust speeds, show the date and average temperature with a bar chart. | CREATE TABLE station (id INTEGER,name TEXT,lat NUMERIC,long NUMERIC,dock_count INTEGER,city TEXT,installation_date TEXT)CREATE TABLE trip (id INTEGER,duration INTEGER,start_date TEXT,start_station_name TEXT,start_station_id INTEGER,end_date TEXT,end_station_name TEXT,end_station_id INTEGER,bike_id INTEGER,subscription_... | SELECT date, mean_temperature_f FROM weather ORDER BY max_gust_speed_mph DESC LIMIT 3 |
how many tv shows did natalia oreiro between 1998 and 2002 ? | CREATE TABLE table_204_871 (id number,"ano" text,"title" text,"role" text,"channel" text,"notes" text) | SELECT COUNT("title") FROM table_204_871 WHERE "ano" >= 1998 AND "ano" <= 2002 |
What is the date when Grimsby Town is the home team? | CREATE TABLE table_8011 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Date" text) | SELECT "Date" FROM table_8011 WHERE "Home team" = 'grimsby town' |
When 4744 is the avg. trips per mile (x1000) what is the current stock? | CREATE TABLE table_21956 ("Name" text,"Map colour" text,"First operated" real,"Type" text,"Length" text,"No. Sta" real,"Current Stock" text,"Future Stock" text,"Trips per annum (\u00d71000)" real,"Avg. trips per mile (\u00d71000)" real) | SELECT "Current Stock" FROM table_21956 WHERE "Avg. trips per mile (\u00d71000)" = '4744' |
What is the current series where the new series began in June 2011? | CREATE TABLE table_1000181_1 (current_series VARCHAR,notes VARCHAR) | SELECT current_series FROM table_1000181_1 WHERE notes = "New series began in June 2011" |
the cheapest flights between BOSTON and PHILADELPHIA which arrive between 3 and 1700 o'clock on tuesday | CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE code_description (code varchar,description text)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premiu... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, fare, flight, flight_fare WHERE ((((((flight.arrival_time < flight.departure_time) AND date_day.day_number = 22 AND date_day.month_number = 3 AND date_day.yea... |
which team did this team face against next after beating minnesota on january 29 of this season ? | CREATE TABLE table_204_795 (id number,"date" text,"opponent" text,"score" text,"result" text,"location" text,"attendance" number) | SELECT "opponent" FROM table_204_795 WHERE "date" > (SELECT "date" FROM table_204_795 WHERE "date" = 'january 29, 1949') ORDER BY "date" LIMIT 1 |
What date had a versus of source: cricinfo.com? | CREATE TABLE table_54709 ("Catches" text,"Player" text,"Versus" text,"Venue" text,"Date" text) | SELECT "Date" FROM table_54709 WHERE "Versus" = 'source: cricinfo.com' |
what's the grand finalist where winners is collingwood | CREATE TABLE table_16698 ("Year" real,"Winners" text,"Grand Finalist" text,"Scores" text,"Venue" text,"Crowd" real,"Margin" real,"Season Result" text) | SELECT "Grand Finalist" FROM table_16698 WHERE "Winners" = 'Collingwood' |
What is the Venue with the Friendly Competition? | CREATE TABLE table_12283 ("Date" text,"Venue" text,"Score" text,"Result" text,"Competition" text) | SELECT "Venue" FROM table_12283 WHERE "Competition" = 'friendly' |
Find the number of dorms for each gender in a bar chart, I want to show by the x axis from high to low please. | CREATE TABLE Dorm (dormid INTEGER,dorm_name VARCHAR(20),student_capacity INTEGER,gender VARCHAR(1))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 Lives_in (stuid INTEGER,dormid INTEGER,room_number INTEGER... | SELECT gender, COUNT(*) FROM Dorm GROUP BY gender ORDER BY gender DESC |
what was the name of the output that patient 002-7771 got last until 1929 days ago? | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE treatment (treatmentid number,patientun... | SELECT intakeoutput.celllabel FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '002-7771')) AND intakeoutput.cellpath LIKE '%output%' AND DA... |
what are the top three most common laboratory tests that followed in the same hospital encounter for patients who were given ins drug-elut coronry st until 2103? | CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)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 icustays (row_id number,subject_id number,hadm_id nu... | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t3.itemid FROM (SELECT t2.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, procedures_icd.charttime, admissions.hadm_id FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_i... |
What was the score of the match played on 5 September 2001? | CREATE TABLE table_name_38 (score VARCHAR,date VARCHAR) | SELECT score FROM table_name_38 WHERE date = "5 september 2001" |
What is the sum of matches played that has a year of first match before 2000, fewer than 21 lost, and 0 drawn? | CREATE TABLE table_69759 ("First game" real,"Played" real,"Drawn" real,"Lost" real,"Percentage" text) | SELECT SUM("Played") FROM table_69759 WHERE "First game" < '2000' AND "Lost" < '21' AND "Drawn" < '0' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.