text
stringlengths
197
8.39k
### Context: CREATE TABLE table_name_15 ( to_par VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was willie wood's to par? ### Query: SELECT to_par FROM table_name_15 WHERE player = "willie wood"
### Context: 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 ...
### Context: CREATE TABLE table_14845 ( "Minister" text, "Party" text, "Start date" text, "End date" text, "Prime Minister" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the end date for robert goebbels ### Query: SELECT "End date" FROM table...
### Context: CREATE TABLE hz_info ( KH text, KLX number, YLJGDM text, RYBH text ) CREATE TABLE jybgb ( YLJGDM text, YLJGDM_MZJZJLB text, YLJGDM_ZYJZJLB text, BGDH text, BGRQ time, JYLX number, JZLSH text, JZLSH_MZJZJLB text, JZLSH_ZYJZJLB text, JZLX number, K...
### Context: CREATE TABLE Reviewer ( rID int, name text ) CREATE TABLE Rating ( rID int, mID int, stars int, ratingDate date ) CREATE TABLE Movie ( mID int, title text, year int, director text ) -- Using valid SQLite, answer the following questions for the tables provided abo...
### Context: CREATE TABLE table_1806 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "Prod. code" text, "Viewers (millions)" text ) -- Using valid SQLite, answer the following questions for the tables provided...
### Context: 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 ) -- Using valid SQLite, answer the following ques...
### Context: CREATE TABLE table_name_60 ( home_team VARCHAR, away_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the home team score that played away team carlton? ### Query: SELECT home_team AS score FROM table_name_60 WHERE away_team = "carlt...
### Context: CREATE TABLE table_204_951 ( id number, "candidate" text, "votes" number, "percentage" text, "counties" number, "delegates" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- who received more votes , duncan hunter or alan keyes ? ##...
### 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 procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE...
### Context: CREATE TABLE table_5067 ( "Game" real, "Date" text, "Team" text, "Score" text, "High points" text, "High rebounds" text, "High assists" text, "Location Attendance" text, "Record" text ) -- Using valid SQLite, answer the following questions for the tables provided above...
### Context: CREATE TABLE table_name_7 ( type_of_game VARCHAR, results¹ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What type of game had a result of 1:2? ### Query: SELECT type_of_game FROM table_name_7 WHERE results¹ = "1:2"
### Context: 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 VoteTypes ( Id number, N...
### Context: 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 allergy ...
### Context: CREATE TABLE table_44277 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text, "Money ( $ )" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What place is South Africa? ### Query: SELECT "Place" FROM table_4427...
### Context: CREATE TABLE jyjgzbb ( BGDH text, BGRQ time, CKZFWDX text, CKZFWSX number, CKZFWXX number, JCFF text, JCRGH text, JCRXM text, JCXMMC text, JCZBDM text, JCZBJGDL number, JCZBJGDW text, JCZBJGDX text, JCZBMC text, JLDW text, JYRQ time, JYZBL...
### Context: CREATE TABLE table_name_31 ( date VARCHAR, result VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Date has a Result of l 21 34? ### Query: SELECT date FROM table_name_31 WHERE result = "l 21–34"
### Context: CREATE TABLE table_7372 ( "Position" real, "Team" text, "Points" real, "Played" real, "Drawn" real, "Lost" real, "Against" real, "Difference" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the largest lost stat when ...
### Context: CREATE TABLE table_name_9 ( constructor VARCHAR, grid VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Tell me the constructor for grid of 17 ### Query: SELECT constructor FROM table_name_9 WHERE grid = 17
### Context: CREATE TABLE table_name_92 ( crowd INTEGER, home_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How big was the crowd of the Home team of Collingwood? ### Query: SELECT MAX(crowd) FROM table_name_92 WHERE home_team = "collingwood"
### Context: CREATE TABLE table_name_52 ( leading_scorer VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the leading scorer of the game on 13 February 2008? ### Query: SELECT leading_scorer FROM table_name_52 WHERE date = "13 february 20...
### Context: 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...
### Context: CREATE TABLE table_68142 ( "Year" text, "Start" text, "Qual" text, "Rank" text, "Finish" text, "Laps" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest laps of the year when the rank was 14? ### Query: SELECT MAX("...
### Context: CREATE TABLE table_53907 ( "Record" text, "Year" text, "Date" text, "Driver" text, "Car Make" text, "Time" text, "Average Speed (mph)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What day had a time of 29.816? ### Query: SEL...
### Context: CREATE TABLE table_name_98 ( series_ep VARCHAR, segment_b VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What series episode has deli meats under segment B? ### Query: SELECT series_ep FROM table_name_98 WHERE segment_b = "deli meats"
### Context: CREATE TABLE table_15773 ( "Year" text, "Men's singles" text, "Women's singles" text, "Men's doubles" text, "Women's doubles" text, "Mixed doubles" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What year was there no competition in...
### Context: CREATE TABLE table_33381 ( "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. -- For the game where the away team wa...
### Context: CREATE TABLE table_name_43 ( home_team VARCHAR, venue VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the home team score at Kardinia Park? ### Query: SELECT home_team AS score FROM table_name_43 WHERE venue = "kardinia park"
### Context: CREATE TABLE area ( course_id int, area varchar ) CREATE TABLE program ( program_id int, name varchar, college varchar, introduction varchar ) CREATE TABLE course_prerequisite ( pre_course_id int, course_id int ) CREATE TABLE course_offering ( offering_id int, cou...
### Context: CREATE TABLE table_12962773_12 ( year_born INTEGER, height VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What year was the player with the height 2.04 born? ### Query: SELECT MIN(year_born) FROM table_12962773_12 WHERE height = "2.04"
### Context: CREATE TABLE table_name_96 ( pick VARCHAR, hometown_school VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What number pick was the player with the hometown school of concordia college? ### Query: SELECT pick FROM table_name_96 WHERE hometown_sc...
### Context: CREATE TABLE table_name_34 ( rank INTEGER, total VARCHAR, silver VARCHAR, bronze VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which rank has a more than 0 silver, 4 bronze, and a total smaller than 10? ### Query: SELECT SUM(rank) FROM...
### Context: CREATE TABLE table_75667 ( "Call sign" text, "Frequency MHz" text, "City of license" text, "ERP W" text, "FCC info" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which FCC info has an ERP W of 100 watts? ### Query: SELECT "FCC info" F...
### Context: CREATE TABLE jybgb ( BBCJBW text, BBDM text, BBMC text, BBZT number, BGDH text, BGJGDM text, BGJGMC text, BGRGH text, BGRQ time, BGRXM text, BGSJ time, CJRQ time, JSBBRQSJ time, JSBBSJ time, JYBBH text, JYJGMC text, JYJSGH text, JYJSQM...
### Context: CREATE TABLE table_name_39 ( position VARCHAR, college VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What position does the saint louis player play? ### Query: SELECT position FROM table_name_39 WHERE college = "saint louis"
### Context: CREATE TABLE jybgb ( YLJGDM text, YLJGDM_MZJZJLB text, YLJGDM_ZYJZJLB text, BGDH text, BGRQ time, JYLX number, JZLSH text, JZLSH_MZJZJLB text, JZLSH_ZYJZJLB text, JZLX number, KSBM text, KSMC text, SQRGH text, SQRXM text, BGRGH text, BGRXM tex...
### Context: CREATE TABLE table_27496841_3 ( total_points VARCHAR, place VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the total points for 2 ### Query: SELECT total_points FROM table_27496841_3 WHERE place = 2
### Context: CREATE TABLE table_35155 ( "Medal" text, "Name" text, "Games" text, "Sport" text, "Event" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What medal was awarded in the men's freestyle 52 kg? ### Query: SELECT "Medal" FROM table_35155 WH...
### Context: CREATE TABLE table_10951 ( "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. -- When the away team was geelong, wha...
### Context: CREATE TABLE table_26589 ( "#" real, "Player" text, "Country" text, "Points" real, "Reset points" real, "Events" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the number of events for 3031 ### Query: SELECT COUNT("Events") FR...
### Context: 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...
### Context: CREATE TABLE jyjgzbb ( BGDH text, BGRQ time, CKZFWDX text, CKZFWSX number, CKZFWXX number, JCFF text, JCRGH text, JCRXM text, JCXMMC text, JCZBDM text, JCZBJGDL number, JCZBJGDW text, JCZBJGDX text, JCZBMC text, JLDW text, JYRQ time, JYZBL...
### 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_63248 ( "Date" text, "Opponent" text, "Venue" text, "Result" text, "Attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which venue had an opponent of Sunderland and a result of a 1-1 draw? ### Query: SELECT "...
### Context: CREATE TABLE table_26229 ( "No" real, "Player" text, "Height (m)" text, "Height (f)" text, "Position" text, "Year born" real, "Current Club" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- name the player for number 5 ### Query:...
### Context: CREATE TABLE table_13011 ( "Country" text, "Builder" text, "Location" text, "Ship" text, "Class / type" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the country of Palmers Shipbuilding and Iron Company? ### Query: SELECT "Cou...
### Context: CREATE TABLE table_36615 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Pick # with an Overall of 19? ### Query: SELECT MAX("Pick #"...
### Context: CREATE TABLE table_12652 ( "Perpetrator" text, "Year" text, "Location" text, "Country" text, "Killed" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the perpetrator in Bait Al-Aqari? ### Query: SELECT "Perpetrator" FROM table_12...
### Context: CREATE TABLE table_name_22 ( uni_number VARCHAR, bats VARCHAR, surname VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What's the Uni# of Timms, who has bats of R? ### Query: SELECT uni_number FROM table_name_22 WHERE bats = "r" AND surname ...
### Context: CREATE TABLE table_name_40 ( score VARCHAR, place VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Score, when Place is 'T8', and when Player is 'Orville Moody'? ### Query: SELECT score FROM table_name_40 WHERE place =...
### Context: CREATE TABLE airport_aircraft ( ID int, Airport_ID int, Aircraft_ID int ) CREATE TABLE pilot ( Pilot_Id int(11), Name varchar(50), Age int(11) ) CREATE TABLE match ( Round real, Location text, Country text, Date text, Fastest_Qualifying text, Winning_Pilot ...
### Context: CREATE TABLE t_kc24 ( ACCOUNT_DASH_DATE time, ACCOUNT_DASH_FLG number, CASH_PAY number, CIVIL_SUBSIDY number, CKC102 number, CLINIC_ID text, CLINIC_SLT_DATE time, COMP_ID text, COM_ACC_PAY number, COM_PAY number, DATA_ID text, ENT_ACC_PAY number, ENT_PAY ...
### Context: CREATE TABLE table_35745 ( "Name" text, "Location" text, "State" text, "Opened (closing date if defunct)" text, "Surface" text, "Length" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Name with an Opened (closing date if...
### 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_46 ( nation VARCHAR, total VARCHAR, bronze VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the nation when bronze is less than 4 and the total is more than 4 ### Query: SELECT nation FROM table_name_46 WHERE tota...
### Context: CREATE TABLE table_51074 ( "Date" text, "Distance" text, "Handler" text, "Event" text, "Location" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- On what date was Mike Jackson a handler at the Indianapolis Boat, Sport & Travel Show? ###...
### Context: CREATE TABLE t_kc21_t_kc22 ( MED_CLINIC_ID text, MED_EXP_DET_ID number ) CREATE TABLE t_kc21 ( CLINIC_ID text, CLINIC_TYPE text, COMP_ID text, DATA_ID text, DIFF_PLACE_FLG number, FERTILITY_STS number, FLX_MED_ORG_ID text, HOSP_LEV number, HOSP_STS number, I...
### Context: CREATE TABLE table_54575 ( "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. -- For the Venue of western oval, what...
### Context: CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime time ) CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) CREATE TABLE vitalperiodic ( ...
### Context: CREATE TABLE table_23211 ( "Further Cities" text, "County, Oblast or State" text, "Country" text, "Distance" text, "Direction" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the number of direction for debrecen ### Query: SELECT C...
### Context: CREATE TABLE table_18333678_2 ( arrival VARCHAR, departure VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- when does the train departuring at 11.35 arrive ### Query: SELECT arrival FROM table_18333678_2 WHERE departure = "11.35"
### Context: CREATE TABLE table_19858 ( "Stage" real, "Winner" text, "General classification" text, "Points classification" text, "Mountains classification" text, "Combination classification" text, "Team classification" text ) -- Using valid SQLite, answer the following questions for the t...
### Context: CREATE TABLE table_74398 ( "Date" text, "Time" text, "ACC Team" text, "Big Ten Team" text, "Location" text, "Television" text, "Attendance" real, "Winner" text, "Challenge Leader" text ) -- Using valid SQLite, answer the following questions for the tables provided abov...
### Context: CREATE TABLE table_3683 ( "No. in series" real, "No. in season" real, "Title" text, "Directed by" text, "Written by" text, "Original air date" text, "U.S. viewers (million)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who was...
### Context: CREATE TABLE table_4022 ( "Representative" text, "Party" text, "Years" text, "Congress" text, "District Home" text, "Occupation" text, "Electoral history" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What time span is listed u...
### Context: CREATE TABLE d_icd_procedures ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE outputevents ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, value number ) CREATE TABLE d_icd_...
### Context: 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 ...
### Context: CREATE TABLE school_details ( school_id number, nickname text, colors text, league text, class text, division text ) CREATE TABLE school ( school_id number, school text, location text, enrollment number, founded number, denomination text, boys_or_girls t...
### Context: CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE microlab ( microlabid...
### Context: CREATE TABLE table_56902 ( "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. -- Which home team played against the ...
### Context: CREATE TABLE table_name_21 ( tv_network_s_ VARCHAR, alternate_title_translation VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What TV network is the series aistr em aired on? ### Query: SELECT tv_network_s_ FROM table_name_21 WHERE alternate_t...
### Context: CREATE TABLE table_25355392_2 ( november_3 VARCHAR, june_10_11 VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is november 3 when june 10-11 is june 10, 1964? ### Query: SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = "June 10, 1...
### Context: CREATE TABLE intakeoutput ( intakeoutputid number, patientunitstayid number, cellpath text, celllabel text, cellvaluenumeric number, intakeoutputtime time ) CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time...
### Context: CREATE TABLE fgwyjzb ( CLINIC_ID text, CLINIC_TYPE text, COMP_ID text, DATA_ID text, DIFF_PLACE_FLG number, FERTILITY_STS number, FLX_MED_ORG_ID text, HOSP_LEV number, HOSP_STS number, IDENTITY_CARD text, INPT_AREA_BED text, INSURED_IDENTITY number, INSUR...
### Context: CREATE TABLE table_47993 ( "Year" real, "Network" text, "Title" text, "Notes" text, "Language" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the title for the Korean progran on KBS2? ### Query: SELECT "Title" FROM table_47993 ...
### Context: CREATE TABLE t_kc22 ( AMOUNT number, CHA_ITEM_LEV number, DATA_ID text, DIRE_TYPE number, DOSE_FORM text, DOSE_UNIT text, EACH_DOSAGE text, EXP_OCC_DATE time, FLX_MED_ORG_ID text, FXBZ number, HOSP_DOC_CD text, HOSP_DOC_NM text, MED_DIRE_CD text, MED_...
### Context: CREATE TABLE table_name_52 ( professional_partner VARCHAR, celebrity VARCHAR, rank VARCHAR, season VARCHAR, average VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the professional partner of celebrity ma gorzata foremniak with...
### Context: CREATE TABLE t_kc22 ( AMOUNT number, CHA_ITEM_LEV number, DATA_ID text, DIRE_TYPE number, DOSE_FORM text, DOSE_UNIT text, EACH_DOSAGE text, EXP_OCC_DATE time, FLX_MED_ORG_ID text, FXBZ number, HOSP_DOC_CD text, HOSP_DOC_NM text, MED_CLINIC_ID text, ME...
### Context: CREATE TABLE locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROVINCE varchar(25), COUNTRY_ID varchar(2) ) CREATE TABLE job_history ( EMPLOYEE_ID decimal(6,0), START_DATE date, END_DATE date, JOB_ID ...
### Context: CREATE TABLE table_34793 ( "Date" text, "Result" text, "Score" text, "Brazil scorers" text, "Competition" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Result has a Score of 4-1, and a Competition of world cup qualifying? ### Qu...
### Context: CREATE TABLE date_day ( month_number int, day_number int, year int, day_name varchar ) CREATE TABLE dual_carrier ( main_airline varchar, low_flight_number int, high_flight_number int, dual_airline varchar, service_name text ) CREATE TABLE fare ( fare_id int, fr...
### Context: CREATE TABLE table_45304 ( "Place" text, "Player" text, "Country" text, "Score" text, "To par" text, "Money ( $ )" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the To par of Jack Nicklaus? ### Query: SELECT "To par" FROM...
### Context: CREATE TABLE table_name_19 ( draw INTEGER, competition VARCHAR, dynamo VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the most draw when the competition is soviet league and dynamo is more than 34? ### Query: SELECT MAX(draw) FROM t...
### Context: CREATE TABLE table_8187 ( "Club" text, "Sport" text, "Founded" real, "League" text, "Venue" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- COunt the Founded which has a Venue of villa park? ### Query: SELECT SUM("Founded") FROM table_8...
### Context: CREATE TABLE table_26681728_1 ( rank_qualifying INTEGER, score_qualifying VARCHAR, location VARCHAR, year VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- In Ghent in 2011, what was the rank-qualifying value when the score-qualifying value...
### Context: CREATE TABLE screen_mode ( graphics_mode number, char_cells text, pixels text, hardware_colours number, used_kb number, map text, type text ) CREATE TABLE phone ( company_name text, hardware_model_name text, accreditation_type text, accreditation_level text, ...
### Context: CREATE TABLE Ref_Document_Types ( Document_Type_Code CHAR(15), Document_Type_Name VARCHAR(255), Document_Type_Description VARCHAR(255) ) CREATE TABLE Accounts ( Account_ID INTEGER, Statement_ID INTEGER, Account_Details VARCHAR(255) ) CREATE TABLE Ref_Budget_Codes ( Budget_Type...
### 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 table_25668962_1 ( us_viewers__million_ VARCHAR, no_in_series VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many million U.S. viewers watched episode number 6 in the series? ### Query: SELECT us_viewers__million_ FROM table_25...
### Context: CREATE TABLE table_name_12 ( game INTEGER, high_rebounds VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Game is the highest one that has High rebounds of pau gasol (11)? ### Query: SELECT MAX(game) FROM table_name_12 WHERE high_rebounds =...
### Context: CREATE TABLE table_name_29 ( qual_2 VARCHAR, qual_1 VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the second qualification time with a first qualification time of 1:02.813? ### Query: SELECT qual_2 FROM table_name_29 WHERE qual_1 = "1...
### Context: CREATE TABLE table_2850912_10 ( position VARCHAR, nhl_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What position was the player who was drafted by the Washington Capitals? ### Query: SELECT position FROM table_2850912_10 WHERE nhl_team =...
### Context: CREATE TABLE locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROVINCE varchar(25), COUNTRY_ID varchar(2) ) CREATE TABLE jobs ( JOB_ID varchar(10), JOB_TITLE varchar(35), MIN_SALARY decimal(6,0), MAX_...
### Context: CREATE TABLE table_67645 ( "Year" real, "Literature" text, "Music" text, "Film" text, "Performing arts" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the literature for pradit prasarttong ### Query: SELECT "Literature" FROM table...
### Context: CREATE TABLE table_34993 ( "Name" text, "Years" text, "Seasons" real, "Lost" real, "Pct." real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the years coached by the person with a win percentage of 0.667 and 380 losses? ### Query: ...
### Context: CREATE TABLE t_kc21 ( CLINIC_ID text, CLINIC_TYPE text, COMP_ID text, DATA_ID text, DIFF_PLACE_FLG number, FERTILITY_STS number, FLX_MED_ORG_ID text, HOSP_LEV number, HOSP_STS number, IDENTITY_CARD text, INPT_AREA_BED text, INSURED_IDENTITY number, INSURE...
### Context: CREATE TABLE table_204_398 ( id number, "title" text, "year" number, "publisher" text, "developer" text, "platforms" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which project had greatest number of platforms ? ### Query: SELECT ...
### 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 procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_t...
### Context: CREATE TABLE table_name_42 ( pick__number VARCHAR, overall VARCHAR, college VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is College of Ohio State's pick number with an overall lower than 145? ### Query: SELECT pick__number FROM table...
### Context: CREATE TABLE mzjzjlb ( HXPLC number, HZXM text, JLSJ time, JZJSSJ time, JZKSBM text, JZKSMC text, JZKSRQ time, JZLSH text, JZZDBM text, JZZDSM text, JZZTDM number, JZZTMC text, KH text, KLX number, MJZH text, ML number, MZZYZDZZBM text, ...