instruction
stringlengths
0
1.06k
input
stringlengths
11
5.3k
response
stringlengths
2
4.44k
what are the three year survival rates for those who were prescribed senna after having been diagnosed with extremity compartment syndrome - right lower extremity?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE medication (medicationid number,patient...
SELECT SUM(CASE WHEN patient.hospitaldischargestatus = 'alive' THEN 1 WHEN STRFTIME('%j', patient.hospitaldischargetime) - STRFTIME('%j', t4.diagnosistime) > 3 * 365 THEN 1 ELSE 0 END) * 100 / COUNT(*) FROM (SELECT t2.uniquepid, t2.diagnosistime FROM (SELECT t1.uniquepid, t1.diagnosistime FROM (SELECT patient.uniquepid...
What is the record on February 19?
CREATE TABLE table_name_39 (record VARCHAR,date VARCHAR)
SELECT record FROM table_name_39 WHERE date = "february 19"
When 3 - 1 hughes 64' is the score what is the stadium?
CREATE TABLE table_21377473_7 (stadium VARCHAR,score VARCHAR)
SELECT stadium FROM table_21377473_7 WHERE score = "3 - 1 Hughes 64'"
What was the round number for March 22?
CREATE TABLE table_name_92 (round VARCHAR,date VARCHAR)
SELECT round FROM table_name_92 WHERE date = "march 22"
what is the date of birth and religion of patient no. 14755?
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 demographic.dob, demographic.religion FROM demographic WHERE demographic.subject_id = "14755"
how many patients since 2105 have received other gastrostomy two times?
CREATE TABLE d_icd_diagnoses (row_id number,icd9_code text,short_title text,long_title 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 icustays (row_id number,subject_id number,hadm_id number...
SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, COUNT(*) AS c1 FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = 'other gastrostomy') A...
What is the Nationality of the Swimmer in Lane 4 or larger with a Rank of 5 or more?
CREATE TABLE table_79261 ("Rank" real,"Lane" real,"Name" text,"Nationality" text,"Time" text)
SELECT "Nationality" FROM table_79261 WHERE "Lane" > '4' AND "Rank" > '5'
What was the round for Villa Park?
CREATE TABLE table_79289 ("Opposing Team" text,"Against" real,"Date" text,"Venue" text,"Round" text)
SELECT "Round" FROM table_79289 WHERE "Venue" = 'villa park'
Name the games with marks of 21
CREATE TABLE table_name_71 (games VARCHAR,marks VARCHAR)
SELECT games FROM table_name_71 WHERE marks = "21"
If the average is 50.16, who is the player?
CREATE TABLE table_74073 ("Player" text,"Team" text,"Matches" real,"Runs" real,"Average" text,"Strike rate" text,"Highest Score" text,"100s" real,"50s" real)
SELECT "Player" FROM table_74073 WHERE "Average" = '50.16'
What spacecraft had an EVA that ended at 17:28?
CREATE TABLE table_50369 ("Start Date/Time" text,"Duration" text,"End Time" text,"Spacecraft" text,"Crew" text)
SELECT "Spacecraft" FROM table_50369 WHERE "End Time" = '17:28'
What is the average value of Bronze when silver is 0 and the total is less than 1?
CREATE TABLE table_31793 ("Rank" real,"Nation" text,"Gold" real,"Silver" real,"Bronze" real,"Total" real)
SELECT AVG("Bronze") FROM table_31793 WHERE "Silver" = '0' AND "Total" < '1'
What is the location that has a date of demolition of 1940 and has a church named Christ Church Greyfriars?
CREATE TABLE table_71984 ("Church name" text,"Location" text,"Rebuilt" text,"Date of demolition" real,"Subsuming parish" text)
SELECT "Location" FROM table_71984 WHERE "Date of demolition" = '1940' AND "Church name" = 'christ church greyfriars'
What is the average pick for Florida State?
CREATE TABLE table_9603 ("Round" real,"Pick" real,"Player" text,"Position" text,"School/Club Team" text)
SELECT AVG("Pick") FROM table_9603 WHERE "School/Club Team" = 'florida state'
how many times did they make it to the first round ?
CREATE TABLE table_203_5 (id number,"season" text,"competition" text,"round" text,"opponent" text,"home" text,"away" text,"aggregate" text)
SELECT COUNT(*) FROM table_203_5 WHERE "round" = 'first round'
i need a flight from LOS ANGELES to CHARLOTTE today
CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE airport_service (city_code varchar,airport_code varchar,miles_distant int,direction varchar,minutes_distant int)CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE days (days_code varchar,day_name varchar)CREATE...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day, days, flight WHERE (CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'CHARLOTTE' AND date_day.day_number = 22 AND date_day.month_number = 6 AND...
Number of Posts per User. This is a query that returns the number of posts per user in descending order
CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE PostTags (PostId number,TagId number)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance te...
SELECT COUNT(*) FROM Posts WHERE CreationDate >= DATEFROMPARTS(2013, 3, 1)
List the journals related to Temporal Data
CREATE TABLE writes (paperid int,authorid int)CREATE TABLE dataset (datasetid int,datasetname varchar)CREATE TABLE journal (journalid int,journalname varchar)CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,journalid int)CREATE TABLE field (fieldid int)CREATE TABLE author ...
SELECT DISTINCT paper.journalid FROM keyphrase, paper, paperkeyphrase WHERE keyphrase.keyphrasename = 'Temporal Data' AND paperkeyphrase.keyphraseid = keyphrase.keyphraseid AND paper.paperid = paperkeyphrase.paperid GROUP BY paper.journalid
Plot the number of investor details by grouped by investor details as a bar graph, display Y from high to low order.
CREATE TABLE Transactions (transaction_id INTEGER,investor_id INTEGER,transaction_type_code VARCHAR(10),date_of_transaction DATETIME,amount_of_transaction DECIMAL(19,4),share_count VARCHAR(40),other_details VARCHAR(255))CREATE TABLE Ref_Transaction_Types (transaction_type_code VARCHAR(10),transaction_type_description V...
SELECT Investor_details, COUNT(Investor_details) FROM Investors GROUP BY Investor_details ORDER BY COUNT(Investor_details) DESC
compared to last measured on the last hospital visit is ionized calcium of patient 012-35670 less than second to last measured on the last hospital visit?
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabe...
SELECT (SELECT 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 = '012-35670' AND NOT patient.hospitaldischargetime IS NULL ORDER BY patient.hospi...
Which position is team mons who was replaced by Christophe Dessy (caretaker)?
CREATE TABLE table_name_91 (position_in_table VARCHAR,team VARCHAR,replaced_by VARCHAR)
SELECT position_in_table FROM table_name_91 WHERE team = "mons" AND replaced_by = "christophe dessy (caretaker)"
What type entered service in 2000?
CREATE TABLE table_name_70 (type VARCHAR,entered_service VARCHAR)
SELECT type FROM table_name_70 WHERE entered_service = "2000"
requirement of high dose vasopressors ( defined as a cumulative vasopressor index = 4 ) to treat shock
CREATE TABLE table_train_30 ("id" int,"serum_potassium" float,"hyperkalemia" bool,"renal_disease" bool,"cardiopulmonary_resuscitation" bool,"receiving_vasopressor" bool,"age" float,"NOUSE" float)
SELECT * FROM table_train_30 WHERE receiving_vasopressor = 1
Plot how many date from by grouped by date from as a bar graph
CREATE TABLE Tasks (task_id INTEGER,project_id INTEGER,task_details VARCHAR(255),"eg Agree Objectives" VARCHAR(1))CREATE TABLE Organisations (organisation_id INTEGER,organisation_type VARCHAR(10),organisation_details VARCHAR(255))CREATE TABLE Document_Types (document_type_code VARCHAR(10),document_description VARCHAR(2...
SELECT date_from, COUNT(date_from) FROM Project_Staff
During the Mid-American Conference who is listed as the tournament winner?
CREATE TABLE table_30505 ("Conference" text,"Regular Season Winner" text,"Conference Player of the Year" text,"Conference Tournament" text,"Tournament Venue (City)" text,"Tournament Winner" text)
SELECT "Tournament Winner" FROM table_30505 WHERE "Conference" = 'Mid-American Conference'
What is the sum of byes when wins are 8, and losses are larger than 10?
CREATE TABLE table_12447 ("Mininera DFL" text,"Wins" real,"Byes" real,"Losses" real,"Draws" real,"Against" real)
SELECT COUNT("Byes") FROM table_12447 WHERE "Wins" = '8' AND "Losses" > '10'
What's the 2nd party of 2nd member william goodenough hayter when the 1st member is hedworth hylton jolliffe?
CREATE TABLE table_78812 ("Election" text,"1st Member" text,"1st Party" text,"2nd Member" text,"2nd Party" text)
SELECT "2nd Party" FROM table_78812 WHERE "1st Member" = 'hedworth hylton jolliffe' AND "2nd Member" = 'william goodenough hayter'
What is the highest elevation for the peak daurm l, and an Isolation (km) larger than 4?
CREATE TABLE table_name_83 (elevation__m_ INTEGER,peak VARCHAR,isolation__km_ VARCHAR)
SELECT MAX(elevation__m_) FROM table_name_83 WHERE peak = "daurmål" AND isolation__km_ > 4
What score has january 15, 2005 as the date?
CREATE TABLE table_name_8 (score VARCHAR,date VARCHAR)
SELECT score FROM table_name_8 WHERE date = "january 15, 2005"
who was the director of the episode with production code ad1a26?
CREATE TABLE table_54650 ("Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text)
SELECT "Directed by" FROM table_54650 WHERE "Production code" = 'ad1a26'
Which team picked a player(s) from South Carolina?
CREATE TABLE table_9493 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text)
SELECT "CFL Team" FROM table_9493 WHERE "College" = 'south carolina'
When London Bridge is the destination, how many lines are there?
CREATE TABLE table_1569516_1 (line VARCHAR,destination VARCHAR)
SELECT COUNT(line) FROM table_1569516_1 WHERE destination = "London Bridge"
Where is George W. Gregory from?
CREATE TABLE table_14342367_13 (hometown VARCHAR,player VARCHAR)
SELECT hometown FROM table_14342367_13 WHERE player = "George W. Gregory"
What year was Metroid Prime Hunters 5 released?
CREATE TABLE table_name_7 (year INTEGER,title VARCHAR)
SELECT SUM(year) FROM table_name_7 WHERE title = "metroid prime hunters 5"
How many movie ratings have more than 3 stars?
CREATE TABLE rating (rid number,mid number,stars number,ratingdate time)CREATE TABLE movie (mid number,title text,year number,director text)CREATE TABLE reviewer (rid number,name text)
SELECT COUNT(*) FROM rating WHERE stars > 3
What is the total number of Broadcasts (TV) 1, when Aired in Japan 3 is '5 January 2003 to 30 March 2003'?
CREATE TABLE table_43839 ("Series" text,"Title" text,"Broadcasts (TV) 1" real,"Episodes (TV+extra) 2" text,"Directors" text,"Aired in Japan 3" text,"US Release Date" text)
SELECT COUNT("Broadcasts (TV) 1") FROM table_43839 WHERE "Aired in Japan 3" = '5 january 2003 to 30 march 2003'
Top 20 questions with the most answers.
CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)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...
SELECT Id AS "post_link", AnswerCount AS "number_of_answers" FROM Posts WHERE PostTypeId = 1 ORDER BY AnswerCount DESC LIMIT 20
What is the Number of Households that have a Per Capita Income of $21,345?
CREATE TABLE table_39544 ("Rank" real,"Place" text,"County" text,"Per Capita Income" text,"Median House- hold Income" text,"Median Family Income" text,"Population" real,"Number of Households" real)
SELECT AVG("Number of Households") FROM table_39544 WHERE "Per Capita Income" = '$21,345'
how many patients are diagnosed with hx traumatic fracture?
CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,do...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE diagnoses.short_title = "Hx traumatic fracture"
What is the sum of the attendance during the game against the philadelphia eagles after week 9?
CREATE TABLE table_7617 ("Week" real,"Date" text,"Opponent" text,"Result" text,"Attendance" real)
SELECT SUM("Attendance") FROM table_7617 WHERE "Opponent" = 'philadelphia eagles' AND "Week" > '9'
what are the drugs that patient 022-6959 has an allergic reaction to in 12/2105?
CREATE TABLE intakeoutput (intakeoutputid number,patientunitstayid number,cellpath text,celllabel text,cellvaluenumeric number,intakeoutputtime time)CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE lab (labid number,patientunitstayid num...
SELECT allergy.drugname FROM allergy WHERE allergy.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-6959')) AND STRFTIME('%y-%m', allergy.allergytime) = '2105-12'
Who are the villains in the episodes where Megan is the storyteller and Lorette LeBlanc is the director?
CREATE TABLE table_16132 ("No." real,"#" real,"Title" text,"Director" text,"Writer" text,"US air date" text,"Storyteller" text,"Villains" text)
SELECT "Villains" FROM table_16132 WHERE "Storyteller" = 'Megan' AND "Director" = 'Lorette LeBlanc'
How many games are on the date of April 30?
CREATE TABLE table_25466 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Series" text)
SELECT MIN("Game") FROM table_25466 WHERE "Date" = 'April 30'
calculate the total amount of chest tube output: pleural l output for patient 007-849 since 10/28/2103.
CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE lab (labid number,patientunitstayid number,labna...
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 = '007-849')) AND intakeoutput.celllabel = 'chest t...
Which 3 -credit courses cover Sociology of Latin America ?
CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE comment_instructor (instructor_id int,student_id int,score int,comment_text varchar)CREATE TABLE program (program_id int,name varchar,college varchar,introduction varchar)CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREAT...
SELECT DISTINCT department, name, number FROM course WHERE (description LIKE '%Sociology of Latin America%' OR name LIKE '%Sociology of Latin America%') AND credits = 3
let's count how many times until 01/2104 patient 007-2001 had enteral pivot 1.5.
CREATE TABLE microlab (microlabid number,patientunitstayid number,culturesite text,organism text,culturetakentime time)CREATE TABLE lab (labid number,patientunitstayid number,labname text,labresult number,labresulttime time)CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,...
SELECT COUNT(*) FROM intakeoutput WHERE intakeoutput.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '007-2001')) AND intakeoutput.cellpath LIKE '%intake%' AND intakeoutput.cel...
what is the primary disease and drug name of Wilbur Braatz?
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 demographic.diagnosis, prescriptions.drug FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.name = "Wilbur Braatz"
what is the attendance in 2011 records
CREATE TABLE table_24350 ("Type of Record" text,"Attendance" real,"Date/Year" text,"Stadium" text,"Result/Games" text)
SELECT "Attendance" FROM table_24350 WHERE "Date/Year" = '2011'
Can you tell me the Record that has the Home of ny islanders?
CREATE TABLE table_36570 ("Date" text,"Visitor" text,"Score" text,"Home" text,"Record" text)
SELECT "Record" FROM table_36570 WHERE "Home" = 'ny islanders'
are the respiration of patient 035-17122 measured at 2100-05-23 15:51:00 greater than measured at 2100-05-23 15:46:00?
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 microlab (microlabid number,patientunitstayid number,culturesite text,orga...
SELECT (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 = '035-17122')) AND NOT vitalperiodic.respiration ...
Find the number of settlements each claim corresponds to. Show the number together with the claim id.
CREATE TABLE customers (customer_id number,customer_details text)CREATE TABLE claims (claim_id number,policy_id number,date_claim_made time,date_claim_settled time,amount_claimed number,amount_settled number)CREATE TABLE customer_policies (policy_id number,customer_id number,policy_type_code text,start_date time,end_da...
SELECT T1.claim_id, COUNT(*) FROM claims AS T1 JOIN settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id
When el cibao is the geographical region and the height is 1.80 who is the contestant?
CREATE TABLE table_18618707_1 (contestant VARCHAR,height VARCHAR,geographical_regions VARCHAR)
SELECT contestant FROM table_18618707_1 WHERE height = "1.80" AND geographical_regions = "El Cibao"
What is the area located in Rhode Island with more than 38 sq mi area?
CREATE TABLE table_38543 ("Island's Name" text,"Area (sq mi)" real,"Area (km 2)" real,"Location" text,"Population (2000)" text)
SELECT AVG("Area (km 2 )") FROM table_38543 WHERE "Location" = 'rhode island' AND "Area (sq mi)" > '38'
Who had the highest points when the series was 4-2?
CREATE TABLE table_8016 ("Game" real,"Date" text,"Team" text,"Score" text,"High points" text,"High rebounds" text,"High assists" text,"Location Attendance" text,"Series" text)
SELECT "High points" FROM table_8016 WHERE "Series" = '4-2'
what is the total number of sacks smith has made ?
CREATE TABLE table_204_756 (id number,"year" number,"team" text,"games" number,"combined tackles" number,"tackles" number,"assisted tackles" number,"sacks" number,"forced fumbles" number,"fumble recoveries" number,"fumble return yards" number,"interceptions" number,"interception return yards" number,"yards per intercep...
SELECT SUM("sacks") FROM table_204_756
Which class from 1928 had a class to 1928 of BDi-21?
CREATE TABLE table_name_88 (class_from_1928 VARCHAR,class_to_1928 VARCHAR)
SELECT class_from_1928 FROM table_name_88 WHERE class_to_1928 = "bdi-21"
how many patients stayed in hospital for more than 9 days and used the drug ibuprofen suspension?
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 demographic (subject_id text,hadm_id text,name text,marital_status text,age text,do...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.days_stay > "9" AND prescriptions.drug = "Ibuprofen Suspension"
What player has a score larger than 67?
CREATE TABLE table_name_94 (player VARCHAR,score INTEGER)
SELECT player FROM table_name_94 WHERE score > 67
Which Played has a Points of 2, and a Position smaller than 8?
CREATE TABLE table_name_28 (played INTEGER,points VARCHAR,position VARCHAR)
SELECT AVG(played) FROM table_name_28 WHERE points = 2 AND position < 8
What is the Country when the Content was general television, and a Television service of rai 1?
CREATE TABLE table_name_87 (country VARCHAR,content VARCHAR,television_service VARCHAR)
SELECT country FROM table_name_87 WHERE content = "general television" AND television_service = "rai 1"
What are the average, maximum and total revenues of all companies?
CREATE TABLE manufacturers (revenue INTEGER)
SELECT AVG(revenue), MAX(revenue), SUM(revenue) FROM manufacturers
How many times is the couple kerry & daniel?
CREATE TABLE table_31253 ("Rank by average" real,"Place" real,"Couple" text,"Total points" text,"Number of dances" real,"Average" text)
SELECT COUNT("Place") FROM table_31253 WHERE "Couple" = 'Kerry & Daniel'
What was the attendance on June 27?
CREATE TABLE table_name_6 (att INTEGER,date VARCHAR)
SELECT MIN(att) FROM table_name_6 WHERE date = "june 27"
what's the last test patient 022-142620 has had until 11/2105?
CREATE TABLE cost (costid number,uniquepid text,patienthealthsystemstayid number,eventtype text,eventid number,chargetime time,cost number)CREATE TABLE diagnosis (diagnosisid number,patientunitstayid number,diagnosisname text,diagnosistime time,icd9code text)CREATE TABLE patient (uniquepid text,patienthealthsystemstayi...
SELECT lab.labname FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '022-142620')) AND STRFTIME('%y-%m', lab.labresulttime) <= '2105-11' ORDER BY lab.labresul...
What shows for opened for the Nascar Major Series?
CREATE TABLE table_37339 ("Track" text,"City" text,"State" text,"Opened" text,"Major Series" text,"Turns" text)
SELECT "Opened" FROM table_37339 WHERE "Major Series" = 'nascar'
list the morning flights between ATLANTA and DALLAS
CREATE TABLE airline (airline_code varchar,airline_name text,note text)CREATE TABLE flight_fare (flight_id int,fare_id int)CREATE TABLE class_of_service (booking_class varchar,rank int,class_description text)CREATE TABLE fare (fare_id int,from_airport varchar,to_airport varchar,fare_basis_code text,fare_airline text,re...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE (CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'ATLANTA' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'DALLA...
Who was the lowest picked LB
CREATE TABLE table_16441561_5 (pick__number INTEGER,position VARCHAR)
SELECT MIN(pick__number) FROM table_16441561_5 WHERE position = "LB"
what is the number of female patient with drug code adva250ih?
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.gender = "F" AND prescriptions.formulary_drug_cd = "ADVA250IH"
which patients were ordered cd3 cells, percent lab test?
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 diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title ...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE lab.label = "CD3 Cells, Percent"
how many patients whose death status is 1 and drug name is metolazone?
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 procedures (subject_id text,hadm_id text,icd9_code text,sho...
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 = "Metolazone"
What School is in the kio kio area?
CREATE TABLE table_70697 ("Name" text,"Years" text,"Gender" text,"Area" text,"Authority" text,"Decile" real,"Roll" real)
SELECT "Name" FROM table_70697 WHERE "Area" = 'kio kio'
the most number of comments on a single post.
CREATE TABLE TagSynonyms (Id number,SourceTagName text,TargetTagName text,CreationDate time,OwnerUserId number,AutoRenameCount number,LastAutoRename time,Score number,ApprovedByUserId number,ApprovalDate time)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,RevisionGUID other,CreationDate time...
SELECT p.Id AS post_id, COUNT(c.Id) AS comments_count FROM Posts AS p JOIN Comments AS c ON p.Id = c.PostId GROUP BY p.Id ORDER BY 2 DESC LIMIT 1
i want to fly from DALLAS FORT WORTH to PHILADELPHIA
CREATE TABLE time_zone (time_zone_code text,time_zone_name text,hours_from_gmt int)CREATE TABLE date_day (month_number int,day_number int,year int,day_name varchar)CREATE TABLE state (state_code text,state_name text,country_name text)CREATE TABLE airport (airport_code varchar,airport_name text,airport_location text,sta...
SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, flight WHERE CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DALLAS FORT WORTH' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name...
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 order by the x-axis in asc.
CREATE TABLE Products (Code INTEGER,Name VARCHAR(255),Price DECIMAL,Manufacturer INTEGER)CREATE TABLE Manufacturers (Code INTEGER,Name VARCHAR(255),Headquarter VARCHAR(255),Founder VARCHAR(255),Revenue REAL)
SELECT Founder, SUM(Price) FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Founder ORDER BY Founder
which type of drug is olanzapine (disintegrating tablet)?
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 prescriptions.drug_type FROM prescriptions WHERE prescriptions.drug = "Olanzapine (Disintegrating Tablet)"
What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft?
CREATE TABLE table_41283 ("Season" text,"Skip" text,"Third" text,"Second" text,"Lead" text)
SELECT "Season" FROM table_41283 WHERE "Lead" = 'don bartlett' AND "Third" = 'don walchuk' AND "Second" = 'carter rycroft'
Site ranking by tag score and distance behind those ranked just above.
CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate tim...
SELECT u.DisplayName, SUM(p.Score) AS total_score FROM Posts AS p JOIN Posts AS q ON q.Id = p.ParentId AND q.Tags LIKE '%<##tag##>%' JOIN Users AS u ON u.Id = p.OwnerUserId GROUP BY u.DisplayName HAVING SUM(p.Score) > 1000 ORDER BY SUM(p.Score) DESC
What was the publication date of the photos of Sean Preston Federline that cost $500,000 and were published by People?
CREATE TABLE table_name_90 (publication_date VARCHAR,person_s_ VARCHAR,reported_price VARCHAR,publisher_s_ VARCHAR)
SELECT publication_date FROM table_name_90 WHERE reported_price = "$500,000" AND publisher_s_ = "people" AND person_s_ = "sean preston federline"
What is the lowest car with more than 122 yards?
CREATE TABLE table_name_37 (car INTEGER,yards INTEGER)
SELECT MIN(car) FROM table_name_37 WHERE yards > 122
Which Total (kg) has a Clean & Jerk smaller than 153, and a Snatch smaller than 100?
CREATE TABLE table_78743 ("Name" text,"Bodyweight" real,"Snatch" real,"Clean & Jerk" real,"Total (kg)" real)
SELECT MIN("Total (kg)") FROM table_78743 WHERE "Clean & Jerk" < '153' AND "Snatch" < '100'
Ratio Answers Accepted Withtin 30 Minutes Over Questions With Accepted Answers.
CREATE TABLE ReviewTaskTypes (Id number,Name text,Description text)CREATE TABLE PostTypes (Id number,Name text)CREATE TABLE PostHistoryTypes (Id number,Name text)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title te...
SELECT (SELECT COUNT(Posts.Id) FROM Posts INNER JOIN Posts AS Ans ON Ans.Id = Posts.AcceptedAnswerId WHERE DATEDIFF_BIG(minute, Posts.CreationDate, Ans.CreationDate) < 30), (SELECT COUNT(Posts.Id) FROM Posts INNER JOIN Posts AS Ans ON Ans.Id = Posts.AcceptedAnswerId WHERE DATEDIFF_BIG(minute, Posts.CreationDate, Ans.Cr...
what is the number of patients whose admission location is clinic referral/premature and admission year is less than 2114?
CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethnicity text,expire_flag...
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.admission_location = "CLINIC REFERRAL/PREMATURE" AND demographic.admityear < "2114"
For those employees who do not work in departments with managers that have ids between 100 and 200, show me about the distribution of phone_number and salary in a bar chart, order by the bars in asc.
CREATE TABLE regions (REGION_ID decimal(5,0),REGION_NAME varchar(25))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 departments (DEP...
SELECT PHONE_NUMBER, SALARY FROM employees WHERE NOT DEPARTMENT_ID IN (SELECT DEPARTMENT_ID FROM departments WHERE MANAGER_ID BETWEEN 100 AND 200) ORDER BY PHONE_NUMBER
What was the ER average for the player that conceded 368 runs?
CREATE TABLE table_20282 ("Name" text,"Overs Bowled" text,"Maidens" real,"Runs Conceded" real,"Wickets" real,"Extras" real,"E.R." text)
SELECT "E.R." FROM table_20282 WHERE "Runs Conceded" = '368'
What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?
CREATE TABLE table_name_28 (reg_gp INTEGER,player VARCHAR,pick__number VARCHAR)
SELECT SUM(reg_gp) FROM table_name_28 WHERE player = "peter andersson" AND pick__number < 143
What is the largest points number where the difference is 12?
CREATE TABLE table_name_69 (points INTEGER,difference VARCHAR)
SELECT MAX(points) FROM table_name_69 WHERE difference = "12"
Which team had a second qualifying time of 58.539?
CREATE TABLE table_44709 ("Name" text,"Team" text,"Qual 1" text,"Qual 2" text,"Best" text)
SELECT "Team" FROM table_44709 WHERE "Qual 2" = '58.539'
What is the average crowd attendance for Collingwood?
CREATE TABLE table_78498 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT AVG("Crowd") FROM table_78498 WHERE "Home team" = 'collingwood'
What did the Tournament of Australian Championships, with an A in 1969, get in 1954?
CREATE TABLE table_name_28 (tournament VARCHAR)
SELECT 1954 FROM table_name_28 WHERE 1969 = "a" AND tournament = "australian championships"
What's the lowest amount of laps with a start of 21?
CREATE TABLE table_51401 ("Year" text,"Start" text,"Qual" text,"Rank" text,"Finish" text,"Laps" real)
SELECT MIN("Laps") FROM table_51401 WHERE "Start" = '21'
What was Melbourne's score as the home team?
CREATE TABLE table_32811 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Home team score" FROM table_32811 WHERE "Home team" = 'melbourne'
How many games is collingwood the home side?
CREATE TABLE table_33751 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT COUNT("Crowd") FROM table_33751 WHERE "Home team" = 'collingwood'
If the Home team was north melbourne and the Crowd was larger than 10,000, what was the Home team's score?
CREATE TABLE table_55726 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text)
SELECT "Home team score" FROM table_55726 WHERE "Crowd" > '10,000' AND "Home team" = 'north melbourne'
Which leagues entered in rounds where there were 16 winners from the previous round?
CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR,winners_from_previous_round VARCHAR)
SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE winners_from_previous_round = "16"
Which Year(s) won has a Total of 289?
CREATE TABLE table_name_71 (year_s__won VARCHAR,total VARCHAR)
SELECT year_s__won FROM table_name_71 WHERE total = 289
List of Users in a given location fragment sorted location. This query lists all users in a given location sorted by location.
CREATE TABLE PendingFlags (Id number,FlagTypeId number,PostId number,CreationDate time,CloseReasonTypeId number,CloseAsOffTopicReasonTypeId number,DuplicateOfQuestionId number,BelongsOnBaseHostAddress text)CREATE TABLE CloseAsOffTopicReasonTypes (Id number,IsUniversal boolean,InputTitle text,MarkdownInputGuidance text,...
SELECT Id AS "user_link", Location, Reputation FROM Users WHERE UPPER(LEFT(Location, 5)) = 'INDIA' AND Reputation >= '##minimumReputation##' ORDER BY Location
Which Lost is the lowest one that has a Name of esc holzkirchen, and Played smaller than 14?
CREATE TABLE table_name_79 (lost INTEGER,name VARCHAR,played VARCHAR)
SELECT MIN(lost) FROM table_name_79 WHERE name = "esc holzkirchen" AND played < 14
Who is the Japanese voice actor of the Battle of the Planets of Keyop?
CREATE TABLE table_name_87 (japanese_voice_actor VARCHAR,battle_of_the_planets VARCHAR)
SELECT japanese_voice_actor FROM table_name_87 WHERE battle_of_the_planets = "keyop"
Name the finish for a 39-31 record
CREATE TABLE table_name_64 (finish VARCHAR,record VARCHAR)
SELECT finish FROM table_name_64 WHERE record = "39-31"
A stacked bar chart showing the number of faults for different fault short name and skills required to fix them The x-axis is skill description and group by fault short name, show by the skill_description in desc.
CREATE TABLE Asset_Parts (asset_id INTEGER,part_id INTEGER)CREATE TABLE Parts (part_id INTEGER,part_name VARCHAR(255),chargeable_yn VARCHAR(1),chargeable_amount VARCHAR(20),other_part_details VARCHAR(255))CREATE TABLE Maintenance_Engineers (engineer_id INTEGER,company_id INTEGER,first_name VARCHAR(50),last_name VARCHAR...
SELECT skill_description, COUNT(skill_description) FROM Part_Faults AS T1 JOIN Skills_Required_To_Fix AS T2 ON T1.part_fault_id = T2.part_fault_id JOIN Skills AS T3 ON T2.skill_id = T3.skill_id GROUP BY fault_short_name, skill_description ORDER BY skill_description DESC