instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
what is the b side on the only non album single ? | CREATE TABLE table_204_689 (id number,"year" number,"title" text,"album" text,"uk" number,"b-sides" text) | SELECT "b-sides" FROM table_204_689 WHERE "album" = 'non-album single' |
what's the first weight of patient 031-21970 in their last hospital encounter? | CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (... | SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-21970' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospitaladmittime DESC LIMIT 1) AND NOT patient.admissionweight IS NULL ORDER... |
Which Model has a Number of CPUs of 1 10, and a Performance (MIPS) of 49 447? | CREATE TABLE table_66345 ("Model" text,"Year Introduced" real,"Number of CPUs" text,"Performance (MIPS)" text,"Memory (GB)" text) | SELECT "Model" FROM table_66345 WHERE "Number of CPUs" = '1–10' AND "Performance (MIPS)" = '49–447' |
What is listed for the Elevator, that also has the Cardinalatial title of Deacon of S. Maria in Portico? | CREATE TABLE table_14247 ("Elector" text,"Place of birth" text,"Cardinalatial title" text,"Elevated" text,"Elevator" text) | SELECT "Elevator" FROM table_14247 WHERE "Cardinalatial title" = 'deacon of s. maria in portico' |
For those employees who did not have any job in the past, show me about the distribution of job_id and the sum of department_id , and group by attribute job_id in a bar chart. | CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAIL varchar(25),PHONE_NUMBER varchar(20),HIRE_DATE date,JOB_ID varchar(10),SALARY decimal(8,2),COMMISSION_PCT decimal(2,2),MANAGER_ID decimal(6,0),DEPARTMENT_ID decimal(4,0))CREATE TABLE countries (COUNTRY_ID varchar(2),COUN... | SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID |
For those employees who was hired before 2002-06-21, return a bar chart about the distribution of job_id and the sum of manager_id , and group by attribute job_id. | 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 countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAI... | SELECT JOB_ID, SUM(MANAGER_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID |
That 515 exactly how big is it ? | CREATE TABLE requirement (requirement_id int,requirement varchar,college varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE student (student_id int,lastname varchar,firstname varchar,program_id int,declare_major varchar,total_credit int,total_gpa float,en... | SELECT DISTINCT num_enrolled FROM course WHERE department = 'EECS' AND number = 515 |
Which College did the Buffalo Sabres' pick play for? | CREATE TABLE table_2101 ("Pick #" real,"Player" text,"Position" text,"Nationality" text,"NHL team" text,"College/junior/club team" text) | SELECT "College/junior/club team" FROM table_2101 WHERE "NHL team" = 'Buffalo Sabres' |
In what week was November 27, 1977? | CREATE TABLE table_18033 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Game site" text,"Record" text,"Attendance" real) | SELECT MAX("Week") FROM table_18033 WHERE "Date" = 'November 27, 1977' |
what is the average rating when the air date is november 23, 2007? | CREATE TABLE table_56998 ("Episode" text,"Air date" text,"Rating" real,"Share" real,"18-49 (Rating/Share)" text,"Viewers (m)" real,"Rank (timeslot)" text) | SELECT AVG("Rating") FROM table_56998 WHERE "Air date" = 'november 23, 2007' |
what is the daily maximum gentamicin - random value for patient 006-1629 since 2105? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventi... | SELECT MAX(lab.labresult) FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '006-1629')) AND lab.labname = 'gentamicin - random' AND STRFTIME('%y', lab.labresu... |
count the number of patients whose admission type is emergency and diagnoses long title is unspecified essential hypertension? | 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.admission_type = "EMERGENCY" AND diagnoses.long_title = "Unspecified essential hypertension" |
What is High Points, when Game is less than 10, and when High Assists is 'Chauncey Billups (8)'? | CREATE TABLE table_name_18 (high_points VARCHAR,game VARCHAR,high_assists VARCHAR) | SELECT high_points FROM table_name_18 WHERE game < 10 AND high_assists = "chauncey billups (8)" |
Name the highest year with points more than 0 | CREATE TABLE table_name_90 (year INTEGER,points INTEGER) | SELECT MAX(year) FROM table_name_90 WHERE points > 0 |
How many different levels do members have? | CREATE TABLE member (member_id number,card_number text,name text,hometown text,level number)CREATE TABLE branch (branch_id number,name text,open_year text,address_road text,city text,membership_amount text)CREATE TABLE membership_register_branch (member_id number,branch_id text,register_year text)CREATE TABLE purchase ... | SELECT COUNT(DISTINCT level) FROM member |
out of total number of patients who had a lab test for other cells, calculate the number of divorcees | 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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.marital_status = "DIVORCED" AND lab.label = "Other Cells" |
Who won Bronze with notes of 2.5km, 14controls? | CREATE TABLE table_name_60 (bronze VARCHAR,notes VARCHAR) | SELECT bronze FROM table_name_60 WHERE notes = "2.5km, 14controls" |
what are the percentile of 3.4 in a phosphate lab test given the same age of patient 79348 in their first hospital encounter? | CREATE TABLE prescriptions (row_id number,subject_id number,hadm_id number,startdate time,enddate time,drug text,dose_val_rx text,dose_unit_rx text,route text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wardid nu... | SELECT DISTINCT t1.c1 FROM (SELECT labevents.valuenum, PERCENT_RANK() OVER (ORDER BY labevents.valuenum) AS c1 FROM labevents WHERE labevents.itemid IN (SELECT d_labitems.itemid FROM d_labitems WHERE d_labitems.label = 'phosphate') AND labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.age... |
On what date did Lee Bong-Ju win in 2:10:48? | CREATE TABLE table_78776 ("Edition" text,"Date" text,"Winner" text,"Country" text,"Time (h : m : s)" text) | SELECT "Date" FROM table_78776 WHERE "Time ( h : m : s )" = '2:10:48' AND "Winner" = 'lee bong-ju' |
Which team is the kit manufacturer Umbro, and the captain Gary Mabbutt? | CREATE TABLE table_name_83 (team VARCHAR,kit_manufacturer VARCHAR,captain VARCHAR) | SELECT team FROM table_name_83 WHERE kit_manufacturer = "umbro" AND captain = "gary mabbutt" |
Where did Collingwood play as the home team? | CREATE TABLE table_name_28 (venue VARCHAR,home_team VARCHAR) | SELECT venue FROM table_name_28 WHERE home_team = "collingwood" |
When was the winning score 9 (72-68-64-67=271)? | CREATE TABLE table_name_89 (date VARCHAR,winning_score VARCHAR) | SELECT date FROM table_name_89 WHERE winning_score = −9(72 - 68 - 64 - 67 = 271) |
Which Population has an Altitude (mslm) larger than 98, and a Density (inhabitants/km 2) larger than 5869, and a Rank of 1st? | CREATE TABLE table_75417 ("Rank" text,"City" text,"Population" real,"Area (km 2)" real,"Density (inhabitants/km 2)" real,"Altitude (mslm)" real) | SELECT SUM("Population") FROM table_75417 WHERE "Altitude (mslm)" > '98' AND "Density (inhabitants/km 2 )" > '5869' AND "Rank" = '1st' |
Where are there 25 episodes in Catfights and Brawls? | CREATE TABLE table_191591_5 (region_2 VARCHAR,number_of_episodes VARCHAR,dvd_title VARCHAR) | SELECT region_2 FROM table_191591_5 WHERE number_of_episodes = "25" AND dvd_title = "Catfights and Brawls" |
How many distinct locations have the things with service detail 'Unsatisfied' been located in? | CREATE TABLE customer_events (customer_event_id number,customer_id number,date_moved_in time,property_id number,resident_id number,thing_id number)CREATE TABLE organizations (organization_id number,parent_organization_id number,organization_details text)CREATE TABLE residents (resident_id number,property_id number,date... | SELECT COUNT(DISTINCT T2.location_code) FROM things AS T1 JOIN timed_locations_of_things AS T2 ON T1.thing_id = T2.thing_id WHERE T1.service_details = 'Unsatisfied' |
A bar chart about what are the names and number of hours spent training for each player who trains for less than 1500 hours? | CREATE TABLE College (cName varchar(20),state varchar(2),enr numeric(5,0))CREATE TABLE Tryout (pID numeric(5,0),cName varchar(20),pPos varchar(8),decision varchar(3))CREATE TABLE Player (pID numeric(5,0),pName varchar(20),yCard varchar(3),HS numeric(5,0)) | SELECT pName, HS FROM Player WHERE HS < 1500 |
how many times has patient 003-34282 visited an intensive care unit since 2105? | 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 diagnosis (diagnosi... | SELECT COUNT(DISTINCT patient.patientunitstayid) FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '003-34282') AND STRFTIME('%y', patient.unitadmittime) >= '2105' |
Show the name, average attendance, total attendance for stadiums where no accidents happened. | CREATE TABLE stadium (id number,name text,home_games number,average_attendance number,total_attendance number,capacity_percentage number)CREATE TABLE injury_accident (game_id number,id number,player text,injury text,number_of_matches text,source text)CREATE TABLE game (stadium_id number,id number,season number,date tex... | SELECT name, average_attendance, total_attendance FROM stadium EXCEPT SELECT T2.name, T2.average_attendance, T2.total_attendance FROM game AS T1 JOIN stadium AS T2 ON T1.stadium_id = T2.id JOIN injury_accident AS T3 ON T1.id = T3.game_id |
what is drug code of drug name caphosol? | 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 prescriptions.formulary_drug_cd FROM prescriptions WHERE prescriptions.drug = "Caphosol" |
Name the cuts made for scoring rank is 3 | CREATE TABLE table_1830 ("Year" real,"Tournaments played" real,"Cuts made*" real,"Wins" real,"2nd" real,"3rd" real,"Top 10s" real,"Best finish" text,"Earnings ($)" text,"Money list rank" text,"Scoring average" text,"Scoring rank" text) | SELECT "Cuts made*" FROM table_1830 WHERE "Scoring rank" = '3' |
what was the first time that patient 007-13494 had the minimum value of the systemicsystolic? | CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstayid number,temperature number,sao2 number,heartrate number,respiration number,systemicsystolic number,systemicdiastolic number,systemicmean number,observationtime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid... | SELECT vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '007-13494')) AND NOT vitalperiodic.systemicsystolic... |
A pie chart for finding the number of the first name of students who are living in the Smith Hall. | CREATE TABLE Dorm (dormid INTEGER,dorm_name VARCHAR(20),student_capacity INTEGER,gender VARCHAR(1))CREATE TABLE Has_amenity (dormid INTEGER,amenid INTEGER)CREATE TABLE Dorm_amenity (amenid INTEGER,amenity_name VARCHAR(25))CREATE TABLE Lives_in (stuid INTEGER,dormid INTEGER,room_number INTEGER)CREATE TABLE Student (StuI... | SELECT Fname, COUNT(Fname) FROM Student AS T1 JOIN Lives_in AS T2 ON T1.stuid = T2.stuid JOIN Dorm AS T3 ON T3.dormid = T2.dormid WHERE T3.dorm_name = 'Smith Hall' GROUP BY Fname |
What is the sum of the appearances at the league cup for the defender who had less than 10 appearances at the UEFA cup? | CREATE TABLE table_name_29 (league_cup INTEGER,position VARCHAR,UEfa_cup VARCHAR) | SELECT SUM(league_cup) FROM table_name_29 WHERE position = "defender" AND UEfa_cup < 10 |
What is the 1999 answer when 1998 is Grand Slam Tournaments? | CREATE TABLE table_7930 ("Tournament" text,"1998" text,"1999" text,"2000" text,"2001" text,"2002" text,"2003" text,"2004" text,"2005" text,"2006" text,"2007" text,"2008" text,"2009" text,"2010" text,"2011" text,"2012" text) | SELECT "1999" FROM table_7930 WHERE "1998" = 'grand slam tournaments' |
When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? | CREATE TABLE table_12496904_1 (_2012 VARCHAR,rank_in_nyagatare_sectors INTEGER,population_change_2002_2012___percentage_ VARCHAR) | SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "35.5" |
Unanswered unremarkable posts by low-reputation users. | CREATE TABLE ReviewRejectionReasons (Id number,Name text,Description text,PostTypeId number)CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE CloseReasonTypes (Id number,Name text,Description text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,Use... | SELECT p.CreationDate, p.AnswerCount, p.Id AS "post_link" FROM Posts AS p INNER JOIN Users AS u ON p.OwnerUserId = u.Id WHERE (p.PostTypeId = 1 AND u.Reputation <= '##ReputationLimit##' AND LENGTH(p.Body) <= '##LengthLimit##' AND p.ClosedDate IS NULL AND p.Score = 0 AND p.AnswerCount = 0) ORDER BY p.CreationDate DESC |
what is the number of patients whose death status is 1 and drug name is propafenone hcl? | 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 demographic.expire_flag = "1" AND prescriptions.drug = "Propafenone HCl" |
Show the number of stations installed change over the installation date of in station table using a line chart. | CREATE TABLE status (station_id INTEGER,bikes_available INTEGER,docks_available INTEGER,time TEXT)CREATE TABLE weather (date TEXT,max_temperature_f INTEGER,mean_temperature_f INTEGER,min_temperature_f INTEGER,max_dew_point_f INTEGER,mean_dew_point_f INTEGER,min_dew_point_f INTEGER,max_humidity INTEGER,mean_humidity INT... | SELECT installation_date, COUNT(installation_date) FROM station GROUP BY installation_date |
What is the mark for the runner from Mozambique? | CREATE TABLE table_50992 ("Heat" real,"Lane" real,"Name" text,"Country" text,"Mark" text) | SELECT "Mark" FROM table_50992 WHERE "Country" = 'mozambique' |
What is the total points with less than 5 games? | CREATE TABLE table_name_28 (points VARCHAR,games INTEGER) | SELECT COUNT(points) FROM table_name_28 WHERE games < 5 |
What was the location and attendance for game 60? | CREATE TABLE table_17121262_9 (location_attendance VARCHAR,game VARCHAR) | SELECT location_attendance FROM table_17121262_9 WHERE game = 60 |
What is the Chinese name of the player in Index F10? | CREATE TABLE table_name_73 (Chinese VARCHAR,index VARCHAR) | SELECT Chinese AS name FROM table_name_73 WHERE index = "f10" |
What is the county for the Irish name Carna? | CREATE TABLE table_15930 ("County" text,"English name" text,"Irish name" text,"Population" real,"Irish speakers" text) | SELECT "County" FROM table_15930 WHERE "Irish name" = 'Carna' |
Which constructor has 10-12 rounds and a M7A chassis? | CREATE TABLE table_name_40 (constructor VARCHAR,rounds VARCHAR,chassis VARCHAR) | SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a" |
which song has the most downloads ? | CREATE TABLE table_204_420 (id number,"month" text,"song" text,"artist" text,"aggregate points" number,"total downloads" number,"year-end chart" number) | SELECT "song" FROM table_204_420 ORDER BY "total downloads" DESC LIMIT 1 |
What is the Attendance of the game against the Florida Panthers? | CREATE TABLE table_name_8 (attendance INTEGER,opponent VARCHAR) | SELECT SUM(attendance) FROM table_name_8 WHERE opponent = "florida panthers" |
baseline hgb below the lower limits of normal at the local laboratory; lymphopenia ( < 1000 / l ) , neutropenia ( < 1500 / l ) , or thrombocytopenia ( platelets < 100000 / l ) . | CREATE TABLE table_dev_40 ("id" int,"tc" int,"ldl_cholesterol" int,"systolic_blood_pressure_sbp" int,"untreated_hyperlipidemia" bool,"hemoglobin_a1c_hba1c" float,"platelets" int,"neutropenia" int,"thrombocytopenia" float,"diastolic_blood_pressure_dbp" int,"tgc" int,"lymphopenia" int,"insulin_requirement" float,"ldl" in... | SELECT * FROM table_dev_40 WHERE lymphopenia < 1000 AND neutropenia < 1500 OR thrombocytopenia = 1 OR platelets < 100000 |
How many world rankings are after Aug 5, 1980 ? | CREATE TABLE table_34518 ("Year" real,"Performance" text,"World Ranking" real,"Venue" text,"Date" text) | SELECT SUM("World Ranking") FROM table_34518 WHERE "Date" = 'aug 5' AND "Year" > '1980' |
Name the season outcome for smyrna | CREATE TABLE table_name_89 (season_outcome VARCHAR,school VARCHAR) | SELECT season_outcome FROM table_name_89 WHERE school = "smyrna" |
What was the date of the game that had a loss of Reed (0 2)? | CREATE TABLE table_67749 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Attendance" real,"Record" text,"Stadium" text) | SELECT "Date" FROM table_67749 WHERE "Loss" = 'reed (0–2)' |
What episode in the season was episode us17 in the series? | CREATE TABLE table_23397 ("No. in series" text,"No. in season" real,"Family/families" text,"Location(s)" text,"Original air date" text) | SELECT COUNT("No. in season") FROM table_23397 WHERE "No. in series" = 'US17' |
give me the number of patients whose primary disease is coronary artery disease\coronary artery bypass graft; myomectomy/sda and lab test fluid is pleural? | 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 lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.diagnosis = "CORONARY ARTERY DISEASE\CORONARY ARTERY BYPASS GRAFT; MYOMECTOMY/SDA" AND lab.fluid = "Pleural" |
when was last time patient 027-165214 was measured with a systemicmean less than 112.0 during the previous day? | 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 vitalperiodic.observationtime FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-165214')) AND vitalperiodic.systemicmean < 112.... |
How many million U.S. viewers wtched episode 69 of the series? | CREATE TABLE table_30021 ("Series #" real,"Episode #" text,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"U.S. viewers (millions)" text) | SELECT "U.S. viewers (millions)" FROM table_30021 WHERE "Series #" = '69' |
what is the number of patients whose gender is f and ethnicity is american indian/alaska native? | 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 lab (subject_id text,hadm_id text,itemid text,charttime te... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "F" AND demographic.ethnicity = "AMERICAN INDIAN/ALASKA NATIVE" |
What is Title, when Season is less than 1.8, and when First Broadcast is March 6, 1981? | CREATE TABLE table_name_2 (title VARCHAR,season VARCHAR,first_broadcast VARCHAR) | SELECT title FROM table_name_2 WHERE season < 1.8 AND first_broadcast = "march 6, 1981" |
What Notes after 1983 have a Position of 18th? | CREATE TABLE table_36008 ("Year" real,"Competition" text,"Venue" text,"Position" text,"Notes" text) | SELECT "Notes" FROM table_36008 WHERE "Year" > '1983' AND "Position" = '18th' |
Which Friendly has a 3 March of 17 november? | CREATE TABLE table_6688 ("207." real,"3 March" text,"Friendly" text,"Belgium" text,"Croatia" text) | SELECT "Friendly" FROM table_6688 WHERE "3 March" = '17 november' |
how many days has it been since patient 027-188709 stayed for the first time during their current hospital visit in ward 961? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,... | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', patient.unitadmittime)) FROM patient WHERE patient.uniquepid = '027-188709' AND patient.wardid = 961 AND patient.hospitaldischargetime IS NULL ORDER BY patient.unitadmittime LIMIT 1 |
Draw a bar chart of investor versus the total number | CREATE TABLE entrepreneur (Entrepreneur_ID int,People_ID int,Company text,Money_Requested real,Investor text)CREATE TABLE people (People_ID int,Name text,Height real,Weight real,Date_of_Birth text) | SELECT Investor, COUNT(*) FROM entrepreneur GROUP BY Investor |
Find the number of courses provided in each year with a group line chart that groups by semester, and I want to sort in asc by the X. | CREATE TABLE section (course_id varchar(8),sec_id varchar(8),semester varchar(6),year numeric(4,0),building varchar(15),room_number varchar(7),time_slot_id varchar(4))CREATE TABLE department (dept_name varchar(20),building varchar(15),budget numeric(12,2))CREATE TABLE takes (ID varchar(5),course_id varchar(8),sec_id va... | SELECT year, COUNT(*) FROM section GROUP BY semester, year ORDER BY year |
What were property taxes in a year when total revenue was $40,891,700 after 2002? | CREATE TABLE table_name_33 (property_taxes VARCHAR,year VARCHAR,total_revenue VARCHAR) | SELECT property_taxes FROM table_name_33 WHERE year > 2002 AND total_revenue = "$40,891,700" |
How many games in 1885 postseason resulted in ties (that is, the value of 'ties' is '1')? | CREATE TABLE postseason (YEAR VARCHAR,ties VARCHAR) | SELECT COUNT(*) FROM postseason WHERE YEAR = 1885 AND ties = 1 |
Find the number of patients admitted before 2138 who had unspecified schizophrenia and unspecified diagnoses. | 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 diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.admityear < "2138" AND diagnoses.long_title = "Unspecified schizophrenia, unspecified" |
What was the highest number of attendance in a week before 8 and game on October 25, 1981? | CREATE TABLE table_name_25 (attendance INTEGER,date VARCHAR,week VARCHAR) | SELECT MAX(attendance) FROM table_name_25 WHERE date = "october 25, 1981" AND week < 8 |
how many patients less than 56 years have copd exacerbation primary disease? | 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 WHERE demographic.diagnosis = "COPD EXACERBATION" AND demographic.age < "56" |
find the age and location of discharge for patient jerry deberry. | 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 demographic.age, demographic.discharge_location FROM demographic WHERE demographic.name = "Jerry Deberry" |
For those employees who do not work in departments with managers that have ids between 100 and 200, visualize a bar chart about the distribution of last_name and department_id . | 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 countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE employees (EMPLOYEE_ID decimal(6,0),FIRST_NAME varchar(20),LAST_NAME varchar(25),EMAI... | SELECT LAST_NAME, DEPARTMENT_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) |
how many days have elapsed since patient 10855's first senna prescription during their current hospital visit? | CREATE TABLE transfers (row_id number,subject_id number,hadm_id number,icustay_id number,eventtype text,careunit text,wardid number,intime time,outtime time)CREATE TABLE outputevents (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,value number)CREATE TABLE labevents (row_i... | SELECT 1 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', prescriptions.startdate)) FROM prescriptions WHERE prescriptions.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 10855 AND admissions.dischtime IS NULL) AND prescriptions.drug = 'senna' ORDER BY prescriptions.startdate LIMIT... |
Can you tell me the Player that has the Long larger than 28, and the Yards of 222? | CREATE TABLE table_9293 ("Player" text,"Games" real,"Returns" real,"Yards" real,"Long" real,"Yards per return" real) | SELECT "Player" FROM table_9293 WHERE "Long" > '28' AND "Yards" = '222' |
Which League showed 7,975 for an average attendance? | CREATE TABLE table_name_20 (league VARCHAR,attendance_average VARCHAR) | SELECT league FROM table_name_20 WHERE attendance_average = "7,975" |
Who was the athlete with react of 0.185? | CREATE TABLE table_name_79 (athlete VARCHAR,react VARCHAR) | SELECT athlete FROM table_name_79 WHERE react = 0.185 |
give me the number of newborn type admission patients who belong to black/haitian ethnic background. | 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.admission_type = "NEWBORN" AND demographic.ethnicity = "BLACK/HAITIAN" |
what are the flights which depart from SAN FRANCISCO fly to WASHINGTON via INDIANAPOLIS and arrive by 2100 | 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 state (state_code text,stat... | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, airport_service AS AIRPORT_SERVICE_2, city AS CITY_0, city AS CITY_1, city AS CITY_2, flight, flight_stop WHERE ((CITY_2.city_code = AIRPORT_SERVICE_2.city_code AND CITY_2.city_name = 'INDIANAPOLIS' AND fli... |
In what year did a car have a yamaha v12 engine and a brabham bt60y chassis | CREATE TABLE table_name_70 (year VARCHAR,engine VARCHAR,chassis VARCHAR) | SELECT year FROM table_name_70 WHERE engine = "yamaha v12" AND chassis = "brabham bt60y" |
How many gold medals for a nation with rank less than 5, more than 0 silvers and a total of 2 medals? | CREATE TABLE table_46285 ("Rank" real,"Gold" real,"Silver" real,"Bronze" real,"Total" real) | SELECT AVG("Gold") FROM table_46285 WHERE "Rank" < '5' AND "Silver" > '0' AND "Total" = '2' |
What is To Par, when Country is 'United States', when Place is 'T4', and when Player is 'Frank Boynton'? | CREATE TABLE table_76889 ("Place" text,"Player" text,"Country" text,"Score" real,"To par" text) | SELECT "To par" FROM table_76889 WHERE "Country" = 'united states' AND "Place" = 't4' AND "Player" = 'frank boynton' |
what's the first value of the respiration of patient 005-62766 since 920 days ago? | CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,ce... | SELECT vitalperiodic.respiration FROM vitalperiodic WHERE vitalperiodic.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '005-62766')) AND NOT vitalperiodic.respiration IS NULL ... |
What is the maximum game that was played against the New York Knickerbockers? | CREATE TABLE table_name_40 (game INTEGER,opponent VARCHAR) | SELECT MAX(game) FROM table_name_40 WHERE opponent = "new york knickerbockers" |
on the current intensive care unit visit, when patient 20898 got d5w for the first time? | CREATE TABLE d_icd_diagnoses (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 diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,char... | SELECT inputevents_cv.charttime FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 20898) AND icustays.outtime IS NULL) AND inputevents_cv.itemid IN (SELECT d_items.itemid FRO... |
WHICH 2/3 (P) has a Verb of kh la? | CREATE TABLE table_name_76 (verb VARCHAR) | SELECT 2 AS _3__p_ FROM table_name_76 WHERE verb = "khêla" |
drop goals larger than 0, and a Penalties of 52, and a Number larger than 5 had what lowest score? | CREATE TABLE table_name_96 (score INTEGER,number VARCHAR,drop_goals VARCHAR,penalties VARCHAR) | SELECT MIN(score) FROM table_name_96 WHERE drop_goals > 0 AND penalties = 52 AND number > 5 |
How many positions have an against of less than 27, and a played number of less than 8? | CREATE TABLE table_7373 ("Position" real,"Team" text,"Points" real,"Played" real,"Drawn" real,"Lost" real,"Against" real,"Difference" text) | SELECT COUNT("Position") FROM table_7373 WHERE "Against" < '27' AND "Played" < '8' |
what is the number of patients whose days of hospital stay is greater than 1 and diagnoses long title is end stage renal disease? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.days_stay > "1" AND diagnoses.long_title = "End stage renal disease" |
What is the max week where kate and anton are eliminated? | CREATE TABLE table_12305325_4 (week INTEGER,eliminated VARCHAR) | SELECT MAX(week) FROM table_12305325_4 WHERE eliminated = "Kate and Anton" |
What's the season number of the episode titled 'Houseboat'? | CREATE TABLE table_17391 ("No. in series" text,"No. in season" text,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text) | SELECT "No. in season" FROM table_17391 WHERE "Title" = 'Houseboat' |
What is Award, when Result is 'Nominated', and when Film is 'Sankranthi'? | CREATE TABLE table_59283 ("Year" real,"Award" text,"Category" text,"Film" text,"Result" text) | SELECT "Award" FROM table_59283 WHERE "Result" = 'nominated' AND "Film" = 'sankranthi' |
What was the record at the game held on December 24, 2005? | CREATE TABLE table_14547 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Game site" text,"NFL Recap" text,"Record" text,"Attendance" text) | SELECT "Record" FROM table_14547 WHERE "Date" = 'december 24, 2005' |
What is the height in feet of number 10? | CREATE TABLE table_10262 ("Player" text,"No.(s)" text,"Height in Ft." text,"Position" text,"Years for Rockets" text,"School/Club Team/Country" text) | SELECT "Height in Ft." FROM table_10262 WHERE "No.(s)" = '10' |
Find the max gpa of all students in each department with a bar chart, and I want to order by the Y in desc. | CREATE TABLE DEPARTMENT (DEPT_CODE varchar(10),DEPT_NAME varchar(30),SCHOOL_CODE varchar(8),EMP_NUM int,DEPT_ADDRESS varchar(20),DEPT_EXTENSION varchar(4))CREATE TABLE CLASS (CLASS_CODE varchar(5),CRS_CODE varchar(10),CLASS_SECTION varchar(2),CLASS_TIME varchar(20),CLASS_ROOM varchar(8),PROF_NUM int)CREATE TABLE EMPLOY... | SELECT DEPT_CODE, MAX(STU_GPA) FROM STUDENT GROUP BY DEPT_CODE ORDER BY MAX(STU_GPA) DESC |
Which season had a trade with the school/club team La Salle? | CREATE TABLE table_name_5 (season VARCHAR,acquisition_via VARCHAR,school_club_team VARCHAR) | SELECT season FROM table_name_5 WHERE acquisition_via = "trade" AND school_club_team = "la salle" |
Show me about the distribution of meter_200 and the average of ID , and group by attribute meter_200 in a bar chart. | 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 event (ID int,Name text,Stadium_ID int,Year text)CREATE TABLE record (ID int,Result text,Swimmer_ID int,Event_ID int)CREATE TABLE stadiu... | SELECT meter_200, AVG(ID) FROM swimmer GROUP BY meter_200 |
Which Opponent has a Game of 63? | CREATE TABLE table_39011 ("Game" real,"February" real,"Opponent" text,"Score" text,"Record" text,"Points" real) | SELECT "Opponent" FROM table_39011 WHERE "Game" = '63' |
how many games had attendance with at least 10,000 people ? | CREATE TABLE table_203_746 (id number,"date" text,"opponent" text,"score" text,"leading scorer" text,"attendance" number,"record" text) | SELECT COUNT(*) FROM table_203_746 WHERE "attendance" >= 10000 |
Which episode number in season 5 was viewed by 3.00 million U.S. viziers? | CREATE TABLE table_11820086_1 (no_in_season INTEGER,us_viewers__millions_ VARCHAR) | SELECT MIN(no_in_season) FROM table_11820086_1 WHERE us_viewers__millions_ = "3.00" |
Name the administrative county being area of 422372 | CREATE TABLE table_14925084_1 (administrative_county VARCHAR,area_1961__statute_acres_ VARCHAR) | SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372 |
What is the latesr year that has more points than 0? | CREATE TABLE table_15594 ("Year" real,"Entrant" text,"Chassis" text,"Engine" text,"Pts." real) | SELECT MAX("Year") FROM table_15594 WHERE "Pts." > '0' |
How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season? | CREATE TABLE table_name_34 (attendance VARCHAR,season VARCHAR,games VARCHAR,sellouts VARCHAR) | SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12" |
What's the event of Guadeloupe? | CREATE TABLE table_14051 ("Event" text,"Record" text,"Nationality" text,"Date" text,"Games" text) | SELECT "Event" FROM table_14051 WHERE "Nationality" = 'guadeloupe' |
Which Home has an Away of 1 1? | CREATE TABLE table_50024 ("Season" text,"League" text,"Teams" text,"Home" text,"Away" text) | SELECT "Home" FROM table_50024 WHERE "Away" = '1–1' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.