text
stringlengths
197
8.39k
### Context: CREATE TABLE table_68652 ( "Tournament" text, "2003" text, "2007" text, "2008" text, "2009" text, "2011" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the 2007 value with 1r in 2009 and 2r in 2011 at the Tournament of Wimbl...
### Context: CREATE TABLE table_32685 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Venue" text, "Crowd" real, "Date" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who played as the home team when th...
### Context: CREATE TABLE airline ( airline_code varchar, airline_name text, note text ) CREATE TABLE city ( city_code varchar, city_name varchar, state_code varchar, country_name varchar, time_zone_code varchar ) CREATE TABLE flight_stop ( flight_id int, stop_number int, s...
### Context: CREATE TABLE table_24455 ( "No." real, "#" real, "Title" text, "Directed by" text, "Written by" text, "U.S. viewers (million)" text, "Original air date" text, "Production code" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- ...
### Context: CREATE TABLE table_name_69 ( nature_of_incident VARCHAR, circumstances VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the nature of the incident that's a bomb attack? ### Query: SELECT nature_of_incident FROM table_name_69 WHERE circums...
### Context: CREATE TABLE table_name_19 ( opponents VARCHAR, result VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When the result is d, who are the opponents? ### Query: SELECT opponents FROM table_name_19 WHERE result = "d"
### Context: CREATE TABLE table_13699 ( "Year" real, "Labour" real, "Lib Dem" real, "Green" real, "IWCA" real, "Independent" real, "Conservative" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the the average Lib Dem with Conservative s...
### Context: CREATE TABLE table_22050544_1 ( winner VARCHAR, elapsed_time VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the winner with an elapsed time of 12 h 42 min? ### Query: SELECT winner FROM table_22050544_1 WHERE elapsed_time = "12 h 42 min"
### Context: CREATE TABLE table_name_4 ( gold VARCHAR, nation VARCHAR, silver VARCHAR, bronze VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of gold when the silver is 1, bronze is 1, and the nation is Austria? ### Query: SELECT C...
### Context: CREATE TABLE table_name_6 ( venue VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Where was the game played on 30 May 2004? ### Query: SELECT venue FROM table_name_6 WHERE date = "30 may 2004"
### Context: 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, intime time, outtime time ) CREATE TABLE cost ( row_id number, subject_id number, ...
### Context: CREATE TABLE table_50099 ( "Player" text, "Nationality" text, "Position" text, "Years for Grizzlies" text, "School/Club Team" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the nationality of a point guard position in 1999-2001...
### Context: CREATE TABLE table_11545282_11 ( position VARCHAR, no VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the position of number 47? ### Query: SELECT position FROM table_11545282_11 WHERE no = "47"
### Context: CREATE TABLE table_name_72 ( serial_format VARCHAR, design VARCHAR, serials_issued VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the serial format for white on blue with a serial issued of ss-00-00 to zz-99-99? ### Query: SELECT se...
### Context: CREATE TABLE table_26613 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "U.S. viewers (millions)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What'...
### Context: CREATE TABLE table_64733 ( "Township" text, "County" text, "Pop. (2010)" real, "Land ( sqmi )" real, "Water (sqmi)" real, "Latitude" real, "Longitude" real, "GEO ID" real, "ANSI code" real ) -- Using valid SQLite, answer the following questions for the tables provided ...
### Context: CREATE TABLE table_63048 ( "Year" real, "Date" text, "Winners" text, "Score" text, "Runners Up" text, "Att." real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the score for the matchup having attendance of 354? ### Query: SEL...
### Context: CREATE TABLE table_43654 ( "Rank" real, "Country" text, "Year" real, "Males" real, "Females" real, "Total" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the biggest number of females where the males are at 28.2 with a rank ...
### Context: 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 ...
### Context: CREATE TABLE table_name_71 ( venue VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the venue for the game on 10-09-2012? ### Query: SELECT venue FROM table_name_71 WHERE date = "10-09-2012"
### Context: CREATE TABLE table_27491610_2 ( no_in_season INTEGER, no_in_series VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What number in season is number 141 in series? ### Query: SELECT MAX(no_in_season) FROM table_27491610_2 WHERE no_in_series = 141
### Context: CREATE TABLE table_60960 ( "Cover Date" text, "Story Title" text, "Writer/s" text, "Letterer/s" text, "Colourist/s" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Cover Date of the Story Title Spacehikers (Part 2)? ### Quer...
### Context: CREATE TABLE ENROLL ( CLASS_CODE varchar(5), STU_NUM int, ENROLL_GRADE varchar(50) ) CREATE TABLE EMPLOYEE ( EMP_NUM int, EMP_LNAME varchar(15), EMP_FNAME varchar(12), EMP_INITIAL varchar(1), EMP_JOBCODE varchar(5), EMP_HIREDATE datetime, EMP_DOB datetime ) CREATE ...
### Context: CREATE TABLE table_49732 ( "Round" real, "Player" text, "Position" text, "Nationality" text, "College/Junior/Club Team (League)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many rounds does Colby Robak have with a position of (d)...
### Context: CREATE TABLE table_204_131 ( id number, "tops design code" text, "electrical system" text, "max speed" text, "weight" text, "brakes" text, "route availability" number, "notes" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- h...
### Context: CREATE TABLE zyjzjlb ( CYBQDM text, CYBQMC text, CYCWH text, CYKSDM text, CYKSMC text, CYSJ time, CYZTDM number, HZXM text, JZKSDM text, JZKSMC text, JZLSH text, KH text, KLX number, MZBMLX number, MZJZLSH text, MZZDBM text, MZZDMC text, ...
### Context: CREATE TABLE table_14500 ( "Name" text, "Years" text, "Gender" text, "Area" text, "Authority" text, "Decile" real, "Roll" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What years does the school have with a roll of 33? ### Que...
### Context: CREATE TABLE stock ( shop_id number, device_id number, quantity number ) CREATE TABLE device ( device_id number, device text, carrier text, package_version text, applications text, software_platform text ) CREATE TABLE shop ( shop_id number, shop_name text, ...
### Context: CREATE TABLE CLASS ( CLASS_CODE varchar(5), CRS_CODE varchar(10), CLASS_SECTION varchar(2), CLASS_TIME varchar(20), CLASS_ROOM varchar(8), PROF_NUM int ) CREATE TABLE ENROLL ( CLASS_CODE varchar(5), STU_NUM int, ENROLL_GRADE varchar(50) ) CREATE TABLE PROFESSOR ( E...
### Context: 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, admissi...
### Context: CREATE TABLE t_kc21 ( MED_CLINIC_ID text, OVERALL_CD_ORG text, OVERALL_CD_PERSON text, COMP_ID text, PERSON_ID text, PERSON_NM text, IDENTITY_CARD text, SOC_SRT_CARD text, PERSON_SEX number, PERSON_AGE number, IN_HOSP_DATE time, OUT_HOSP_DATE time, DIFF_P...
### Context: CREATE TABLE certificate ( eid number(9,0), aid number(9,0) ) CREATE TABLE flight ( flno number(4,0), origin varchar2(20), destination varchar2(20), distance number(6,0), departure_date date, arrival_date date, price number(7,2), aid number(9,0) ) CREATE TABLE airc...
### Context: CREATE TABLE table_66626 ( "City of license" text, "Identifier" text, "Frequency" text, "Power" text, "Class" text, "RECNet" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Class has the Identifier of CBFX-FM-6? ### Query: SELE...
### Context: CREATE TABLE prescriptions ( row_id number, subject_id number, hadm_id number, startdate time, enddate time, drug text, dose_val_rx text, dose_unit_rx text, route text ) CREATE TABLE d_icd_procedures ( row_id number, icd9_code text, short_title text, lon...
### Context: CREATE TABLE table_13456202_1 ( founded INTEGER, school VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- WHat year was north college hill high school founded? ### Query: SELECT MAX(founded) FROM table_13456202_1 WHERE school = "North College Hill...
### Context: CREATE TABLE dual_carrier ( main_airline varchar, low_flight_number int, high_flight_number int, dual_airline varchar, service_name text ) CREATE TABLE airport ( airport_code varchar, airport_name text, airport_location text, state_code varchar, country_name varchar...
### Context: CREATE TABLE table_name_33 ( name VARCHAR, games VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who won a medal at the 2008 Beijing Olympics? ### Query: SELECT name FROM table_name_33 WHERE games = "2008 beijing"
### Context: CREATE TABLE table_204_22 ( id number, "date" text, "opponent#" text, "rank#" text, "site" text, "result" text, "attendance" number, "record" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many of the games were the illi...
### Context: CREATE TABLE table_26397 ( "Series #" real, "Season #" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- List the title for the season episode number of 8. ...
### Context: CREATE TABLE table_61891 ( "Week 1" text, "Week 2" text, "Week 3" text, "Week 4" text, "Week 5" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the cyber girl in week 3 when Demi Jessica was the cyber girl in week 1? ### Query: S...
### Context: 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 tex...
### Context: CREATE TABLE table_name_21 ( pop__2010_ INTEGER, latitude VARCHAR, land___sqmi__ VARCHAR, ansi_code VARCHAR, longitude VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Pop (2010) has an ANSI code smaller than 1036864, and a Longi...
### Context: CREATE TABLE table_name_73 ( money___$__ VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How much did Larry Nelson win? ### Query: SELECT money___$__ FROM table_name_73 WHERE player = "larry nelson"
### Context: CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime time ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, aller...
### Context: CREATE TABLE table_name_53 ( evening_gown INTEGER, average VARCHAR, swimsuit VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Tell me the sum of evening gown for average of 9.06 and swimsuit less than 8.76 ### Query: SELECT SUM(evening_gown) ...
### Context: CREATE TABLE table_204_940 ( id number, "year" number, "tournaments\nplayed" number, "cuts\nmade" number, "wins" number, "2nd" number, "3rd" number, "top 10s" number, "best\nfinish" text, "earnings\n(\u20ac)" number, "money\nlist rank" number, "scoring\navera...
### Context: CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time...
### Context: CREATE TABLE table_204_922 ( id number, "rank" number, "nation" text, "gold" number, "silver" number, "bronze" number, "total" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which country scored the most gold medals at this ev...
### Context: CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug_cd text, route text, drug_d...
### Context: CREATE TABLE procedures_icd ( row_id number, subject_id number, hadm_id number, icd9_code text, charttime time ) CREATE TABLE d_icd_procedures ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses_icd ( row_id number, subje...
### Context: CREATE TABLE table_15765 ( "Shirt No" real, "Player" text, "Birth Date" text, "Weight" real, "Height" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Birth Date of 8 November 1980, and a Weight smaller than 93 has what sum of a shirt num...
### Context: CREATE TABLE table_19259 ( "AGR Power Station" text, "Net MWe" real, "Construction started" real, "Connected to grid" real, "Commercial operation" real, "Accounting closure date" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What y...
### Context: CREATE TABLE d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE d_items ( row_id number, itemid number, label text, linksto text ) CREATE TABLE ...
### Context: CREATE TABLE table_33009 ( "Region" text, "Host" text, "Venue" text, "City" text, "State" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What region does the University of California, Los Angeles play in? ### Query: SELECT "Region" FRO...
### Context: CREATE TABLE table_23705843_1 ( original_air_date VARCHAR, ratings__millions_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the original air date if the ratings is 1.92 million? ### Query: SELECT original_air_date FROM table_23705843_1...
### Context: CREATE TABLE program ( program_id int, name varchar, college varchar, introduction varchar ) CREATE TABLE program_requirement ( program_id int, category varchar, min_credit int, additional_req varchar ) CREATE TABLE student_record ( student_id int, course_id int, ...
### Context: CREATE TABLE table_27771406_1 ( club VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What club did Cyril Christiani play for? ### Query: SELECT club FROM table_27771406_1 WHERE player = "Cyril Christiani"
### Context: CREATE TABLE player ( Player_ID int, Player text, Years_Played text, Total_WL text, Singles_WL text, Doubles_WL text, Team int ) CREATE TABLE team ( Team_id int, Name text ) CREATE TABLE match_season ( Season real, Player text, Position text, Country in...
### Context: 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, reli...
### Context: CREATE TABLE table_71812 ( "Date" text, "Visiting Team" text, "Final Score" text, "Host Team" text, "Stadium" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Host Team has Final Score of 42-23? ### Query: SELECT "Host Team" FROM t...
### Context: CREATE TABLE table_name_88 ( phonetic VARCHAR, standard_thai VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the phonetic when the standard thai is ? ### Query: SELECT phonetic FROM table_name_88 WHERE standard_thai = "ผ่า"
### Context: CREATE TABLE Products ( Product_ID INTEGER, Product_Type_Code CHAR(15), Product_Name VARCHAR(255), Product_Price DECIMAL(20,4) ) CREATE TABLE Parties ( Party_ID INTEGER, Party_Details VARCHAR(255) ) CREATE TABLE Products_in_Events ( Product_in_Event_ID INTEGER, Event_ID IN...
### Context: CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE PostNoticeTypes ( Id number, ClassId number, Name text, Body text, IsHidden boolean, Predefined boolean, PostNoticeDurationId number ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TA...
### Context: CREATE TABLE d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) 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, ...
### Context: CREATE TABLE table_10975034_5 ( college VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What college did Craig Zimmer go to? ### Query: SELECT college FROM table_10975034_5 WHERE player = "Craig Zimmer"
### Context: CREATE TABLE table_train_31 ( "id" int, "allergy_to_insulin" bool, "active_infection" bool, "periodic_paralysis" bool, "receiving_continuous_intravenous_inotropic_support" bool, "age" float, "NOUSE" float ) -- Using valid SQLite, answer the following questions for the tables p...
### Context: CREATE TABLE table_67601 ( "Rank" real, "Lane" real, "Name" text, "Nationality" text, "Time" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of the rank for the name of Chen Yan in a lane less than 2? ### Query: SELEC...
### Context: CREATE TABLE table_name_74 ( service VARCHAR, network VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which service does the network of atn urdu offer? ### Query: SELECT service FROM table_name_74 WHERE network = "atn urdu"
### Context: CREATE TABLE table_43371 ( "Season" text, "Competition" text, "Round" text, "Opponent" text, "Series" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Competition for Season 2002 03, and the Opponent was zenit st. petersburg? ...
### Context: 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, hospitaladmitti...
### Context: 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, reli...
### Context: CREATE TABLE table_name_15 ( report VARCHAR, set_1 VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What shows for Report hen there is a set 1 of 19 25? ### Query: SELECT report FROM table_name_15 WHERE set_1 = "19–25"
### Context: CREATE TABLE table_train_133 ( "id" int, "vascular" bool, "interferon_alpha" bool, "pulmonary_disease" bool, "mini_mental_state_examination_mmse" int, "cardiac" bool, "neuropsychological_testing" bool, "clinical_dementia_rating_scale" float, "rituximab" bool, "hemato...
### Context: CREATE TABLE table_36216 ( "Series Ep." text, "Episode" real, "Netflix" text, "Segment A" text, "Segment B" text, "Segment C" text, "Segment D" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which series episode has a netflix fi...
### Context: CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE d_items ( row_id number, itemid number, label text, linksto text ) CREATE TABLE icustays ( row_id number, subject_id number, hadm_id number, icustay_id number, first_careunit ...
### Context: CREATE TABLE table_name_93 ( pick VARCHAR, round VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the pick number for the compensation-a round, for player Frank Catalanotto? ### Query: SELECT pick FROM table_name_93 W...
### Context: CREATE TABLE table_name_64 ( player_name VARCHAR, position VARCHAR, college VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who was a linebacker at Tennessee? ### Query: SELECT player_name FROM table_name_64 WHERE position = "linebacker" AND...
### Context: CREATE TABLE table_4302 ( "Year" real, "GDP at constant prices (THB trillions)" text, "GDP at constant prices growth rate (percent change)" text, "GDP at current prices (USD billions)" text, "Export volume of goods and services (percent change)" text, "Current account balance (perce...
### Context: CREATE TABLE procedures_icd ( row_id number, subject_id number, hadm_id number, icd9_code text, charttime time ) CREATE TABLE diagnoses_icd ( row_id number, subject_id number, hadm_id number, icd9_code text, charttime time ) CREATE TABLE labevents ( row_id numb...
### Context: CREATE TABLE table_59151 ( "Round" real, "Player" text, "Nationality" text, "NHL team" text, "College/Junior/Club Team (League)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- WHAT IS THE NHL TEAM OF FINLAND? ### Query: SELECT "NHL tea...
### Context: CREATE TABLE table_1354805_6 ( couple VARCHAR, number_of_dances VARCHAR, competition_finish VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- who danced 11 and finished at more than a 2.0 ### Query: SELECT couple FROM table_1354805_6 WHERE num...
### Context: 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, int...
### Context: CREATE TABLE course_tags_count ( course_id int, clear_grading int, pop_quiz int, group_projects int, inspirational int, long_lectures int, extra_credit int, few_tests int, good_feedback int, tough_tests int, heavy_papers int, cares_for_students int, heavy...
### Context: 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_ti...
### Context: CREATE TABLE table_202_114 ( id number, "make/model" text, "series" text, "model" text, "year" number, "notes" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which buses are the newest in the current fleet ? ### Query: SELECT "seri...
### Context: CREATE TABLE table_203_180 ( id number, "#" number, "weekend end date" text, "film" text, "weekend gross (millions)" text, "notes" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what was the last film of the year ? ### Query: SELEC...
### Context: CREATE TABLE table_name_67 ( pregame_host VARCHAR, color_commentator_s_ VARCHAR, play_by_play VARCHAR, year VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the name of the pregame host when the Play-by-play was by JP Dellacamera, ...
### Context: CREATE TABLE table_67133 ( "Date" text, "Opponent" text, "Score" text, "Loss" text, "Record" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the score of the game that had a loss of Coates (0 2)? ### Query: SELECT "Score" FROM ...
### Context: 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, gend...
### Context: 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, ...
### Context: CREATE TABLE table_204_535 ( id number, "pos" text, "rider" text, "manufacturer" text, "laps" number, "time/retired" text, "grid" number, "points" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is next after joan o. ...
### Context: CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, amount number ) CREATE TABLE d_items ( row_id number, itemid number, label text, linksto text ) CREATE TABLE d_icd_diagnoses ( ...
### Context: CREATE TABLE table_72783 ( "Home team" text, "Home team score" text, "Away team" text, "Away team score" text, "Ground" text, "Crowd" real, "Date" text, "Time" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the total nu...
### Context: 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 ...
### Context: CREATE TABLE table_72075 ( "Player" text, "No." text, "Nationality" text, "Position" text, "Years in Toronto" text, "School/Club Team" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What are the total number of positions on the Toro...
### Context: CREATE TABLE zzmzjzjlb ( HXPLC number, HZXM text, JLSJ time, JZJSSJ time, JZKSBM text, JZKSMC text, JZKSRQ time, JZLSH number, JZZDBM text, JZZDSM text, JZZTDM number, JZZTMC text, KH text, KLX number, MJZH text, ML number, MZZYZDZZBM text...
### Context: CREATE TABLE table_2668352_16 ( district VARCHAR, incumbent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many districts have John C. Calhoun as the incumbent? ### Query: SELECT COUNT(district) FROM table_2668352_16 WHERE incumbent = "John...
### Context: CREATE TABLE t_kc22 ( MED_EXP_DET_ID text, OVERALL_CD_ORG text, OVERALL_CD_PERSON text, MED_CLINIC_ID text, MED_EXP_BILL_ID text, SOC_SRT_DIRE_CD text, SOC_SRT_DIRE_NM text, DIRE_TYPE number, CHA_ITEM_LEV number, MED_INV_ITEM_TYPE text, MED_DIRE_CD text, MED_...
### Context: CREATE TABLE table_30657 ( "Couple" text, "Style" text, "Music" text, "Trine Dehli Cleve" real, "Tor Fl\u00f8ysvik" real, "Karianne Gulliksen" real, "Christer Tornell" real, "Total" real ) -- Using valid SQLite, answer the following questions for the tables provided above....
### Context: CREATE TABLE table_2144389_9 ( vocalist VARCHAR, rōmaji VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When pok mon ieru kana? bw is the romaji who is the vocalist? ### Query: SELECT vocalist FROM table_2144389_9 WHERE rōmaji = "Pokémon ieru ka...