instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
What district is incumbent robert l. mouton from? | CREATE TABLE table_18629 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT "District" FROM table_18629 WHERE "Incumbent" = 'Robert L. Mouton' |
Name the number of jons team for 15x10 | CREATE TABLE table_23292220_17 (jons_team VARCHAR,episode VARCHAR) | SELECT COUNT(jons_team) FROM table_23292220_17 WHERE episode = "15x10" |
does flight UA 281 from BOSTON to DENVER leave on TUESDAY | CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum_stay int,application text,no_discounts text)CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE code_description (code varchar,description text)CREATE T... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, days, flight WHERE (((days.day_name = 'TUESDAY' AND flight.flight_days = days.days_code AND flight.flight_number = 281) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND... |
What away team scored 107-104? | CREATE TABLE table_44704 ("Date" text,"Home team" text,"Score" text,"Away team" text,"Venue" text,"Box Score" text,"Report" text) | SELECT "Away team" FROM table_44704 WHERE "Score" = '107-104' |
find the number of patients who underwent drug detoxification. | 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 lab (subject_id text,hadm_id text,itemid text,charttime tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE procedures.long_title = "Drug detoxification" |
lowest fare from SAN FRANCISCO to ORLANDO | CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)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_s... | SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, fare, flight, flight_fare WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'SAN FRANCISCO' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_... |
where was the last game of the season held ? | CREATE TABLE table_204_282 (id number,"date" text,"venue" text,"opponent" text,"score" text,"result" text,"competition" text,"#" number) | SELECT "venue" FROM table_204_282 ORDER BY "date" DESC LIMIT 1 |
What is the Pinyin name for Dingyuan County? | CREATE TABLE table_1982739_2 (pinyin VARCHAR,english_name VARCHAR) | SELECT pinyin FROM table_1982739_2 WHERE english_name = "Dingyuan County" |
What is the Latin term for the Greek symbol ? | CREATE TABLE table_61053 ("Phoen. value" text,"Phoen. name" text,"Hebrew" text,"Greek" text,"Latin" text,"Cyrillic" text,"Arabic" text) | SELECT "Latin" FROM table_61053 WHERE "Greek" = 'μ' |
Which Crowd has a Home team score of 15.20 (110), and a Home team of carlton? | CREATE TABLE table_56554 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT MIN("Crowd") FROM table_56554 WHERE "Home team score" = '15.20 (110)' AND "Home team" = 'carlton' |
Show me some easy 300 -level classes . | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,entered_as varchar,admit_term int,predicted_graduation_semester int,degree varchar,minor varchar,... | SELECT DISTINCT course.name, course.number, program_course.workload FROM course, program_course WHERE course.department = 'EECS' AND course.number BETWEEN 300 AND 300 + 100 AND program_course.course_id = course.course_id AND program_course.workload < 3 ORDER BY program_course.workload |
what is the ingesting method of heparin flush crrt (5000 units/ml)? | CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)C... | SELECT DISTINCT prescriptions.route FROM prescriptions WHERE prescriptions.drug = 'heparin flush crrt (5000 units/ml)' |
In which townlands is the civil parish Monkstown? | CREATE TABLE table_30120619_1 (townland VARCHAR,civil_parish VARCHAR) | SELECT townland FROM table_30120619_1 WHERE civil_parish = "Monkstown" |
provide the number of patients whose insurance is self pay and days of hospital stay is greater than 27? | 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.insurance = "Self Pay" AND demographic.days_stay > "27" |
give me the number of patients whose admission type is elective and procedure short title is ureteral catheterization? | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.admission_type = "ELECTIVE" AND procedures.short_title = "Ureteral catheterization" |
What is the lowest number of games with a rank less than 1? | CREATE TABLE table_7628 ("Rank" real,"Name" text,"Team" text,"Games" real,"Points" real) | SELECT MIN("Games") FROM table_7628 WHERE "Rank" < '1' |
Return a bar chart about the distribution of Nationality and the amount of Nationality , and group by attribute Nationality, and list in descending by the Y-axis. | CREATE TABLE event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE stadium (ID int,name text,Capacity int,City text,Country text,Opening_year int)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE swimmer (ID int,name text,Nationality text,meter_100 real,meter_200 text,meter_300 te... | SELECT Nationality, COUNT(Nationality) FROM swimmer GROUP BY Nationality ORDER BY COUNT(Nationality) DESC |
What is the FCC info of the w214ba call sign with a frequency below 96.3? | CREATE TABLE table_name_64 (fcc_info VARCHAR,frequency_mhz VARCHAR,call_sign VARCHAR) | SELECT fcc_info FROM table_name_64 WHERE frequency_mhz < 96.3 AND call_sign = "w214ba" |
what is date of birth and death status of subject name dominga garvin? | 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 demographic.dob, demographic.expire_flag FROM demographic WHERE demographic.name = "Dominga Garvin" |
what was the average rdw value for patient 58932? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE d_icd_procedures (row_id number,icd9_code text,short_title text... | SELECT AVG(labevents.valuenum) FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 58932) AND labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'rdw') |
For those products with a price between 60 and 120, draw a scatter chart about the correlation between code and manufacturer . | CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER) | SELECT Code, Manufacturer FROM Products WHERE Price BETWEEN 60 AND 120 |
tell me the maximum age of patients who are widowed and have medicare insurance. | 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 prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd t... | SELECT MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "WIDOWED" AND demographic.insurance = "Medicare" |
calculate the total number of patients admitted to emergency with major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior | 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admission_type = "EMERGENCY" AND diagnoses.long_title = "Major depressive affective disorder, recurrent episode, severe, specified as with psychotic behavior" |
which was the only polling firm to show more than 50 percent in favor of same sex marriage in 2006 ? | CREATE TABLE table_203_43 (id number,"polling firm" text,"month" text,"link" text,"favor" number,"oppose" number) | SELECT "polling firm" FROM table_203_43 WHERE "favor" > 50 AND "month" = 2006 |
how many patients are diagnosed with icd9code 78820 and have lab test results showing abnormal status delta? | 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 lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid ... | 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 = "78820" AND lab.flag = "delta" |
What is the goal top with caps of 38 and an average less than 0.579? | CREATE TABLE table_54659 ("Name" text,"Scotland career" text,"Caps" real,"Goals" real,"Average" real) | SELECT MAX("Goals") FROM table_54659 WHERE "Caps" = '38' AND "Average" < '0.579' |
What is the team when the date of appointment is 23 march 2011? | CREATE TABLE table_29142 ("Team" text,"Outgoing manager" text,"Manner of departure" text,"Date of vacancy" text,"Incoming manager" text,"Date of appointment" text,"Position in Table" text) | SELECT "Team" FROM table_29142 WHERE "Date of appointment" = '23 March 2011' |
What was the 2nd leg where the team 2 was budoni (sardinia)? | CREATE TABLE table_name_4 (team_2 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_4 WHERE team_2 = "budoni (sardinia)" |
Which Type has a Responsible of stavangerske? | CREATE TABLE table_13285 ("Vessel:" text,"Type:" text,"Built:" real,"Owned since:" real,"Responsible:" text,"Status:" text) | SELECT "Type:" FROM table_13285 WHERE "Responsible:" = 'stavangerske' |
is patient 006-2586's level of heartrate second measured on the current icu visit less than it was first measured on the current icu visit? | 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 (SELECT vitalperiodic.heartrate FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-2586') AND patient.unitdischargetime IS NULL)... |
What is the Score 1 of Tie no 6? | CREATE TABLE table_61880 ("Tie no" text,"Home team" text,"Score 1" text,"Away team" text,"Attendance" text) | SELECT "Score 1" FROM table_61880 WHERE "Tie no" = '6' |
For those employees whose salary is in the range of 8000 and 12000 and commission is not null or department number does not equal to 40, return a line chart about the change of manager_id over hire_date , and show from low to high by the HIRE_DATE. | CREATE TABLE jobs (JOB_ID varchar(10),JOB_TITLE varchar(35),MIN_SALARY decimal(6,0),MAX_SALARY decimal(6,0))CREATE TABLE job_history (EMPLOYEE_ID decimal(6,0),START_DATE date,END_DATE date,JOB_ID varchar(10),DEPARTMENT_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CO... | SELECT HIRE_DATE, MANAGER_ID FROM employees WHERE SALARY BETWEEN 8000 AND 12000 AND COMMISSION_PCT <> "null" OR DEPARTMENT_ID <> 40 ORDER BY HIRE_DATE |
What is the Overall of the pick less than 20? | CREATE TABLE table_62296 ("Round" real,"Pick #" real,"Overall" real,"Name" text,"Position" text,"College" text) | SELECT "Overall" FROM table_62296 WHERE "Pick #" < '20' |
What are that status(es) of saint-jacques? | CREATE TABLE table_21373 ("Official Name" text,"Status" text,"Area km 2" text,"Population" real,"Census Ranking" text) | SELECT "Status" FROM table_21373 WHERE "Official Name" = 'Saint-Jacques' |
Upvotes from users with reputation 101. | CREATE TABLE Users (Id number,Reputation number,CreationDate time,DisplayName text,LastAccessDate time,WebsiteUrl text,Location text,AboutMe text,Views number,UpVotes number,DownVotes number,ProfileImageUrl text,EmailHash text,AccountId number)CREATE TABLE PostLinks (Id number,CreationDate time,PostId number,RelatedPos... | SELECT Users.Id AS "user_link", UpVotes, CreationDate, LastAccessDate FROM Users WHERE (Reputation < 102) AND (UpVotes > 0) ORDER BY UpVotes DESC |
What is the Netflix number having a segment of C of pills? | CREATE TABLE table_75289 ("Series Ep." text,"Episode" real,"Netflix" text,"Segment A" text,"Segment B" text,"Segment C" text,"Segment D" text) | SELECT "Netflix" FROM table_75289 WHERE "Segment C" = 'pills' |
what is the number of patients whose insurance is private and diagnoses icd9 code is 58089? | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.insurance = "Private" AND diagnoses.icd9_code = "58089" |
I want the site for september 29, 2013 | CREATE TABLE table_name_51 (site VARCHAR,date VARCHAR) | SELECT site FROM table_name_51 WHERE date = "september 29, 2013" |
Top badge holders compared to reputation. Find users with the highest badge score compared to reputation. Badge score is calculated as:
Score = gold weight * no. gold badges + silver weight * no. silver badges + bronze weight + no. bronze badges | CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,ContentLicense text)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostNoticeTypes (Id number,ClassId number,Name text,B... | SELECT u.Id, u.Reputation, CAST(SUM(CASE b.Class WHEN @GoldClass THEN 1 WHEN @SilverClass THEN 0 WHEN @BronzeClass THEN 0 ELSE 0 END) / CAST(u.Reputation AS FLOAT(10, 2)) AS FLOAT(5, 5)) AS "RATIO", SUM(CASE b.Class WHEN @GoldClass THEN 1 ELSE 0 END) AS "Gold badges" FROM Users AS u INNER JOIN Badges AS b ON u.Id = b.U... |
Which City has mandalay bay resort | CREATE TABLE table_70009 ("Date" text,"City" text,"Country" text,"Venue" text,"Attendance" text) | SELECT "City" FROM table_70009 WHERE "Venue" = 'mandalay bay resort' |
what are the four most frequent specimen tests that patients had within 2 months after having been diagnosed with hypoxemia until 3 years ago? | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstay... | 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 = 'hypoxemia' AND DATETIME(diagnosis.diagnosist... |
Which opponent has a 26-12 record? | CREATE TABLE table_64760 ("Game" text,"Date" text,"Opponent" text,"Score" text,"Location Attendance" text,"Record" text) | SELECT "Opponent" FROM table_64760 WHERE "Record" = '26-12' |
What is the census ranking of the Perth parish? | CREATE TABLE table_1746 ("Official Name" text,"Status" text,"Area km 2" text,"Population" real,"Census Ranking" text) | SELECT "Census Ranking" FROM table_1746 WHERE "Official Name" = 'Perth' |
Name the total number of nicknames for andrew college | CREATE TABLE table_16734640_1 (nickname VARCHAR,institution VARCHAR) | SELECT COUNT(nickname) FROM table_16734640_1 WHERE institution = "Andrew College" |
What is the id and last name of the driver with the longest laptime? | CREATE TABLE qualifying (qualifyid number,raceid number,driverid number,constructorid number,number number,position number,q1 text,q2 text,q3 text)CREATE TABLE constructors (constructorid number,constructorref text,name text,nationality text,url text)CREATE TABLE constructorresults (constructorresultsid number,raceid n... | SELECT T1.driverid, T1.surname FROM drivers AS T1 JOIN laptimes AS T2 ON T1.driverid = T2.driverid ORDER BY T2.milliseconds DESC LIMIT 1 |
Who is the female talent in 1999? | CREATE TABLE table_42476 ("Year" real,"Winner (Male)" text,"Winner (Female)" text,"Talent (Male)" text,"Talent (Female)" text) | SELECT "Talent (Female)" FROM table_42476 WHERE "Year" = '1999' |
What was the attendance at the Billericay Town home game? | CREATE TABLE table_name_51 (attendance VARCHAR,home_team VARCHAR) | SELECT attendance FROM table_name_51 WHERE home_team = "billericay town" |
What is the highest Per Capita Withdrawal (m 3 /p/yr), when Agricultural Use (m 3 /p/yr)(in %) is 1363(92%), and when Total Freshwater Withdrawal (km 3 /yr) is less than 42.7? | CREATE TABLE table_76023 ("Country" text,"Total Freshwater Withdrawal (km 3 /yr)" real,"Per Capita Withdrawal (m 3 /p/yr)" real,"Domestic Use (m 3 /p/yr)(in %)" text,"Industrial Use (m 3 /p/yr)(in %)" text,"Agricultural Use (m 3 /p/yr)(in %)" text) | SELECT MAX("Per Capita Withdrawal (m 3 /p/yr)") FROM table_76023 WHERE "Agricultural Use (m 3 /p/yr)(in %)" = '1363(92%)' AND "Total Freshwater Withdrawal (km 3 /yr)" < '42.7' |
How many states has a 2009 estimate population of 27,3 million? | CREATE TABLE table_70871 ("Name" text,"Population (2009 estimate)" text,"Largest City" text,"Largest Metropolitan Area" text,"Number of States" text) | SELECT "Number of States" FROM table_70871 WHERE "Population (2009 estimate)" = '27,3 million' |
who was the first mayor of austevoll ? | CREATE TABLE table_201_10 (id number,"#" number,"name" text,"office" text,"political party" text,"occupation" text) | SELECT "name" FROM table_201_10 ORDER BY "office" LIMIT 1 |
After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23? | CREATE TABLE table_71420 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Points" real) | SELECT "Entrant" FROM table_71420 WHERE "Year" > '1961' AND "Engine" = 'ferrari v8' AND "Points" < '23' |
what were the five most frequently taken lab tests since 2100 in patients of age 40s? | CREATE TABLE procedures_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE ... | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t1.itemid FROM (SELECT labevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age BETWEEN 40 AND 49) AND STRFTIME('%y', labevents.c... |
How many games were played when the record was 26-21? | CREATE TABLE table_72459 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT COUNT("Game") FROM table_72459 WHERE "Record" = '26-21' |
what are the top three most common diagnoses that patients have had within the same month after receiving vasopressors - phenylephrine (neosynephrine) since 2105. | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiasto... | SELECT t3.diagnosisname FROM (SELECT t2.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'vasopressors - phenylephrine (neosynephr... |
how much clonazepam was last prescribed in the last hospital visit to patient 88404? | 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,language text,marital_status text,ethnicity text,age number)CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,... | SELECT prescriptions.dose_val_rx FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 88404 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1) AND prescriptions.drug = 'clonazepam' ORDER BY prescriptions.startdate DESC L... |
the papers on semantic parsing by li dong at acl in 2016 | CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE venue (venueid int,venuename varchar)CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE dataset (datasetid int,datasetname varchar)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE paperkeyphrase (paperid int,keyphraseid int... | SELECT DISTINCT paper.paperid FROM author, keyphrase, paper, paperkeyphrase, venue, writes WHERE author.authorname = 'li dong' AND keyphrase.keyphrasename = 'semantic parsing' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid AND paper.year = 2016 AND venue.venueid = pape... |
Tell me the displacement for 1935-45 | CREATE TABLE table_name_63 (displacement VARCHAR,year VARCHAR) | SELECT displacement FROM table_name_63 WHERE year = "1935-45" |
In what division was there a population density in km2 of 4,491.8 in 2011? | CREATE TABLE table_26499 ("Administrative division" text,"Area (km\u00b2) 2011**" text,"Population 2001 Census (Adjusted)" real,"Population 2011 Census (Adjusted)" real,"Population density (/km\u00b2 2011)" text) | SELECT "Administrative division" FROM table_26499 WHERE "Population density (/km\u00b2 2011)" = '4,491.8' |
specify the time of admission of patient id 29961 | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ... | SELECT demographic.admittime FROM demographic WHERE demographic.subject_id = "29961" |
How many different items were reviewed by some users? | CREATE TABLE review (i_id VARCHAR) | SELECT COUNT(DISTINCT i_id) FROM review |
How many units were sold in the US of the game that sold 346,000 units in japan? | CREATE TABLE table_31689 ("Place" real,"Title" text,"Units sold in Japan" text,"Units sold in the UK" text,"Units sold in the US" text,"Total units sold" real) | SELECT "Units sold in the US" FROM table_31689 WHERE "Units sold in Japan" = '346,000' |
what's the night rank with rating of 6.2 | CREATE TABLE table_11354111_3 (night_rank VARCHAR,rating VARCHAR) | SELECT night_rank FROM table_11354111_3 WHERE rating = "6.2" |
Who was the Opponent when the Save was || 36,388 ||15-7||? | CREATE TABLE table_name_26 (opponent VARCHAR,save VARCHAR) | SELECT opponent FROM table_name_26 WHERE save = "|| 36,388 ||15-7||" |
Who earned the save in the game against the Sinon Bulls when Jeriome Robertson took the loss? | CREATE TABLE table_name_32 (save VARCHAR,opponent VARCHAR,loss VARCHAR) | SELECT save FROM table_name_32 WHERE opponent = "sinon bulls" AND loss = "jeriome robertson" |
give me the number of patients whose ethnicity is unknown/not specified and diagnoses long title is mitral valve insufficiency and aortic valve insufficiency? | 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.ethnicity = "UNKNOWN/NOT SPECIFIED" AND diagnoses.long_title = "Mitral valve insufficiency and aortic valve insufficiency" |
what is the total years on the chart | CREATE TABLE table_204_620 (id number,"title" text,"year" number,"language" text,"role" text,"notes" text) | SELECT COUNT(DISTINCT "year") FROM table_204_620 |
How many gp-gs have 121.70 as an effic and an avg/g less than 218.7? | CREATE TABLE table_name_41 (gp_gs VARCHAR,effic VARCHAR,avg_g VARCHAR) | SELECT COUNT(gp_gs) FROM table_name_41 WHERE effic = "121.70" AND avg_g < 218.7 |
Name the number of party for richard l. hanna (r) 53.1% mike arcuri (d) 46.9% | CREATE TABLE table_73135 ("District" text,"Incumbent" text,"Party" text,"First elected" real,"Result" text,"Candidates" text) | SELECT COUNT("Party") FROM table_73135 WHERE "Candidates" = 'Richard L. Hanna (R) 53.1% Mike Arcuri (D) 46.9%' |
which school had the largest enrollment ? | CREATE TABLE table_203_721 (id number,"school" text,"location" text,"control" text,"type" text,"enrollment" number,"founded" number) | SELECT "school" FROM table_203_721 ORDER BY "enrollment" DESC LIMIT 1 |
Please tell me the total star ratings of each movie title using a bar chart. | CREATE TABLE Rating (rID int,mID int,stars int,ratingDate date)CREATE TABLE Movie (mID int,title text,year int,director text)CREATE TABLE Reviewer (rID int,name text) | SELECT title, SUM(stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY title |
Which year had a team of Aprilia and a rank of 4th? | CREATE TABLE table_75227 ("Year" real,"Class" text,"Team" text,"Machine" text,"Points" real,"Rank" text,"Wins" real) | SELECT "Year" FROM table_75227 WHERE "Team" = 'aprilia' AND "Rank" = '4th' |
Which City has a Date of june 9, 1976? | CREATE TABLE table_37480 ("Date" text,"City" text,"Result" text,"Score" text,"Competition" text) | SELECT "City" FROM table_37480 WHERE "Date" = 'june 9, 1976' |
give me the number of patients whose insurance is self pay and diagnoses long title is other disorders of the pituitary and other syndromes of diencephalohypophyseal origin? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marita... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.insurance = "Self Pay" AND diagnoses.long_title = "Other disorders of the pituitary and other syndromes of diencephalohypophyseal origin" |
What is the number of 2011 populations having a 2002 population of 29449? | CREATE TABLE table_2562572_2 (population__2011_ VARCHAR,population__2002_ VARCHAR) | SELECT COUNT(population__2011_) FROM table_2562572_2 WHERE population__2002_ = 29449 |
What is the name of the episode that Richard Thorpe directed? | CREATE TABLE table_535 ("Series #" real,"Season #" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text) | SELECT "Title" FROM table_535 WHERE "Directed by" = 'Richard Thorpe' |
What was the result of the week that was a bye before week 6? | CREATE TABLE table_8664 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Record" text,"Game site" text) | SELECT "Result" FROM table_8664 WHERE "Week" < '6' AND "Game site" = 'bye' |
Who was the discoverer of the object with an Aphelion above 97 in 2004? | CREATE TABLE table_name_41 (discoverer_s_ VARCHAR,aphelion__au_ VARCHAR,year_discovered VARCHAR) | SELECT discoverer_s_ FROM table_name_41 WHERE aphelion__au_ > 97 AND year_discovered = 2004 |
What was the score of the match played against away team Arsenal? | CREATE TABLE table_name_96 (score VARCHAR,away_team VARCHAR) | SELECT score FROM table_name_96 WHERE away_team = "arsenal" |
Show all countries and the number of people from each country with a bar chart, rank bar in asc order. | CREATE TABLE wedding (Church_ID int,Male_ID int,Female_ID int,Year int)CREATE TABLE church (Church_ID int,Name text,Organized_by text,Open_Date int,Continuation_of text)CREATE TABLE people (People_ID int,Name text,Country text,Is_Male text,Age int) | SELECT Country, COUNT(*) FROM people GROUP BY Country ORDER BY Country |
title of the episode that came before the one directed by bob balaban | CREATE TABLE table_204_981 (id number,"ep#" number,"title" text,"broadcast date" text,"written by" text,"directed by" text) | SELECT "title" FROM table_204_981 WHERE "ep#" = (SELECT "ep#" FROM table_204_981 WHERE "directed by" = 'bob balaban') - 1 |
did patient 162 get tested in the po2 lab in 04/last year? | CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)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 tex... | SELECT COUNT(*) > 0 FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'po2') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 162) AND DATETIME(labevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'sta... |
What's the Bulgarian word for september? | CREATE TABLE table_6468 ("English name" text,"Bulgarian name" text,"Bulgarian name (Transliteration)" text,"Old Bulgarian Names" text,"Old Bulgarian name (Transliteration)" text,"Old Bulgarian name - Meaning" text) | SELECT "Bulgarian name" FROM table_6468 WHERE "English name" = 'september' |
Search all the question post by tag name. | CREATE TABLE PostsWithDeleted (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,Ta... | SELECT * FROM Posts JOIN PostTags ON PostTags.PostId = Posts.Id JOIN Tags ON Tags.Id = PostTags.TagId WHERE Tags.TagName LIKE 'refactoring' OR Tags.TagName LIKE 'design-patterns' OR Tags.TagName LIKE 'anti-patterns' OR Tags.TagName LIKE 'code-cleanup' OR Tags.TagName LIKE 'architecture' OR Tags.TagName LIKE 'software-d... |
What venue hosted the 2003 event? | CREATE TABLE table_name_91 (venue VARCHAR,year VARCHAR) | SELECT venue FROM table_name_91 WHERE year = 2003 |
Return a histogram on what is the code of each role and the number of employees in each role?, and show in ascending by the Y-axis please. | CREATE TABLE Documents_to_be_Destroyed (Document_ID INTEGER,Destruction_Authorised_by_Employee_ID INTEGER,Destroyed_by_Employee_ID INTEGER,Planned_Destruction_Date DATETIME,Actual_Destruction_Date DATETIME,Other_Details VARCHAR(255))CREATE TABLE Roles (Role_Code CHAR(15),Role_Name VARCHAR(255),Role_Description VARCHAR(... | SELECT Role_Code, COUNT(*) FROM Employees GROUP BY Role_Code ORDER BY COUNT(*) |
Name the high assists for december 9 | CREATE TABLE table_25227 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Record" text) | SELECT "High assists" FROM table_25227 WHERE "Date" = 'December 9' |
What was the ticket price on September 16, 1986? | CREATE TABLE table_name_56 (ticket_price_s_ VARCHAR,date_s_ VARCHAR) | SELECT ticket_price_s_ FROM table_name_56 WHERE date_s_ = "september 16, 1986" |
Bizarre question stats by Tag. | CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,W... | WITH TaggedPosts(PostId) AS (SELECT pt.PostId AS PostId FROM PostTags AS pt INNER JOIN Tags AS t ON t.Id = pt.TagId WHERE t.TagName LIKE '%' + '##tag:string##' + '%' GROUP BY pt.PostId) SELECT Id AS "post_link", * FROM Posts WHERE Id IN (SELECT PostId FROM TaggedPosts) AND PostTypeId = 1 AND AnswerCount = 0 AND NOT Acc... |
what is the earliest flight between PITTSBURGH and DENVER that serves BREAKFAST | CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE fare_basis (fare_basis_code text,booking_class text,class_type text,premium text,economy text,discounted text,night text,season text,basis_days text)CREATE TABLE equipment_sequence (aircraft_code_sequence varchar,aircraft_code varchar)CREATE TABLE aircr... | 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, food_service WHERE ((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DENVER' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code AND food_se... |
what is the total amount of per iv flush: upper arm l 20 gauge that patient 017-30730 had received? | CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname... | SELECT SUM(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 = '017-30730')) AND intakeoutput.celllabel = 'per i... |
Which Score has a To par of +1 in sweden? | CREATE TABLE table_63612 ("Place" text,"Player" text,"Country" text,"Score" text,"To par" text,"Money (\u00a3)" text) | SELECT "Score" FROM table_63612 WHERE "To par" = '+1' AND "Country" = 'sweden' |
Draw a bar chart of operating system versus the total number, list from low to high by the X-axis. | CREATE TABLE accelerator_compatible_browser (accelerator_id int,browser_id int,compatible_since_year int)CREATE TABLE Web_client_accelerator (id int,name text,Operating_system text,Client text,Connection text)CREATE TABLE browser (id int,name text,market_share real) | SELECT Operating_system, COUNT(*) FROM Web_client_accelerator GROUP BY Operating_system ORDER BY Operating_system |
What is the total of the points for wins under 6 and a rank of 2nd? | CREATE TABLE table_name_59 (points INTEGER,rank VARCHAR,wins VARCHAR) | SELECT SUM(points) FROM table_name_59 WHERE rank = "2nd" AND wins < 6 |
Name the dominant religion 2002 for village banatski despotovac | CREATE TABLE table_3335 ("Settlement" text,"Cyrillic Name Other Names" text,"Type" text,"Population (2011)" real,"Largest ethnic group (2002)" text,"Dominant religion (2002)" text) | SELECT "Dominant religion (2002)" FROM table_3335 WHERE "Type" = 'village' AND "Settlement" = 'Banatski Despotovac' |
What position did team scandia finish when their engine was cosworth? | CREATE TABLE table_71284 ("Year" real,"Chassis" text,"Engine" text,"Start" text,"Finish" text,"Team" text) | SELECT "Finish" FROM table_71284 WHERE "Engine" = 'cosworth' AND "Team" = 'team scandia' |
How many age figures for the player fired in week 6? | CREATE TABLE table_26890 ("Candidate" text,"Background" text,"Original team" text,"Age" real,"Hometown" text,"Result" text) | SELECT COUNT("Age") FROM table_26890 WHERE "Result" = 'Fired in week 6' |
What's the ijekavian translation of the ikavian word grijati? | CREATE TABLE table_27730_9 (ijekavian VARCHAR,ikavian VARCHAR) | SELECT ijekavian FROM table_27730_9 WHERE ikavian = "grijati" |
What is the Record for a game less than 3 and the score was l 91 96 (ot)? | CREATE TABLE table_name_19 (record VARCHAR,game VARCHAR,score VARCHAR) | SELECT record FROM table_name_19 WHERE game < 3 AND score = "l 91–96 (ot)" |
Which Score has a Record of 5-4? | CREATE TABLE table_9283 ("Date" text,"Opponent" text,"Score" text,"Result" text,"Record" text) | SELECT "Score" FROM table_9283 WHERE "Record" = '5-4' |
Top Users by Tag and Location. | CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostFeedback (Id number,PostId number,IsAnonymous boolean,VoteTypeId number,CreationDate time)CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE Comments (Id number,PostId number,Score number,Text text,CreationDate time,UserDisplayName text,UserId number,Co... | SELECT u.Id AS "user_link", u.Location, COUNT(a.Id) AS xCount, SUM(a.Score) AS xSum FROM Posts AS a JOIN Posts AS q ON a.ParentId = q.Id JOIN Users AS u ON a.OwnerUserId = u.Id WHERE a.PostTypeId = '2' AND (@Empty = 0 OR u.Location IS NULL) AND (@Empty = 0 OR u.Location = '') AND LOWER(u.Location) LIKE '%' + @Location ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.