instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
give me the number of patients whose age is less than 80 and drug name is finasteride? | 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 prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.age < "80" AND prescriptions.drug = "Finasteride" |
tell me the number of female patients who had other persistent mental disorders due to conditions classified elsewhere diagnoses. | 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.gender = "F" AND diagnoses.short_title = "Mental disor NEC oth dis" |
What is the name of the writer for issue 224? | CREATE TABLE table_42832 ("Spoofed Title" text,"Actual Title" text,"Writer" text,"Artist" text,"Issue" real,"Date" text) | SELECT "Writer" FROM table_42832 WHERE "Issue" = '224' |
retrieve the top five most common output events since 6 years ago? | 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 intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllab... | SELECT t1.celllabel FROM (SELECT intakeoutput.celllabel, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM intakeoutput WHERE intakeoutput.cellpath LIKE '%output%' AND DATETIME(intakeoutput.intakeoutputtime) >= DATETIME(CURRENT_TIME(), '-6 year') GROUP BY intakeoutput.celllabel) AS t1 WHERE t1.c1 <= 5 |
how many center position players are there ? | CREATE TABLE table_203_824 (id number,"pick #" number,"player" text,"position" text,"nationality" text,"nhl team" text,"college/junior/club team" text) | SELECT COUNT("player") FROM table_203_824 WHERE "position" = 'centre' |
how many patients are with death status 0 and with diagnosis chronic diastolic heart failure? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "0" AND diagnoses.long_title = "Chronic diastolic heart failure" |
How many parties were first elected in 1805? | CREATE TABLE table_28923 ("District" text,"Incumbent" text,"Party" text,"First elected" text,"Result" text,"Candidates" text) | SELECT COUNT("Party") FROM table_28923 WHERE "First elected" = '1805' |
give me the number of patients who had continuous intra-arterial blood gas monitoring and were hospitalized for more than 16 days. | 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.days_stay > "16" AND procedures.long_title = "Continuous intra-arterial blood gas monitoring" |
What was the kickoff date for the round value of R4? | CREATE TABLE table_68348 ("Round" text,"Kick Off" text,"Opponents" text,"H / A" text,"Result" text,"Attendance" real,"Report" text) | SELECT "Kick Off" FROM table_68348 WHERE "Round" = 'r4' |
tell me the sex of patient 006-195541. | CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE patient (uniquepid text,patienthealthsystemsta... | SELECT DISTINCT patient.gender FROM patient WHERE patient.uniquepid = '006-195541' |
Who direcred the episode with production code 7d03? | CREATE TABLE table_27837 ("No. in series" real,"No. in season" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text) | SELECT "Directed by" FROM table_27837 WHERE "Production code" = '7D03' |
how many of the locomotives were built before 1940 ? | CREATE TABLE table_203_332 (id number,"number" text,"year built" number,"builder" text,"status" text,"notes" text) | SELECT COUNT(*) FROM table_203_332 WHERE "year built" < 1940 |
What is Rank Points, when Event is 'WC Milan', and when Shooter is 'Lalita Yauhleuskaya ( AUS )'? | CREATE TABLE table_60176 ("Shooter" text,"Event" text,"Rank points" text,"Score points" text,"Total" text) | SELECT "Rank points" FROM table_60176 WHERE "Event" = 'wc milan' AND "Shooter" = 'lalita yauhleuskaya ( aus )' |
A bar chart for finding the number of the name of the project for which a scientist whose name contains Smith is assigned to, I want to order in asc by the total number. | CREATE TABLE Scientists (SSN int,Name Char(30))CREATE TABLE Projects (Code Char(4),Name Char(50),Hours int)CREATE TABLE AssignedTo (Scientist int,Project char(4)) | SELECT T2.Name, COUNT(T2.Name) FROM AssignedTo AS T1 JOIN Projects AS T2 ON T1.Project = T2.Code JOIN Scientists AS T3 ON T1.Scientist = T3.SSN WHERE T3.Name LIKE '%Smith%' GROUP BY T2.Name ORDER BY COUNT(T2.Name) |
What is the sum of Rank, when Assists is '82'? | CREATE TABLE table_name_21 (rank INTEGER,assists VARCHAR) | SELECT SUM(rank) FROM table_name_21 WHERE assists = 82 |
what is the minimum hospital cost for a drug with a name called albumin 5% since 6 years ago? | CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE vitalperiodic (vitalperiodicid number,patientunitstay... | SELECT MIN(t1.c1) FROM (SELECT SUM(cost.cost) AS c1 FROM cost WHERE cost.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.patientunitstayid IN (SELECT medication.patientunitstayid FROM medication WHERE medication.drugname = 'albumin 5%')) AND DATETIME(cost.chargetime) >=... |
HOW MANY PLAYERS PLAYED IN THE GAME THAT WON WITH 438 POINTS | CREATE TABLE table_12807904_3 (played VARCHAR,points_for VARCHAR) | SELECT played FROM table_12807904_3 WHERE points_for = "438" |
provide the number of patients whose drug code is nvan500i and lab test category is blood gas? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE prescriptions.formulary_drug_cd = "NVAN500I" AND lab."CATEGORY" = "Blood Gas" |
What is Class Pos., when Year is before 2013, and when Laps is greater than 175? | CREATE TABLE table_77296 ("Year" real,"Team" text,"Co-Drivers" text,"Class" text,"Laps" real,"Pos." text,"Class Pos." text) | SELECT "Class Pos." FROM table_77296 WHERE "Year" < '2013' AND "Laps" > '175' |
Which Authority has a Decile smaller than 6, and an Area of opoutere? | CREATE TABLE table_name_68 (authority VARCHAR,decile VARCHAR,area VARCHAR) | SELECT authority FROM table_name_68 WHERE decile < 6 AND area = "opoutere" |
Top developers in Saudi Arabia. | CREATE TABLE ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE PostNotices (Id number,PostId number,PostNoticeTypeId number,CreationDate time,DeletionDate time,ExpiryDate time,Body text,OwnerUserId number,DeletionUserId number)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId nu... | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location, CreationDate, LastAccessDate, Views FROM Users WHERE LOWER(Location) LIKE '%saudi%' ORDER BY Reputation DESC |
What Luca Barbarossa song had a draw smaller than 20? | CREATE TABLE table_name_17 (song VARCHAR,draw VARCHAR,artist VARCHAR) | SELECT song FROM table_name_17 WHERE draw < 20 AND artist = "luca barbarossa" |
How many deciles have Years of 9 13? | CREATE TABLE table_80004 ("Name" text,"Years" text,"Gender" text,"Area" text,"Authority" text,"Decile" real,"Roll" real) | SELECT COUNT("Decile") FROM table_80004 WHERE "Years" = '9–13' |
calculate the total number of patients aged below 24 | 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 WHERE demographic.age < "24" |
What is the mean number of games for pablo prigioni when there are more than 14 assists? | CREATE TABLE table_name_88 (games INTEGER,name VARCHAR,assists VARCHAR) | SELECT AVG(games) FROM table_name_88 WHERE name = "pablo prigioni" AND assists > 14 |
count the number of patients who are dead after having been diagnosed with sepsis - severe during the same hospital visit until 2104. | 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 treatment (treatmentid number,patientunitstayid number,treatmentname text,... | SELECT COUNT(DISTINCT t2.uniquepid) FROM (SELECT t1.uniquepid, t1.diagnosistime, t1.patienthealthsystemstayid FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = ... |
Who is the first driver(s) when the country is romania? | CREATE TABLE table_27279050_3 (first_driver_s_ VARCHAR,country VARCHAR) | SELECT first_driver_s_ FROM table_27279050_3 WHERE country = "Romania" |
What are some of the useful courses I should take before ASIAN 416 ? | 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,internship varchar)CREATE TABLE program_course (program_id int,course_id int,work... | SELECT DISTINCT advisory_requirement FROM course WHERE department = 'ASIAN' AND number = 416 |
who is the constructor when the driver is jenson button? | CREATE TABLE table_55672 ("Driver" text,"Constructor" text,"Laps" text,"Time/Retired" text,"Grid" text) | SELECT "Constructor" FROM table_55672 WHERE "Driver" = 'jenson button' |
how many hours have passed since patient 27172 last started to stay in careunit csru during their current hospital visit? | 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 patients (row_id number,subject_id number,gender text,dob time... | SELECT 24 * (STRFTIME('%j', CURRENT_TIME()) - STRFTIME('%j', transfers.intime)) FROM transfers WHERE transfers.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 27172 AND admissions.dischtime IS NULL) AND transfers.careunit = 'csru' ORDER BY transfers.intime DESC LIMIT 1 |
Answer Score MIN MAX AVG. | CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,Paren... | SELECT MIN(Score) AS min, MAX(Score) AS max, AVG(Score) AS avg FROM Posts WHERE PostTypeId = 2 |
How many times did Ken Wright expired in North Western? | CREATE TABLE table_69850 ("Name" text,"Party" text,"Province" text,"Term expires" real,"Term of office" text) | SELECT COUNT("Term expires") FROM table_69850 WHERE "Province" = 'north western' AND "Name" = 'ken wright' |
Which tittles have an original air date of March 19, 1998 | CREATE TABLE table_17278 ("Series #" real,"Season #" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text) | SELECT "Title" FROM table_17278 WHERE "Original air date" = 'March 19, 1998' |
What is the main service for the station with 14.849 million passengers 2011-12? | CREATE TABLE table_72961 ("Rank" real,"Railway Station" text,"Annual entry/exit (millions) 2011\u201312" text,"Annual interchanges (millions) 2011\u201312" text,"Total Passengers (millions) 2011\u201312" text,"Location" text,"Main Services" text,"Number of Platforms" real) | SELECT "Main Services" FROM table_72961 WHERE "Total Passengers (millions) 2011\u201312" = '14.849' |
How many papers has david blei published in nips ? | CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE keyphrase (keyphraseid int,keyphrasename varchar)CREATE TABLE paperfield (fieldid int,paperid int)CREATE TABLE venue (venueid int,venuename varchar)CREATE TABLE cite (citingpaperid int,citedpaperid int)CREATE TABLE journal (journalid int,journalname varc... | SELECT DISTINCT COUNT(paper.paperid) FROM author, paper, venue, writes WHERE author.authorname = 'david blei' AND venue.venueid = paper.venueid AND venue.venuename = 'nips' AND writes.authorid = author.authorid AND writes.paperid = paper.paperid |
i will need a RENTAL CAR at NEW YORK | CREATE TABLE food_service (meal_code text,meal_number int,compartment text,meal_description varchar)CREATE TABLE airport (airport_code varchar,airport_name text,airport_location text,state_code varchar,country_name varchar,time_zone_code varchar,minimum_connect_time int)CREATE TABLE dual_carrier (main_airline varchar,l... | SELECT DISTINCT ground_service.transport_type FROM city, ground_service WHERE city.city_name = 'NEW YORK' AND ground_service.city_code = city.city_code AND ground_service.transport_type = 'RENTAL CAR' |
provide the number of patients whose ethnicity is hispanic or latino and procedure is titled other phototherapy. | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.ethnicity = "HISPANIC OR LATINO" AND procedures.long_title = "Other phototherapy" |
What is Opponent, when Date is 17 September 1998? | CREATE TABLE table_name_76 (opponent VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_76 WHERE date = "17 september 1998" |
Who is the opponent on November 1? | CREATE TABLE table_name_38 (opponent VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_38 WHERE date = "november 1" |
What district is Mac Collins an incumbent in? | CREATE TABLE table_1341472_12 (district VARCHAR,incumbent VARCHAR) | SELECT district FROM table_1341472_12 WHERE incumbent = "Mac Collins" |
If the equation is 0 9 + 3 9 + 3, what is the result? | CREATE TABLE table_17265535_7 (result INTEGER,equation VARCHAR) | SELECT MIN(result) FROM table_17265535_7 WHERE equation = "0 × 9² + 3 × 9 + 3" |
For those employees who do not work in departments with managers that have ids between 100 and 200, return a bar chart about the distribution of email and employee_id , and show x axis in ascending order. | CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))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)... | SELECT EMAIL, EMPLOYEE_ID FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY EMAIL |
What is the average rank for Hungary? | CREATE TABLE table_64604 ("Rank" real,"Athletes" text,"Country" text,"Time" text,"Notes" text) | SELECT AVG("Rank") FROM table_64604 WHERE "Country" = 'hungary' |
Which Visa 3 has gui finkler as Visa 1? | CREATE TABLE table_14336 ("Club" text,"Visa 1" text,"Visa 2" text,"Visa 3" text,"Visa 4" text,"Visa 5" text) | SELECT "Visa 3" FROM table_14336 WHERE "Visa 1" = 'gui finkler' |
How many mascotts are there for college station, texas | CREATE TABLE table_28243691_1 (team_nickname VARCHAR,location VARCHAR) | SELECT COUNT(team_nickname) FROM table_28243691_1 WHERE location = "College Station, Texas" |
What is the year of the movie with an opening day on Friday with a rank 10? | CREATE TABLE table_56447 ("Rank" real,"Movie" text,"Year" real,"Studio(s)" text,"Opening Day Net Gross" real,"Day of Week" text) | SELECT COUNT("Year") FROM table_56447 WHERE "Day of Week" = 'friday' AND "Rank" = '10' |
Where is the station with a coverage of yucat n quintana roo campeche transmitting from? | CREATE TABLE table_39698 ("Call sign" text,"Launched" text,"Transmitting from" text,"Coverage" text,"Languages" text,"Frequency" text) | SELECT "Transmitting from" FROM table_39698 WHERE "Coverage" = 'yucatán quintana roo campeche' |
What are the names of the songs that are modern or sung in English? | CREATE TABLE song (song_name text,artist_name text,country text,f_id number,genre_is text,rating number,languages text,releasedate time,resolution number)CREATE TABLE files (f_id number,artist_name text,file_size text,duration text,formats text)CREATE TABLE genre (g_name text,rating text,most_popular_in text)CREATE TAB... | SELECT song_name FROM song WHERE genre_is = "modern" OR languages = "english" |
Accepted answers with a zero score. | 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 FlagTypes (Id number,Name text,Description text)CREATE TABLE Re... | SELECT a.Id AS "post_link", a.Score, a.OwnerUserId AS "user_link" FROM Posts AS a, Posts AS q WHERE a.PostTypeId = 2 AND q.PostTypeId = 1 AND a.Score = 0 AND a.ParentId = q.Id AND q.AcceptedAnswerId = a.Id |
calculate the number of patients who were dead after being diagnosed with bladder ca within the same hospital 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 COUNT(DISTINCT t2.uniquepid) FROM (SELECT t1.uniquepid, t1.diagnosistime, t1.patienthealthsystemstayid FROM (SELECT patient.uniquepid, diagnosis.diagnosistime, patient.patienthealthsystemstayid FROM diagnosis JOIN patient ON diagnosis.patientunitstayid = patient.patientunitstayid WHERE diagnosis.diagnosisname = ... |
WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784? | CREATE TABLE table_59345 ("Club" text,"Played" text,"Drawn" text,"Lost" text,"Points for" text,"Points against" text,"Tries for" text,"Tries against" text,"Try bonus" text,"Losing bonus" text,"Points" text) | SELECT "Tries against" FROM table_59345 WHERE "Played" = '22' AND "Points against" = '784' |
Return a scatter chart about the correlation between ACC_Percent and All_Games_Percent , and group by attribute All_Games. | CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,Enrollment real,Nickname text,Primary_conference text)CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Perce... | SELECT ACC_Percent, All_Games_Percent FROM basketball_match GROUP BY All_Games |
Which game was after October 24 and had a record of 6-2-1? | CREATE TABLE table_name_70 (game VARCHAR,october VARCHAR,record VARCHAR) | SELECT game FROM table_name_70 WHERE october > 24 AND record = "6-2-1" |
Name the broadcast network for chiba prefecture | CREATE TABLE table_21076286_2 (broadcast_network VARCHAR,broadcast_scope VARCHAR) | SELECT broadcast_network FROM table_21076286_2 WHERE broadcast_scope = "Chiba Prefecture" |
what is the number of patients whose admission year is less than 2170 and procedure icd9 code is 8854? | 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.admityear < "2170" AND procedures.icd9_code = "8854" |
Which year first played with Double W-L of 8 3? | CREATE TABLE table_name_12 (first_year_played VARCHAR,doubles_w_l VARCHAR) | SELECT first_year_played FROM table_name_12 WHERE doubles_w_l = "8–3" |
Who was the Cover model on 11-03? | CREATE TABLE table_43061 ("Date" text,"Cover model" text,"Centerfold model" text,"Interview subject" text,"20 Questions" text) | SELECT "Cover model" FROM table_43061 WHERE "Date" = '11-03' |
Who is the player with an average of 35.42? | CREATE TABLE table_28846752_13 (player VARCHAR,average VARCHAR) | SELECT player FROM table_28846752_13 WHERE average = "35.42" |
tell me how much patient 021-213732's total output was on last month/08. | CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE patient (uniquepid text,patienthealthsystemstayid number,patientunitstayid number,gender text,age text,ethnicity text,hospitalid number,wardid number,admissionheight number,admissionweigh... | 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 = '021-213732')) AND intakeoutput.cellpath LIKE '%o... |
when did the first lab test of patient 92846 happened during this month? | CREATE TABLE patients (row_id number,subject_id number,gender text,dob time,dod time)CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title text)CREATE TABLE admissions (row_id number,subject_id number,hadm_id number,admittime time,dischtime time,admission_type text,admission_location te... | SELECT labevents.charttime FROM labevents WHERE labevents.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 92846) AND DATETIME(labevents.charttime, 'start of month') = DATETIME(CURRENT_TIME(), 'start of month', '-0 month') ORDER BY labevents.charttime LIMIT 1 |
When vfl park is the venue what's the Away team playing? | CREATE TABLE table_58081 ("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_58081 WHERE "Venue" = 'vfl park' |
Give me a bar chart to show how many days with a max temperature greater than or equal to 80 for each year. | 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 INTEGER,min_humidity INTEGER,max_sea_level_pressure_inches NUMERIC,mean_sea_level_pressure_inches NUM... | SELECT date, COUNT(date) FROM weather WHERE max_temperature_f >= 80 |
For those employees who was hired before 2002-06-21, a bar chart shows the distribution of job_id and the average of manager_id , and group by attribute job_id. | CREATE TABLE countries (COUNTRY_ID varchar(2),COUNTRY_NAME varchar(40),REGION_ID decimal(10,0))CREATE TABLE departments (DEPARTMENT_ID decimal(4,0),DEPARTMENT_NAME varchar(30),MANAGER_ID decimal(6,0),LOCATION_ID decimal(4,0))CREATE TABLE locations (LOCATION_ID decimal(4,0),STREET_ADDRESS varchar(40),POSTAL_CODE varchar... | SELECT JOB_ID, AVG(MANAGER_ID) FROM employees WHERE HIRE_DATE < '2002-06-21' GROUP BY JOB_ID |
what is the number of patients whose gender is m and discharge location is left against medical advi? | 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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,la... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.gender = "M" AND demographic.discharge_location = "LEFT AGAINST MEDICAL ADVI" |
how many goals did durrant score ? | CREATE TABLE table_204_691 (id number,"date" text,"round" text,"opponent" text,"venue" text,"result" text,"attendance" number,"scorers" text) | SELECT COUNT(*) FROM table_204_691 WHERE "scorers" = 'durrant' |
which golfers other than tim clark shot 3 over par at the 2010 us open ? | CREATE TABLE table_203_134 (id number,"place" text,"player" text,"country" text,"score" text,"to par" number) | SELECT "player" FROM table_203_134 WHERE "player" <> 'tim clark' AND "to par" = 3 |
how many patients whose lab test abnormal status is abnormal and lab test name is potassium, urine? | 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 lab ON demographic.hadm_id = lab.hadm_id WHERE lab.flag = "abnormal" AND lab.label = "Potassium, Urine" |
Find All_Home and School_ID , and group by attribute ACC_Home, and visualize them by a bar chart, could you list in descending by the y-axis please? | CREATE TABLE basketball_match (Team_ID int,School_ID int,Team_Name text,ACC_Regular_Season text,ACC_Percent text,ACC_Home text,ACC_Road text,All_Games text,All_Games_Percent int,All_Home text,All_Road text,All_Neutral text)CREATE TABLE university (School_ID int,School text,Location text,Founded real,Affiliation text,En... | SELECT All_Home, School_ID FROM basketball_match GROUP BY ACC_Home, All_Home ORDER BY School_ID DESC |
Name the score for save of lancaster (3) | CREATE TABLE table_75608 ("Date" text,"Opponent" text,"Score" text,"Loss" text,"Save" text) | SELECT "Score" FROM table_75608 WHERE "Save" = 'lancaster (3)' |
what were the five most common diagnoses among the patients in the 30s in 2105? | 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 t1.diagnosisname FROM (SELECT diagnosis.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.age BETWEEN 30 AND 39) AND STRFTIME('%y', diagnosis.diagnosistime) = '2105' GROUP BY diagnosis.d... |
Who built the under grid 6 car with under 49 laps? | CREATE TABLE table_name_94 (constructor VARCHAR,grid VARCHAR,laps VARCHAR) | SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49 |
What is the date the successor was seated for the georgia 6th district? | CREATE TABLE table_1446600_4 (date_successor_seated VARCHAR,district VARCHAR) | SELECT date_successor_seated FROM table_1446600_4 WHERE district = "Georgia 6th" |
Is EECS 567 or EECS 529 easier ? | CREATE TABLE course_offering (offering_id int,course_id int,semester int,section_number int,start_time time,end_time time,monday varchar,tuesday varchar,wednesday varchar,thursday varchar,friday varchar,saturday varchar,sunday varchar,has_final_project varchar,has_final_exam varchar,textbook varchar,class_address varch... | SELECT DISTINCT course.number FROM course INNER JOIN program_course ON program_course.course_id = course.course_id WHERE (course.number = 567 OR course.number = 529) AND program_course.workload = (SELECT MIN(PROGRAM_COURSEalias1.workload) FROM program_course AS PROGRAM_COURSEalias1 INNER JOIN course AS COURSEalias1 ON ... |
Which Ground has a Home team score of 18.12 (120)? | CREATE TABLE table_45238 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Ground" text,"Date" text,"Crowd" real) | SELECT "Ground" FROM table_45238 WHERE "Home team score" = '18.12 (120)' |
Where were the 2009 and 2011 Grand Slam Tournaments? | CREATE TABLE table_name_86 (Id VARCHAR) | SELECT 2011 FROM table_name_86 WHERE 2009 = "grand slam tournaments" |
Which rank has more than 1 silver, more than 1 gold, and more than 4 bronze? | CREATE TABLE table_name_25 (rank VARCHAR,bronze VARCHAR,silver VARCHAR,gold VARCHAR) | SELECT rank FROM table_name_25 WHERE silver > 1 AND gold > 1 AND bronze > 4 |
Name who directed the 114 episode in the series | CREATE TABLE table_20164 ("No. in series" text,"No. in season" text,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"U.S. viewers (million)" text) | SELECT "Directed by" FROM table_20164 WHERE "No. in series" = '114' |
what is the number of patients whose gender is f and diagnoses icd9 code is 42831? | 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 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.gender = "F" AND diagnoses.icd9_code = "42831" |
What is Website, when Last Release is 2009-08-09, 1.2.9? | CREATE TABLE table_name_25 (website VARCHAR,last_release VARCHAR) | SELECT website FROM table_name_25 WHERE last_release = "2009-08-09, 1.2.9" |
provide the number of patients whose death status is 0 and diagnoses icd9 code is 42833? | 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 INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.expire_flag = "0" AND diagnoses.icd9_code = "42833" |
find the earliest BREAKFAST flight from BOSTON to OAKLAND | CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE days (days_code varchar,day_name varchar)CREATE TABLE city (city_code varchar,city_name varchar,state_code varchar,country_name varchar,time_zone_code varchar)CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE food_service... | 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 = 'OAKLAND' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code AND food_s... |
List all the model names sorted by their launch year. | CREATE TABLE screen_mode (graphics_mode number,char_cells text,pixels text,hardware_colours number,used_kb number,map text,type text)CREATE TABLE phone (company_name text,hardware_model_name text,accreditation_type text,accreditation_level text,date text,chip_model text,screen_mode text)CREATE TABLE chip_model (model_n... | SELECT model_name FROM chip_model ORDER BY launch_year |
what diagnosis did patient 32153 receive on the current hospital encounter for the first time? | CREATE TABLE microbiologyevents (row_id number,subject_id number,hadm_id number,charttime time,spec_type_desc text,org_name text)CREATE TABLE inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,charttime time,itemid number,amount number)CREATE TABLE icustays (row_id number,subject_id number... | SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT diagnoses_icd.icd9_code FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 32153 AND admissions.dischtime IS NULL) ORDER BY diagnoses_icd.charttime L... |
Return a pie on how many departments are in each school? | CREATE TABLE STUDENT (STU_NUM int,STU_LNAME varchar(15),STU_FNAME varchar(15),STU_INIT varchar(1),STU_DOB datetime,STU_HRS int,STU_CLASS varchar(2),STU_GPA float(8),STU_TRANSFER numeric,DEPT_CODE varchar(18),STU_PHONE varchar(4),PROF_NUM int)CREATE TABLE ENROLL (CLASS_CODE varchar(5),STU_NUM int,ENROLL_GRADE varchar(50... | SELECT SCHOOL_CODE, COUNT(DISTINCT DEPT_NAME) FROM DEPARTMENT |
had the morphine inj, sodium chloride 0.9% 1,000 ml bag or potassium chloride crys er 20 meq po tbcr been prescribed for patient 009-15 in 2104? | 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 diagnosis (diagnosisid number,patientunitstayid numbe... | 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 = '009-15')) AND medication.drugname IN ('morphine inj', 'sodium chloride 0.9... |
How many Pole Positions were there on 30 March? | CREATE TABLE table_3245 ("Round" real,"Circuit" text,"Date" text,"Pole Position" text,"Fastest Lap" text,"Winning Driver" text,"Winning Team" text) | SELECT COUNT("Pole Position") FROM table_3245 WHERE "Date" = '30 March' |
how much patient 027-154299 weighs in 12/this year for the last time. | CREATE TABLE allergy (allergyid number,patientunitstayid number,drugname text,allergyname text,allergytime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE treatment (treatmentid number,patientunitstayi... | SELECT patient.admissionweight FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-154299') AND NOT patient.admissionweight IS NULL AND DATETIME(patient.unitadmittime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '... |
what is the four most frequently given diagnoses since 2105 for patients who have previously been diagnosed with ac diastolic hrt failure within 2 months? | CREATE TABLE d_items (row_id number,itemid number,label text,linksto text)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 cost (row_id number,subject_id number,hadm_id number,event_type text,event... | SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions... |
which year held the most tournaments ? | CREATE TABLE table_203_300 (id number,"year" number,"tournament" text,"venue" text,"result" text,"extra" text) | SELECT "year" FROM table_203_300 GROUP BY "year" ORDER BY COUNT("tournament") DESC LIMIT 1 |
Four major RDBMS systems, ranked by popularity. | CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE Tags (Id number,TagName text,Count number,ExcerptPostId number,WikiPostId number)CREATE TABLE ReviewTaskResults (Id number,ReviewTaskId number,ReviewTaskResultTypeId number,CreationDate time,RejectionReasonId number,Comment text)CREATE TABLE PostLinks (Id n... | SELECT TagName AS Tags, cnt AS "questions_tagged", ROUND(100.0 * cnt / SUM(cnt) OVER (), 2) AS "ratio,_%" FROM Tags AS t JOIN LATERAL (SELECT COUNT(*) AS cnt FROM PostTags AS pt WHERE pt.TagId = t.Id) AS q WHERE t.TagName IN ('adminer', 'phpmyadmin', 'navicat', 'sqlyog', 'sqlbuddy', 'toad', 'dbninja', 'sqlwave', 'chive... |
For those records from the products and each product's manufacturer, visualize a bar chart about the distribution of founder and the sum of price , and group by attribute founder, and display total number from low to high order. | 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 Founder, SUM(Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY SUM(Price) |
how many matches were played that average goals scored 1.25? | CREATE TABLE table_29762 ("Stadium" text,"City" text,"Capacity" real,"Matches played" real,"Overall attendance" real,"Average attendance per match" real,"Average attendance as % of Capacity" text,"Overall goals scored" real,"Average goals scored per match" text,"Elevation" text) | SELECT COUNT("Matches played") FROM table_29762 WHERE "Average goals scored per match" = '1.25' |
What is the result of the game when the attendance is 75,466? | CREATE TABLE table_name_43 (result VARCHAR,attendance VARCHAR) | SELECT result FROM table_name_43 WHERE attendance = "75,466" |
What is the class for the ERP W of 500? | CREATE TABLE table_name_12 (class VARCHAR,erp_w VARCHAR) | SELECT class FROM table_name_12 WHERE erp_w = 500 |
What type of institution is San Diego Christian college? | CREATE TABLE table_27842 ("Institution" text,"Location" text,"Type" text,"Joined" real,"Enrollment" real,"Nickname" text) | SELECT "Type" FROM table_27842 WHERE "Institution" = 'San Diego Christian College' |
What is the 2007 value for the 2010 wta premier 5 tournaments? | CREATE TABLE table_48545 ("Tournament" text,"2002" text,"2003" text,"2004" text,"2005" text,"2006" text,"2007" text,"2008" text,"2009" text,"2010" text,"Career SR" text,"Career W\u2013L" text) | SELECT "2007" FROM table_48545 WHERE "2010" = 'wta premier 5 tournaments' |
what is the lowest number of ties when the losses is 7 and games played is less than 10? | CREATE TABLE table_name_10 (ties INTEGER,losses VARCHAR,games_played VARCHAR) | SELECT MIN(ties) FROM table_name_10 WHERE losses = 7 AND games_played < 10 |
What country is Pierre Vermeulen from? | CREATE TABLE table_26948 ("Name" text,"Position" text,"Period" text,"Appearances\u00b9" real,"Goals\u00b9" real,"Nationality\u00b2" text) | SELECT "Nationality\u00b2" FROM table_26948 WHERE "Name" = 'Pierre Vermeulen' |
Which nationality has rank 4? | CREATE TABLE table_65597 ("Rank" real,"Lane" real,"Name" text,"Nationality" text,"Time" text) | SELECT "Nationality" FROM table_65597 WHERE "Rank" = '4' |
What were the Feb temperatures in East Stroudsburg? | CREATE TABLE table_40630 ("City" text,"Jan." text,"Feb." text,"Mar." text,"Apr." text,"May." text,"Jun." text,"Jul." text,"Aug." text,"Sep." text,"Oct." text,"Nov." text,"Dec." text) | SELECT "Feb." FROM table_40630 WHERE "City" = 'east stroudsburg' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.