text
stringlengths
197
8.39k
### Context: CREATE TABLE table_51524 ( "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. -- What date did the home team of foot...
### 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 d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE chartevents ( row_id number, subject_id number, hadm_id number, icustay_id number, itemid number, charttime time, valuenum number, valueuom text ) ...
### 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 course ( course_id int, name varchar, department varchar, number varchar, credits varchar, advisory_requirement varchar, enforced_requirement varchar, description varchar, num_semesters int, num_enrolled int, has_discussion varchar, has_lab varch...
### Context: CREATE TABLE table_name_3 ( average VARCHAR, rank VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the average that has 2 for the rank? ### Query: SELECT average FROM table_name_3 WHERE rank = "2"
### Context: CREATE TABLE table_16344 ( "League" text, "Sport" text, "Country" text, "Season" text, "Games" real, "Average attendance" real, "Total attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What's the minimum total attendanc...
### Context: CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, ContentLicense text ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId...
### Context: CREATE TABLE table_13166 ( "Position" real, "Club" text, "Played" real, "Points" real, "Wins" real, "Draws" real, "Losses" real, "Goals for" real, "Goals against" real, "Goal Difference" real ) -- Using valid SQLite, answer the following questions for the tables pr...
### Context: CREATE TABLE table_name_39 ( region VARCHAR, catalog VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Region is the MHCL-20004 Catalog? ### Query: SELECT region FROM table_name_39 WHERE catalog = "mhcl-20004"
### Context: CREATE TABLE table_203_207 ( id number, "site name" text, "reason for designation\nbiological interest" number, "reason for designation\ngeological interest" number, "area\nhectares" number, "area\nacres" number, "coordinates & grid ref" text, "year in which notified" number...
### Context: CREATE TABLE zyjzjlb ( YLJGDM text, JZLSH text, MZJZLSH text, KH text, KLX number, HZXM text, WDBZ number, RYDJSJ time, RYTJDM number, RYTJMC text, JZKSDM text, JZKSMC text, RZBQDM text, RZBQMC text, RYCWH text, CYKSDM text, CYKSMC text, ...
### Context: CREATE TABLE table_name_21 ( home_team VARCHAR, away_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the home team that had an away team of lincoln city? ### Query: SELECT home_team FROM table_name_21 WHERE away_team = "lincoln city...
### Context: CREATE TABLE table_34161 ( "Tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text ) -- Using valid SQLite, answer the following questions for the table...
### Context: CREATE TABLE table_name_29 ( attendance INTEGER, score VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Attendance has a Score of 0:2? ### Query: SELECT MAX(attendance) FROM table_name_29 WHERE score = "0:2"
### Context: CREATE TABLE table_48498 ( "Tie no" text, "Home team" text, "Score" text, "Away team" text, "Date" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who played Blackpool when Blackpool was at home? ### Query: SELECT "Away team" FROM table...
### Context: CREATE TABLE table_40106 ( "Championship" text, "Current champion(s)" text, "Previous champion(s)" text, "Date won" text, "Location" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the current champion in the NECW Heavyweight Cham...
### Context: CREATE TABLE table_4430 ( "Pick" text, "Player" text, "Position" text, "Nationality" text, "NHL team" text, "College/junior/club team" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the player from Canada with a 199 pick? ##...
### Context: CREATE TABLE table_name_18 ( played INTEGER, first_game INTEGER ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of games played in the season before 2005? ### Query: SELECT SUM(played) FROM table_name_18 WHERE first_game < 2005
### Context: CREATE TABLE Has_Allergy ( StuID INTEGER, Allergy VARCHAR(20) ) CREATE TABLE Allergy_Type ( Allergy VARCHAR(20), AllergyType VARCHAR(20) ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, Ad...
### Context: CREATE TABLE table_name_41 ( tournament VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Tournament, when 2009 is 'Grand Slam Tournaments'? ### Query: SELECT tournament FROM table_name_41 WHERE 2009 = "grand slam tournaments"
### Context: CREATE TABLE table_71739 ( "7:00" text, "7:30" text, "8:00" text, "8:30" text, "9:00" text, "9:30" text, "10:00" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is on at 8:00 when etalk is on at 7:00? ### Query: SELECT "8:0...
### Context: CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE PostsWithDeleted ( Id number, PostTyp...
### Context: CREATE TABLE table_30120761_1 ( area__acres__ VARCHAR, townland VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many acres in the townland of Coomroe? ### Query: SELECT COUNT(area__acres__) FROM table_30120761_1 WHERE townland = "Coomroe"
### Context: CREATE TABLE table_name_23 ( result VARCHAR, nominee_s_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Nominee Neal Baer had what result? ### Query: SELECT result FROM table_name_23 WHERE nominee_s_ = "neal baer"
### Context: CREATE TABLE degrees ( year number, campus number, degrees number ) CREATE TABLE csu_fees ( campus number, year number, campusfee number ) CREATE TABLE enrollments ( campus number, year number, totalenrollment_ay number, fte_ay number ) CREATE TABLE faculty ( ...
### Context: CREATE TABLE table_66928 ( "Res." text, "Record" text, "Opponent" text, "Method" text, "Event" text, "Round" real, "Time" text, "Location" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the location of the match wher...
### Context: CREATE TABLE table_72271 ( "Year" real, "Mens singles" text, "Womens singles" text, "Mens doubles" text, "Womens doubles" text, "Mixed doubles" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What are the womens singles of naoko fuku...
### 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_29959 ( "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 abov...
### Context: CREATE TABLE table_70467 ( "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. -- Which gender has Years of 1 8, an Authority of state, a Rol...
### Context: CREATE TABLE table_16886076_1 ( coronie VARCHAR, marowijne VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the coronie for marowijne being 6.8% ### Query: SELECT coronie FROM table_16886076_1 WHERE marowijne = "6.8%"
### Context: CREATE TABLE table_54405 ( "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. -- If the Away team scored 18.8 (116),...
### Context: CREATE TABLE table_52296 ( "Year" real, "Award" text, "Category" text, "Nominee" text, "Result" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was nominee nominated for outstanding featured actor in a musical? ### Query: SELECT "N...
### 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 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_11 ( play_by_play VARCHAR, color_commentator_s_ VARCHAR, year VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the Play-by-play when the color commentator was Eric Wynalda, earlier than 2005? ### Query: SELECT...
### Context: CREATE TABLE table_10493 ( "Date" text, "Champion" text, "2nd Place" text, "Score" text, "Stadium" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the score when the Vikings won the championship at Namyangju Stadium? ### Query:...
### Context: CREATE TABLE table_15681686_4 ( rank__timeslot_ VARCHAR, viewers__millions_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the total number of rank where viewers is 9.38? ### Query: SELECT COUNT(rank__timeslot_) FROM table_15681686_4 WH...
### Context: CREATE TABLE table_71927 ( "Album or Song" text, "Band" text, "Memebrship" text, "Role" text, "Year" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which band plays Self Versus Self - Immersion? ### Query: SELECT "Band" FROM table_7192...
### Context: CREATE TABLE actor ( actor_id number, name text, musical_id number, character text, duration text, age number ) CREATE TABLE musical ( musical_id number, name text, year number, award text, category text, nominee text, result text ) -- Using valid SQLi...
### Context: CREATE TABLE hotels ( hotel_id number, star_rating_code text, pets_allowed_yn text, price_range number, other_hotel_details text ) CREATE TABLE photos ( photo_id number, tourist_attraction_id number, name text, description text, filename text, other_details text...
### Context: CREATE TABLE table_14965 ( "Home" text, "Score" text, "Away" text, "Venue" text, "Golden point(s) scorer" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Golden point(s) scorer has the Away Sydney Roosters and Home Cronulla Sharks? ...
### Context: CREATE TABLE table_45652 ( "Class" text, "Team" text, "Driver" text, "Chassis \u2013 Engine" text, "Laps" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many Laps did Bob Wollek have? ### Query: SELECT AVG("Laps") FROM table_45652 ...
### Context: CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE ReviewTasks ( Id number, ReviewTaskTypeId number,...
### Context: CREATE TABLE table_71490 ( "Name" text, "Years" text, "Gender" text, "Area" text, "Authority" text, "Decile" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What school with a decile of 7 is in upper hutt? ### Query: SELECT "Name" F...
### Context: CREATE TABLE table_name_58 ( games_won VARCHAR, points_for VARCHAR, points_against VARCHAR, bonus_points VARCHAR, points_difference VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Games won has Bonus points larger than 1, a Poin...
### Context: CREATE TABLE table_name_15 ( week_1_sept_7 VARCHAR, preseason VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Week 1 result of Colorado State? ### Query: SELECT week_1_sept_7 FROM table_name_15 WHERE preseason = "colorado state"
### 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 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 inputevents_cv ( row_id number, subject_id...
### Context: 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 locations ( LOCATION_ID decimal(4,0), STREET_ADDRESS varchar(40), POSTAL_CODE varchar(12), CITY varchar(30), STATE_PROV...
### Context: CREATE TABLE table_42567 ( "Round" real, "Pick" real, "Player" text, "Position" text, "School/Club Team" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- In what round was the first outside linebacker picked? ### Query: SELECT MIN("Round...
### Context: CREATE TABLE d_items ( row_id number, itemid number, label text, linksto text ) CREATE TABLE patients ( row_id number, subject_id number, gender text, dob time, dod time ) CREATE TABLE inputevents_cv ( row_id number, subject_id number, hadm_id number, i...
### Context: CREATE TABLE table_56881 ( "Race" text, "Circuit" text, "Date" text, "Pole position" text, "Fastest lap" text, "Winning driver" text, "Constructor" text, "Tyre" text, "Report" text ) -- Using valid SQLite, answer the following questions for the tables provided above. ...
### Context: CREATE TABLE table_204_627 ( id number, "date" text, "opponent" text, "score" text, "top scorer (total points)" text, "venue (location)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- this team faced sta . lucia and had who as their...
### 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 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 prescriptions ( subject_id text...
### 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 medicati...
### Context: CREATE TABLE visitors ( tourist_id number, tourist_details text ) CREATE TABLE museums ( museum_id number, museum_details text ) CREATE TABLE tourist_attractions ( tourist_attraction_id number, attraction_type_code text, location_id number, how_to_get_there text, name ...
### 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 treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, hospitalid n...
### 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, ...
### Context: CREATE TABLE SuggestedEditVotes ( Id number, SuggestedEditId number, UserId number, VoteTypeId number, CreationDate time, TargetUserId number, TargetRepChange number ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, ...
### Context: CREATE TABLE table_56275 ( "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 loss when the record was 34-56? ### Query: SELECT "Loss" FROM table_56275 WHERE "R...
### Context: CREATE TABLE table_9377 ( "Place" text, "Player" text, "Country" text, "Score" real, "To par" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which To par has a Score larger than 68? ### Query: SELECT "To par" FROM table_9377 WHERE "Sco...
### Context: CREATE TABLE aircraft ( aircraft_code varchar, aircraft_description varchar, manufacturer varchar, basic_type varchar, engines int, propulsion varchar, wide_body varchar, wing_span int, length int, weight int, capacity int, pay_load int, cruising_speed in...
### Context: CREATE TABLE gwyjzb ( 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 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, icusta...
### Context: CREATE TABLE diagnosis ( diagnosisid number, patientunitstayid number, diagnosisname text, diagnosistime time, icd9code text ) CREATE TABLE microlab ( microlabid number, patientunitstayid number, culturesite text, organism text, culturetakentime time ) CREATE TABLE...
### Context: CREATE TABLE Has_amenity ( dormid INTEGER, amenid INTEGER ) CREATE TABLE Lives_in ( stuid INTEGER, dormid INTEGER, room_number INTEGER ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major INTEGER, ...
### Context: CREATE TABLE table_1969577_1 ( joined INTEGER, institution VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the most joined for molloy college ### Query: SELECT MAX(joined) FROM table_1969577_1 WHERE institution = "Molloy College"
### 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_67114 ( "Rank" real, "Airport" text, "City" text, "Code (IATA/ICAO)" text, "2008" real, "2009" real, "2010" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the rank of airport with a (IATA/ICAO) of bcm/...
### Context: CREATE TABLE cost ( costid number, uniquepid text, patienthealthsystemstayid number, eventtype text, eventid number, chargetime time, cost number ) CREATE TABLE treatment ( treatmentid number, patientunitstayid number, treatmentname text, treatmenttime time ) C...
### Context: CREATE TABLE table_name_14 ( opponent VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What opponent has april 10 as the date? ### Query: SELECT opponent FROM table_name_14 WHERE date = "april 10"
### Context: CREATE TABLE table_45395 ( "Rank" text, "Name" text, "Height (m)" real, "Height (ft)" real, "Floors" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Height (m) of the 32= Rank Building with 18 Floors and Height (ft) greater t...
### 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_32011 ( "Name" text, "Circuit" text, "Date" text, "Winning drivers" text, "Winning constructor" text, "Report" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What brand of vehicle won a race driven by Tazio Nuvola...
### Context: CREATE TABLE drivers ( forename VARCHAR, surname VARCHAR, nationality VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Find the forename and surname of drivers whose nationality is German? ### Query: SELECT forename, surname FROM drivers WHER...
### Context: CREATE TABLE table_27895 ( "Settlement" text, "Cyrillic Name" text, "Type" text, "Population (2011)" real, "Largest ethnic group (2002)" text, "Dominant religion (2002)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many differ...
### Context: CREATE TABLE table_name_93 ( silver VARCHAR, nation VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many silver medals does China have? ### Query: SELECT COUNT(silver) FROM table_name_93 WHERE nation = "china"
### Context: CREATE TABLE table_47042 ( "Tournament" text, "1990" text, "1991" text, "1992" text, "1993" text, "1994" text, "1995" text, "1996" text, "1997" text, "1998" text, "1999" text, "2000" text, "2001" text, "Career SR" text, "Career Win-Loss" text ) ...
### 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 procedures_icd ( row_id number, subject_id...
### Context: CREATE TABLE table_30891 ( "Number" text, "Serial Number" real, "Into Service" text, "Withdrawn" text, "Scrapped" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the into service for dh2 ### Query: SELECT "Into Service" FROM table_...
### Context: CREATE TABLE table_48975 ( "Season" text, "Team" text, "Games" text, "Disposals" text, "Kicks" text, "Handballs" text, "Marks" text, "Tackles" text, "Goals" text, "Behinds" text ) -- Using valid SQLite, answer the following questions for the tables provided above. ...
### Context: CREATE TABLE table_name_93 ( enrollment_08_09 VARCHAR, school VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the total enrollment 08-09 of Franklin County? ### Query: SELECT COUNT(enrollment_08_09) FROM table_name_93 WHERE school = "fr...
### Context: CREATE TABLE table_202_76 ( id number, "member" text, "party" text, "term" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which member of the second incarnation of the lachlan was also a nationalist ? ### Query: SELECT "member" FROM table_...
### Context: CREATE TABLE table_dev_59 ( "id" int, "gender" string, "st_elevation" int, "tow_contiguous_limb" bool, "body_weight" float, "renal_disease" bool, "estimated_glomerular_filtration_rate_egfr" int, "two_contiguous_precordial_leads" bool, "unprotected_left_main_stenosis" int...
### Context: CREATE TABLE Invoice_Line_Items ( order_item_id INTEGER, invoice_number INTEGER, product_id INTEGER, product_title VARCHAR(80), product_quantity VARCHAR(50), product_price DECIMAL(19,4), derived_product_cost DECIMAL(19,4), derived_vat_payable DECIMAL(19,4), derived_total...
### Context: CREATE TABLE table_55801 ( "Name" text, "Date of birth" text, "Date of death" text, "Reign" text, "Relationship with predecessor" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the Reign of the person whose Date of Birth was 22...
### Context: CREATE TABLE table_39157 ( "Game" real, "November" real, "Opponent" text, "Score" text, "Record" text, "Points" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many games have November 7 as the date, and points greater than 17? ...
### Context: CREATE TABLE table_52499 ( "Race" text, "Circuit" text, "Date" text, "Pole position" text, "Fastest lap" text, "Winning driver" text, "Constructor" text, "Tyre" text, "Report" text ) -- Using valid SQLite, answer the following questions for the tables provided above. ...
### 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 procedures ( 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_...
### Context: CREATE TABLE table_name_84 ( senior_list VARCHAR, date_of_birth__age_when_delisted_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is listed under Senior List for Date of Birth (Age When Delisted) of 5 June 1984 (aged 23)? ### Query: SELEC...
### 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_45771 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Decision" text, "Attendance" real, "Record" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the record on October 13, when philadelphia w...
### Context: CREATE TABLE table_29853 ( "English" text, "Predecessor" text, "Ekavian" text, "Ikavian" text, "Ijekavian" text, "Ijekavian development" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What's the Ikavian translation of the Ijekavian ...
### Context: CREATE TABLE tryout ( pid number, cname text, ppos text, decision text ) CREATE TABLE player ( pid number, pname text, ycard text, hs number ) CREATE TABLE college ( cname text, state text, enr number ) -- Using valid SQLite, answer the following questions fo...
### Context: CREATE TABLE code_description ( code varchar, description text ) CREATE TABLE days ( days_code varchar, day_name varchar ) CREATE TABLE time_zone ( time_zone_code text, time_zone_name text, hours_from_gmt int ) CREATE TABLE food_service ( meal_code text, meal_number i...