instruction stringlengths 0 1.06k | input stringlengths 11 5.3k | response stringlengths 2 4.44k |
|---|---|---|
Which city or state contains Calder Park Raceway? | CREATE TABLE table_50896 ("Race Title" text,"Circuit" text,"City / State" text,"Date" text,"Winner" text,"Team" text) | SELECT "City / State" FROM table_50896 WHERE "Circuit" = 'calder park raceway' |
Which engine did Marlboro Team Alfa Romeo used with a chassis of alfa romeo 179? | CREATE TABLE table_name_99 (engine VARCHAR,entrant VARCHAR,chassis VARCHAR) | SELECT engine FROM table_name_99 WHERE entrant = "marlboro team alfa romeo" AND chassis = "alfa romeo 179" |
what is c-span 2009 when times 2008** is 08? | CREATE TABLE table_65504 ("President" text,"Schl. 1948" text,"Schl. 1962" text,"M-B 1982" text,"CT 1982" text,"Siena 1982" text,"Siena 1990" text,"Siena 1994" text,"R-McI 1996" text,"Schl. 1996" text,"C-SPAN 1999" text,"WSJ 2000" text,"Siena 2002" text,"WSJ 2005" text,"Times 2008**" text,"C-SPAN 2009" text,"Siena 2010"... | SELECT "C-SPAN 2009" FROM table_65504 WHERE "Times 2008**" = '08' |
How many picks have canada as the nationality and larry courville is the player? | CREATE TABLE table_2886617_3 (pick VARCHAR,nationality VARCHAR,player VARCHAR) | SELECT COUNT(pick) FROM table_2886617_3 WHERE nationality = "Canada" AND player = "Larry Courville" |
how many black/cape verdean patients are below 24 years of age? | 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.ethnicity = "BLACK/CAPE VERDEAN" AND demographic.age < "24" |
Can you tell me how many credits I have so far ? | CREATE TABLE course_prerequisite (pre_course_id int,course_id int)CREATE TABLE area (course_id int,area varchar)CREATE TABLE semester (semester_id int,semester varchar,year int)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id int)CREATE TABLE program_requirement (program_id int... | SELECT DISTINCT total_credit FROM student WHERE student_id = 1 |
What state has a Net contribution per capita of $-171? | CREATE TABLE table_name_67 (state VARCHAR,net_contribution_per_capita VARCHAR) | SELECT state FROM table_name_67 WHERE net_contribution_per_capita = "$-171" |
what is the last time patient 031-23605 had the microbiology test when they came to the hospital first time? | 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 microlab.culturetakentime FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-23605' AND NOT patient.hospitaldischargetime IS NULL ORDER BY... |
How many knots did the Ms Moby Vincent have when passengers was less than 1.6? | CREATE TABLE table_name_11 (knots VARCHAR,ship VARCHAR,passengers VARCHAR) | SELECT COUNT(knots) FROM table_name_11 WHERE ship = "ms moby vincent" AND passengers < 1.6 |
What is the lowest 1994-1995, when Points is 145, and when Played is less than 114? | CREATE TABLE table_9670 ("Team" text,"Average" real,"Points" real,"Played" real,"1992-93" text,"1993-94" text,"1994-1995" real) | SELECT MIN("1994-1995") FROM table_9670 WHERE "Points" = '145' AND "Played" < '114' |
Name the season for august 16, 2010 | CREATE TABLE table_24330 ("Season" real,"Episode" real,"Episode Summary" text,"Premier date" text,"External Link" text,"Coach" text) | SELECT "Season" FROM table_24330 WHERE "Premier date" = 'August 16, 2010' |
How many ties occurred with a score of 2 2? | CREATE TABLE table_46618 ("Tie no" text,"Home team" text,"Score" text,"Away team" text,"Attendance" text) | SELECT "Tie no" FROM table_46618 WHERE "Score" = '2–2' |
What is the venue of the match on 5 April 2000? | CREATE TABLE table_name_45 (venue VARCHAR,date VARCHAR) | SELECT venue FROM table_name_45 WHERE date = "5 april 2000" |
What date did a game have a time of 3:44? | CREATE TABLE table_47247 ("Game" real,"Date" text,"Score" text,"Location" text,"Time" text,"Attendance" real) | SELECT "Date" FROM table_47247 WHERE "Time" = '3:44' |
When is The Opponents of lincoln city and a H / A of a? | CREATE TABLE table_39364 ("Date" text,"Opponents" text,"H / A" text,"Result F \u2013 A" text,"Attendance" real) | SELECT "Date" FROM table_39364 WHERE "Opponents" = 'lincoln city' AND "H / A" = 'a' |
Posts count for all tags. | 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 ReviewTaskResultTypes (Id number,Name text,Description text)CREATE TABLE FlagTypes (Id number,Name... | SELECT TagName, COUNT(*) AS cnt FROM (SELECT p.Id, T.TagName FROM Posts AS p INNER JOIN PostTags AS pt ON pt.PostId = p.Id INNER JOIN Tags AS t ON t.Id = pt.TagId) AS t1 GROUP BY TagName ORDER BY cnt DESC |
Tell me the time/retired for riccardo patrese | CREATE TABLE table_55492 ("Driver" text,"Constructor" text,"Laps" real,"Time/Retired" text,"Grid" real) | SELECT "Time/Retired" FROM table_55492 WHERE "Driver" = 'riccardo patrese' |
What is the main use of the structure that was in redfield, arkansas before 2004? | CREATE TABLE table_name_77 (main_use VARCHAR,year VARCHAR,town VARCHAR) | SELECT main_use FROM table_name_77 WHERE year < 2004 AND town = "redfield, arkansas" |
what were the number of times patient 4469 produced a right jp output during their last hospital encounter? | CREATE TABLE cost (row_id number,subject_id number,hadm_id number,event_type text,event_id number,chargetime time,cost number)CREATE TABLE d_labitems (row_id number,itemid number,label text)CREATE TABLE diagnoses_icd (row_id number,subject_id number,hadm_id number,icd9_code text,charttime time)CREATE TABLE d_items (row... | SELECT COUNT(*) FROM outputevents WHERE outputevents.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 4469 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1)) AND outputevents.itemid I... |
what were the top five most common diagnoses that patients were diagnosed during the same month after receiving intraaortic balloon pump removal until 2104? | 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 treatment (treatmentid number,patientunitstayid number,treatmentname text,treatment... | SELECT t3.diagnosisname FROM (SELECT t2.diagnosisname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'intraaortic balloon pump removal' AND ST... |
When did the home team score 12.17 (89)? | CREATE TABLE table_11702 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_11702 WHERE "Home team score" = '12.17 (89)' |
Which Player has a To Par smaller than 5, and a Score of 70-72=142? | CREATE TABLE table_60691 ("Place" text,"Player" text,"Country" text,"Score" text,"To Par" real) | SELECT "Player" FROM table_60691 WHERE "To Par" < '5' AND "Score" = '70-72=142' |
Show the party with drivers from Hartford and drivers older than 40. | CREATE TABLE school (school_id number,grade text,school text,location text,type text)CREATE TABLE school_bus (school_id number,driver_id number,years_working number,if_full_time others)CREATE TABLE driver (driver_id number,name text,party text,home_city text,age number) | SELECT party FROM driver WHERE home_city = 'Hartford' AND age > 40 |
How many years were recorded when world ranking was 21st? | CREATE TABLE table_19948664_2 (index__year_ VARCHAR,world_ranking__1_ VARCHAR) | SELECT COUNT(index__year_) FROM table_19948664_2 WHERE world_ranking__1_ = "21st" |
Are there Buddhism courses that have no prerequisites ? | CREATE TABLE gsi (course_offering_id int,student_id int)CREATE TABLE program_requirement (program_id int,category varchar,min_credit int,additional_req varchar)CREATE TABLE ta (campus_job_id int,student_id int,location varchar)CREATE TABLE offering_instructor (offering_instructor_id int,offering_id int,instructor_id in... | SELECT DISTINCT course.department, course.name, course.number FROM course INNER JOIN area ON course.course_id = area.course_id WHERE (area.area LIKE '%Buddhism%' OR course.description LIKE '%Buddhism%' OR course.name LIKE '%Buddhism%') AND course.enforced_requirement = 'N / A' |
What are the ids of the movies that are not reviewed by Brittany Harris. | CREATE TABLE movie (mid number,title text,year number,director text)CREATE TABLE rating (rid number,mid number,stars number,ratingdate time)CREATE TABLE reviewer (rid number,name text) | SELECT mid FROM rating EXCEPT SELECT T1.mid FROM rating AS T1 JOIN reviewer AS T2 ON T1.rid = T2.rid WHERE T2.name = "Brittany Harris" |
ELT Informatica Oracle in Moscow - Data Sience. | CREATE TABLE SuggestedEditVotes (Id number,SuggestedEditId number,UserId number,VoteTypeId number,CreationDate time,TargetUserId number,TargetRepChange number)CREATE TABLE SuggestedEdits (Id number,PostId number,CreationDate time,ApprovalDate time,RejectionDate time,OwnerUserId number,Comment text,Text text,Title text,... | WITH USER_BY_TAG AS (SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", u.Id AS "user_link", u.Reputation FROM Tags AS t INNER JOIN PostTags AS pt ON pt.TagId = t.Id INNER JOIN Posts AS p ON p.ParentId = pt.PostId INNER JOIN Votes AS v ON v.PostId = p.Id AND VoteTypeId = 2 INNER JOIN Users AS u ON u.Id = p.Own... |
What is the name on the Democratic ticket when the Workers ticket is james p. cannon? | CREATE TABLE table_39752 ("Office" text,"Democratic ticket" text,"Republican ticket" text,"Socialist ticket" text,"Workers ticket" text) | SELECT "Democratic ticket" FROM table_39752 WHERE "Workers ticket" = 'james p. cannon' |
which teams were the last to qualify ? | CREATE TABLE table_204_642 (id number,"team" text,"domestic tournament" text,"position" text,"appearance" text,"qualified" text) | SELECT "team" FROM table_204_642 WHERE "qualified" = (SELECT MAX("qualified") FROM table_204_642) |
who was the first winner men 's winner , in 1965 ? | CREATE TABLE table_203_872 (id number,"year" number,"location(s)" text,"number of contestants" number,"ladies winner" text,"men's winner" text) | SELECT "men's winner" FROM table_203_872 WHERE "year" = 1965 |
What is the lowest number of 3 pointers that occured in games with 52 steals? | CREATE TABLE table_73479 ("Player" text,"Games Played" real,"Minutes" real,"Field Goals" real,"Three Pointers" real,"Free Throws" real,"Rebounds" real,"Assists" real,"Blocks" real,"Steals" real,"Points" real) | SELECT MIN("Three Pointers") FROM table_73479 WHERE "Steals" = '52' |
Which venue has more than 9 against and a status of second test? | CREATE TABLE table_61302 ("Opposing Teams" text,"Against" real,"Date" text,"Venue" text,"Status" text) | SELECT "Venue" FROM table_61302 WHERE "Against" > '9' AND "Status" = 'second test' |
for patients who were given alpha/beta blocker since 4 years ago, what are the top three most common lab tests that followed within 2 months? | CREATE TABLE treatment (treatmentid number,patientunitstayid number,treatmentname text,treatmenttime time)CREATE TABLE medication (medicationid number,patientunitstayid number,drugname text,dosage text,routeadmin text,drugstarttime time,drugstoptime time)CREATE TABLE allergy (allergyid number,patientunitstayid number,d... | SELECT t3.labname FROM (SELECT t2.labname, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT patient.uniquepid, treatment.treatmenttime FROM treatment JOIN patient ON treatment.patientunitstayid = patient.patientunitstayid WHERE treatment.treatmentname = 'alpha/beta blocker' AND DATETIME(treatment.treatment... |
Where did Hawthorn have their away match against North Melbourne? | CREATE TABLE table_52650 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Venue" FROM table_52650 WHERE "Away team" = 'hawthorn' |
What was the earliest year that the result 21-17? | CREATE TABLE table_name_51 (year INTEGER,result VARCHAR) | SELECT MIN(year) FROM table_name_51 WHERE result = "21-17" |
List the names and birthdays of the top five players in terms of potential. | CREATE TABLE sqlite_sequence (name text,seq text)CREATE TABLE country (id number,name text)CREATE TABLE player_attributes (id number,player_fifa_api_id number,player_api_id number,date text,overall_rating number,potential number,preferred_foot text,attacking_work_rate text,defensive_work_rate text,crossing number,finis... | SELECT DISTINCT T1.player_name, T1.birthday FROM player AS T1 JOIN player_attributes AS T2 ON T1.player_api_id = T2.player_api_id ORDER BY potential DESC LIMIT 5 |
papers with more than 10 citations | CREATE TABLE paper (paperid int,title varchar,venueid int,year int,numciting int,numcitedby int,journalid int)CREATE TABLE paperkeyphrase (paperid int,keyphraseid int)CREATE TABLE paperdataset (paperid int,datasetid int)CREATE TABLE field (fieldid int)CREATE TABLE writes (paperid int,authorid int)CREATE TABLE venue (ve... | SELECT DISTINCT cite.citingpaperid FROM cite, paper WHERE paper.paperid = cite.citedpaperid GROUP BY cite.citingpaperid HAVING COUNT(DISTINCT cite.citedpaperid) > 10 |
What CFL team got their draft pick from North Dakota? | CREATE TABLE table_3227 ("Pick #" real,"CFL Team" text,"Player" text,"Position" text,"College" text) | SELECT "CFL Team" FROM table_3227 WHERE "College" = 'North Dakota' |
What is Opponents, when Partner is Mervana Jugi -Salki ? | CREATE TABLE table_46683 ("Outcome" text,"Date" text,"Tournament" text,"Surface" text,"Partner" text,"Opponents" text,"Score" text) | SELECT "Opponents" FROM table_46683 WHERE "Partner" = 'mervana jugić-salkić' |
provide the number of patients whose age is less than 31 and procedure long title is insertion of endotracheal tube? | CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid text)CREATE TABLE demographic (subject_id text,hadm_id text,name text,marital_status text,age text,dob text,gender text,language text,religion text,admission_type text,days_stay text,insurance text,ethni... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "31" AND procedures.long_title = "Insertion of endotracheal tube" |
Which Opponent has a Result of 1 1, and a Date of 28 november 1998? | CREATE TABLE table_name_30 (opponent VARCHAR,result VARCHAR,date VARCHAR) | SELECT opponent FROM table_name_30 WHERE result = "1–1" AND date = "28 november 1998" |
What year has a Top 25 of 0, and a Earnings ($) larger than 0? | CREATE TABLE table_56528 ("Year" text,"Starts" real,"Cuts made" real,"Wins" real,"Top 10" real,"Top 25" real,"Earnings ($)" real,"Money list rank" text) | SELECT "Year" FROM table_56528 WHERE "Top 25" = '0' AND "Earnings ($)" > '0' |
Find off topic minecraft quesitons. Get all the off topic closed minecraft questions | CREATE TABLE Badges (Id number,UserId number,Name text,Date time,Class number,TagBased boolean)CREATE TABLE Votes (Id number,PostId number,VoteTypeId number,UserId number,CreationDate time,BountyAmount number)CREATE TABLE PostHistory (Id number,PostHistoryTypeId number,PostId number,RevisionGUID other,CreationDate time... | SELECT Id AS "post_link", Title AS "post_title", Body AS "post_body", Score AS "vote_count" FROM Posts WHERE NOT ClosedDate IS NULL AND Title LIKE '%minecraft%' AND Score < 0 |
What is the final score of the game on April 9? | CREATE TABLE table_23248967_10 (score VARCHAR,date VARCHAR) | SELECT score FROM table_23248967_10 WHERE date = "April 9" |
What is the title of the German film that is originally called Mama, Ich Lebe? | CREATE TABLE table_80036 ("Country" text,"Film title used in nomination" text,"Language" text,"Original name" text,"Director" text) | SELECT "Film title used in nomination" FROM table_80036 WHERE "Language" = 'german' AND "Original name" = 'mama, ich lebe' |
What is the average overall rank of all players drafted from Duke after round 9? | CREATE TABLE table_32584 ("Round" real,"Overall" real,"Player" text,"Position" text,"School/Club Team" text) | SELECT AVG("Overall") FROM table_32584 WHERE "School/Club Team" = 'duke' AND "Round" > '9' |
Which Date has a Time of 11:00, and a Set 3 of 25 18? | CREATE TABLE table_name_62 (date VARCHAR,time VARCHAR,set_3 VARCHAR) | SELECT date FROM table_name_62 WHERE time = "11:00" AND set_3 = "25–18" |
How many students are enrolled in the class taught by some professor from the accounting department? | CREATE TABLE course (crs_code text,dept_code text,crs_description text,crs_credit number)CREATE TABLE class (class_code text,crs_code text,class_section text,class_time text,class_room text,prof_num number)CREATE TABLE employee (emp_num number,emp_lname text,emp_fname text,emp_initial text,emp_jobcode text,emp_hiredate... | SELECT COUNT(*) FROM class AS T1 JOIN enroll AS T2 ON T1.class_code = T2.class_code JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN department AS T4 ON T3.dept_code = T4.dept_code WHERE T4.dept_name = 'Accounting' |
What was The Word for production code 6084? | CREATE TABLE table_25691838_6 (the_wørd VARCHAR,production_code VARCHAR) | SELECT the_wørd FROM table_25691838_6 WHERE production_code = 6084 |
what's the imperial that contains a jyutping of cin4? | CREATE TABLE table_38997 ("Jyutping" text,"Character" text,"Portuguese" text,"Relative value" text,"Metric value" text,"Imperial value" text) | SELECT "Imperial value" FROM table_38997 WHERE "Jyutping" = 'cin4' |
how many total medals did china , japan , and south korea collect ? | CREATE TABLE table_204_383 (id number,"rank" number,"nation" text,"gold" number,"silver" number,"bronze" number,"total" number) | SELECT SUM("total") FROM table_204_383 WHERE "nation" IN ('china', 'japan', 'south korea') |
What is the placement date of the order whose invoice number is 10, and count them by a line chart | CREATE TABLE Order_Items (order_item_id INTEGER,product_id INTEGER,order_id INTEGER,order_item_status VARCHAR(10),order_item_details VARCHAR(255))CREATE TABLE Customers (customer_id INTEGER,customer_name VARCHAR(80),customer_details VARCHAR(255))CREATE TABLE Products (product_id INTEGER,product_name VARCHAR(80),product... | SELECT date_order_placed, COUNT(date_order_placed) FROM Orders AS T1 JOIN Shipments AS T2 ON T1.order_id = T2.order_id WHERE T2.invoice_number = 10 |
type i diabetes mellitus. documentation of negative basal and stimulated c _ peptide ( a basal level of < / = 0.2 ng / ml before iv administration of 1 mg of glucagon, and a glucagon stimulated c _ peptide < / = 0.8 ng / ml ) and diagnosis of diabetes for at least 5 years. | CREATE TABLE table_dev_19 ("id" int,"glucagon_stimulated_c_peptide" float,"c_peptide_level" float,"hemoglobin_a1c_hba1c" float,"diabetic" string,"hyperlipidemia" bool,"creatinine_clearance_cl" float,"total_cholesterol" int,"stimulated_c_peptide" float,"smoking" bool,"insulin_requirement" float,"diabetes" bool,"albumin_... | SELECT * FROM table_dev_19 WHERE diabetic = 'i' AND negative_basal = 1 AND stimulated_c_peptide = 1 OR (c_peptide_level < 0.2 AND glucagon_stimulated_c_peptide <= 0.8) AND diabetes = 1 |
Calculate the number of patients with t5 fracture as primary disease and icd9 code 8105 | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.diagnosis = "T5 FRACTURE" AND procedures.icd9_code = "8105" |
What was the stage of team Once? | CREATE TABLE table_name_49 (stage VARCHAR,trofeo_fast_team VARCHAR) | SELECT stage FROM table_name_49 WHERE trofeo_fast_team = "once" |
What is the result when the time was 5:00 and a record of 14-4? | CREATE TABLE table_56534 ("Res." text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Time" text,"Location" text) | SELECT "Res." FROM table_56534 WHERE "Time" = '5:00' AND "Record" = '14-4' |
Who voted for a post. | CREATE TABLE VoteTypes (Id number,Name text)CREATE TABLE PostsWithDeleted (Id number,PostTypeId number,AcceptedAnswerId number,ParentId number,CreationDate time,DeletionDate time,Score number,ViewCount number,Body text,OwnerUserId number,OwnerDisplayName text,LastEditorUserId number,LastEditorDisplayName text,LastEditD... | SELECT Votes.UserId AS "user_link", CASE WHEN Votes.VoteTypeId = 2 THEN 'Upvote' WHEN Votes.VoteTypeId = 3 THEN 'Downvote' END AS "type", Votes.CreationDate, Votes.VoteTypeId FROM Votes WHERE Votes.PostId = '##PostId##' |
Which lost has 84 as the match points? | CREATE TABLE table_name_52 (lost VARCHAR,match_points VARCHAR) | SELECT lost FROM table_name_52 WHERE match_points = "84" |
What Version has a Title of alarm clock? | CREATE TABLE table_60970 ("Title" text,"Developer" text,"Category" text,"Release date" text,"Version" text) | SELECT "Version" FROM table_60970 WHERE "Title" = 'alarm clock' |
What is the highest L of the tournament? | CREATE TABLE table_31199 ("Skip (Club)" text,"W" real,"L" real,"PF" real,"PA" real,"Ends Won" real,"Ends Lost" real,"Blank Ends" real,"Stolen Ends" real) | SELECT MAX("L") FROM table_31199 |
what was the first opera composed in the 1900s ? | CREATE TABLE table_204_354 (id number,"opus" text,"title" text,"genre" text,"sub\u00addivisions" text,"libretto" text,"composition" text,"premiere date" text,"place,theatre" text) | SELECT "title" FROM table_204_354 WHERE "composition" >= 1900 ORDER BY "composition" LIMIT 1 |
okay i need to get a flight from HOUSTON to SEATTLE | CREATE TABLE restriction (restriction_code text,advance_purchase int,stopovers text,saturday_stay_required text,minimum_stay int,maximum_stay int,application text,no_discounts text)CREATE TABLE aircraft (aircraft_code varchar,aircraft_description varchar,manufacturer varchar,basic_type varchar,engines int,propulsion va... | 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 = 'HOUSTON' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SEATTL... |
What's the district that Otto Passman is the incumbent of? | CREATE TABLE table_1341843_19 (district VARCHAR,incumbent VARCHAR) | SELECT district FROM table_1341843_19 WHERE incumbent = "Otto Passman" |
Name the date with a home team of melbourne | CREATE TABLE table_name_74 (date VARCHAR,home_team VARCHAR) | SELECT date FROM table_name_74 WHERE home_team = "melbourne" |
how many patients have received opn rt hemicolectomy nec during the same hospital encounter after the first treatment of contrast arteriogram-leg since 4 years ago? | CREATE TABLE d_labitems (row_id number,itemid number,label text)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 inputevents_cv (row_id number,subject_id number,hadm_id number,icustay_id number,chart... | SELECT COUNT(DISTINCT t1.subject_id) FROM (SELECT admissions.subject_id, procedures_icd.charttime, admissions.hadm_id 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_... |
how many patienst speak cape language and were transfered within this facility? | 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,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE diagnoses (subject_id text,hadm_id tex... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.language = "CAPE" AND demographic.admission_location = "TRSF WITHIN THIS FACILITY" |
When william b. campbell (u) is the successor what is the district? | CREATE TABLE table_24398 ("District" text,"Vacator" text,"Reason for change" text,"Successor" text,"Date successor seated" text) | SELECT "District" FROM table_24398 WHERE "Successor" = 'William B. Campbell (U)' |
number of points scored by miami -lrb- oh -rrb- against the broncos . | CREATE TABLE table_204_219 (id number,"date" text,"time" text,"opponent#" text,"rank#" text,"site" text,"tv" text,"result" text,"attendance" number) | SELECT "result" FROM table_204_219 WHERE "opponent#" = 'miami (oh)' |
what is diagnoses long title and procedure long title of subject id 92796? | CREATE TABLE prescriptions (subject_id text,hadm_id text,icustay_id text,drug_type text,drug text,formulary_drug_cd text,route text,drug_dose text)CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime te... | SELECT diagnoses.long_title, procedures.long_title FROM diagnoses INNER JOIN procedures ON diagnoses.hadm_id = procedures.hadm_id WHERE diagnoses.subject_id = "92796" |
Which seasons were directed by Nelson McCormick? | CREATE TABLE table_21629 ("Series #" real,"Season #" real,"Title" text,"Directed by" text,"Written by" text,"Original air date" text) | SELECT "Title" FROM table_21629 WHERE "Directed by" = 'Nelson McCormick' |
How many million U.s. Viewers watched episode 12 in the season? | CREATE TABLE table_2578 ("No. in series" text,"No. in season" text,"Title" text,"Directed by" text,"Written by" text,"Original air date" text,"Production code" text,"U.S. viewers (millions)" text) | SELECT "U.S. viewers (millions)" FROM table_2578 WHERE "No. in season" = '12' |
which whitworth size is the only one with 5 threads per inch ? | CREATE TABLE table_204_828 (id number,"whitworth size (in)" number,"core diameter (in)" number,"threads per inch" number,"pitch (in)" number,"tapping drill size" text) | SELECT "whitworth size (in)" FROM table_204_828 WHERE "threads per inch" = 5 |
what is the lowest votes of the candidate ranked 5th and riding in victoria? | CREATE TABLE table_name_94 (votes INTEGER,rank VARCHAR,riding VARCHAR) | SELECT MIN(votes) FROM table_name_94 WHERE rank = "5th" AND riding = "victoria" |
What are the average ratings for ? | CREATE TABLE table_name_24 (average_ratings VARCHAR,japanese_title VARCHAR) | SELECT average_ratings FROM table_name_24 WHERE japanese_title = "プリマダム" |
Who had the most points in game 4? | CREATE TABLE table_21414 ("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_21414 WHERE "Game" = '4' |
What race did Glenn Seton win on the Sandown International Raceway circuit? | CREATE TABLE table_42350 ("Race Title" text,"Circuit" text,"City / State" text,"Date" text,"Winner" text,"Team" text) | SELECT "Race Title" FROM table_42350 WHERE "Winner" = 'glenn seton' AND "Circuit" = 'sandown international raceway' |
Which Authority is set for Hauturu School? | CREATE TABLE table_70696 ("Name" text,"Years" text,"Gender" text,"Area" text,"Authority" text,"Decile" real,"Roll" real) | SELECT "Authority" FROM table_70696 WHERE "Name" = 'hauturu school' |
how many of the female patients had a lab test for mcv? | CREATE TABLE procedures (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE diagnoses (subject_id text,hadm_id text,icd9_code text,short_title text,long_title text)CREATE TABLE lab (subject_id text,hadm_id text,itemid text,charttime text,flag text,value_unit text,label text,fluid ... | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN lab ON demographic.hadm_id = lab.hadm_id WHERE demographic.gender = "F" AND lab.label = "MCV" |
What ride was manufactured by Zierer? | CREATE TABLE table_name_43 (ride_name VARCHAR,manufacturer VARCHAR) | SELECT ride_name FROM table_name_43 WHERE manufacturer = "zierer" |
For an apparent magnitude greater than 11.8 what Right ascension value is assigned? | CREATE TABLE table_56181 ("NGC number" real,"Object type" text,"Constellation" text,"Right ascension (J2000)" text,"Declination (J2000)" text,"Apparent magnitude" real) | SELECT "Right ascension ( J2000 )" FROM table_56181 WHERE "Apparent magnitude" > '11.8' |
find the number of patients admitted in emergency who had lab test named sodium, 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 demographic.admission_type = "EMERGENCY" AND lab.label = "Sodium, Urine" |
Who is the color commentator in 2008? | CREATE TABLE table_name_16 (color_commentator_s_ VARCHAR,year VARCHAR) | SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008 |
What is the result of a round greater than 3? | CREATE TABLE table_59527 ("Result" text,"Record" text,"Opponent" text,"Method" text,"Event" text,"Round" real,"Location" text) | SELECT "Result" FROM table_59527 WHERE "Round" > '3' |
How many Persian Wars have a School of rashtriya indian military college, and an 1860-1878 smaller than 0? | CREATE TABLE table_71318 ("School" text,"Location" text,"Total" real,"Crimean War" real,"Persian War" real,"Indian Mutiny" real,"1860-1878" real,"Zulu War" real,"Second Afghan War" text) | SELECT COUNT("Persian War") FROM table_71318 WHERE "School" = 'rashtriya indian military college' AND "1860-1878" < '0' |
Name the position for 2.16 | CREATE TABLE table_23670057_1 (position VARCHAR,height__m_ VARCHAR) | SELECT position FROM table_23670057_1 WHERE height__m_ = "2.16" |
How many weeks had an Attendance of 43,272? | CREATE TABLE table_name_30 (week VARCHAR,attendance VARCHAR) | SELECT COUNT(week) FROM table_name_30 WHERE attendance = "43,272" |
who was the last opponent according to this chart ? | CREATE TABLE table_203_741 (id number,"season" text,"competition" text,"round" text,"opponent" text,"home" text,"away" text,"aggregate" text) | SELECT "opponent" FROM table_203_741 ORDER BY id DESC LIMIT 1 |
Please show the most common status of roller coasters. | CREATE TABLE roller_coaster (Status VARCHAR) | SELECT Status FROM roller_coaster GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1 |
What was the lowest round that Melvin Johnson played? | CREATE TABLE table_name_99 (round INTEGER,player VARCHAR) | SELECT MIN(round) FROM table_name_99 WHERE player = "melvin johnson" |
Name the men's singles for when doubles are suresh goel morin d'souza | CREATE TABLE table_14732 ("Year" real,"Men's singles" text,"Women's singles" text,"Men's doubles" text,"Women's doubles" text,"Mixed doubles" text) | SELECT "Men's singles" FROM table_14732 WHERE "Mixed doubles" = 'suresh goel morin d''souza' |
Show the short names of the buildings managed by 'Emma'. | CREATE TABLE Apartment_Buildings (building_short_name VARCHAR,building_manager VARCHAR) | SELECT building_short_name FROM Apartment_Buildings WHERE building_manager = "Emma" |
What date did the away team score 13.10 (88)? | CREATE TABLE table_54274 ("Home team" text,"Home team score" text,"Away team" text,"Away team score" text,"Venue" text,"Crowd" real,"Date" text) | SELECT "Date" FROM table_54274 WHERE "Away team score" = '13.10 (88)' |
What is the location of game 7? | CREATE TABLE table_name_1 (location VARCHAR,game VARCHAR) | SELECT location FROM table_name_1 WHERE game = 7 |
Which club has 565 points? | CREATE TABLE table_18963 ("Club" text,"Played" text,"Won" 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 "Club" FROM table_18963 WHERE "Points for" = '565' |
how many patients aged below 74 years had the procedure short title form cutan ileoureterost? | 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 procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "74" AND procedures.short_title = "Form cutan ileoureterost" |
what is the name of the medication prescribed to patient 54386 within 2 days after having received a entral infus nutrit sub procedure on their last hospital encounter? | CREATE TABLE chartevents (row_id number,subject_id number,hadm_id number,icustay_id number,itemid number,charttime time,valuenum number,valueuom text)CREATE TABLE icustays (row_id number,subject_id number,hadm_id number,icustay_id number,first_careunit text,last_careunit text,first_wardid number,last_wardid number,inti... | SELECT t2.drug FROM (SELECT admissions.subject_id, procedures_icd.charttime FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE admissions.subject_id = 54386 AND procedures_icd.icd9_code = (SELECT d_icd_procedures.icd9_code FROM d_icd_procedures WHERE d_icd_procedures.short_title = ... |
For those employees who did not have any job in the past, draw a bar chart about the distribution of job_id and the sum of department_id , and group by attribute job_id, and I want to show by the X-axis in ascending. | 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 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),CO... | SELECT JOB_ID, SUM(DEPARTMENT_ID) FROM employees WHERE NOT EMPLOYEE_ID IN (SELECT EMPLOYEE_ID FROM job_history) GROUP BY JOB_ID ORDER BY JOB_ID |
What are the different region names, ordered by labels? | CREATE TABLE party (party_id number,minister text,took_office text,left_office text,region_id number,party_name text)CREATE TABLE party_events (event_id number,event_name text,party_id number,member_in_charge_id number)CREATE TABLE region (region_id number,region_name text,date text,label text,format text,catalogue tex... | SELECT DISTINCT region_name FROM region ORDER BY label |
A bar chart about what are the statuses and average populations of each city?, and sort names in descending order. | CREATE TABLE farm (Farm_ID int,Year int,Total_Horses real,Working_Horses real,Total_Cattle real,Oxen real,Bulls real,Cows real,Pigs real,Sheep_and_Goats real)CREATE TABLE farm_competition (Competition_ID int,Year int,Theme text,Host_city_ID int,Hosts text)CREATE TABLE city (City_ID int,Official_Name text,Status text,Ar... | SELECT Status, AVG(Population) FROM city GROUP BY Status ORDER BY Status DESC |
Which water has green wood? | CREATE TABLE table_33961 ("Element" text,"Wood" text,"Fire" text,"Earth" text,"Metal" text,"Water" text) | SELECT "Water" FROM table_33961 WHERE "Wood" = 'green' |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.