text
stringlengths
197
8.39k
### Context: CREATE TABLE countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) CREATE TABLE regions ( REGION_ID decimal(5,0), REGION_NAME varchar(25) ) CREATE TABLE jobs ( JOB_ID varchar(10), JOB_TITLE varchar(35), MIN_SALARY decimal(6,0), MAX_SALA...
### Context: CREATE TABLE table_name_75 ( insurgents VARCHAR, civilians VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the insurgents for civilians being 49 ### Query: SELECT insurgents FROM table_name_75 WHERE civilians = "49"
### Context: CREATE TABLE table_38374 ( "Issue Date" real, "Album Title" text, "Artist" text, "Sales" real, "Highest Position" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest position Talk on Corners, which had an issue date great...
### Context: CREATE TABLE table_35810 ( "Year" real, "Class" text, "Team" text, "Points" real, "Rank" text, "Wins" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the average number of points for a team in the 250cc class with fewer than ...
### Context: CREATE TABLE table_name_41 ( club_province VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Club/province has a Player of david penalva? ### Query: SELECT club_province FROM table_name_41 WHERE player = "david penalva"
### Context: CREATE TABLE labevents ( row_id number, subject_id number, hadm_id number, itemid number, charttime time, valuenum number, valueuom text ) CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE prescriptions ( row_id number, subje...
### 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 trip ( id INTEGER, duration INTEGER, start_date TEXT, start_station_name TEXT, start_station_id INTEGER, end_date TEXT, end_station_name TEXT, end_station_id INTEGER, bike_id INTEGER, subscription_type TEXT, zip_code INTEGER ) CREATE TABLE status ( ...
### Context: CREATE TABLE race ( Race_ID int, Name text, Class text, Date text, Track_ID text ) CREATE TABLE track ( Track_ID int, Name text, Location text, Seating real, Year_Opened real ) -- Using valid SQLite, answer the following questions for the tables provided above. -...
### Context: CREATE TABLE table_28838 ( "Place" real, "Nation" text, "played" real, "won" real, "drawn" real, "lost" real, "for" real, "against" real, "difference" real, "Table points" real ) -- Using valid SQLite, answer the following questions for the tables provided above. ...
### Context: CREATE TABLE table_65543 ( "Rank" real, "Rowers" text, "Country" text, "Time" text, "Notes" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who are the rowers with the time of 5:54.57? ### Query: SELECT "Rowers" FROM table_65543 WHERE "...
### Context: CREATE TABLE table_name_39 ( goal INTEGER, result VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the top goal for the result of 2 3? ### Query: SELECT MAX(goal) FROM table_name_39 WHERE result = "2–3"
### Context: CREATE TABLE equipment_sequence ( aircraft_code_sequence varchar, aircraft_code varchar ) CREATE TABLE state ( state_code text, state_name text, country_name text ) CREATE TABLE days ( days_code varchar, day_name varchar ) CREATE TABLE city ( city_code varchar, city_n...
### Context: CREATE TABLE table_67768 ( "Film" text, "Director(s)" text, "Producer(s)" text, "Recipient" text, "Date" text, "Award" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who was the director of the film that Sister Films received an awa...
### Context: CREATE TABLE airline ( airline_code varchar, airline_name text, note text ) CREATE TABLE compartment_class ( compartment varchar, class_type varchar ) CREATE TABLE equipment_sequence ( aircraft_code_sequence varchar, aircraft_code varchar ) CREATE TABLE flight_leg ( fligh...
### Context: CREATE TABLE table_37294 ( "7:00" text, "7:30" text, "8:00" text, "8:30" text, "9:00" text, "10:00" text, "10:30" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which 7:00 has an 8:00 of la soir e du hockey? ### Query: SELECT "...
### Context: CREATE TABLE domain ( did int, name varchar ) CREATE TABLE publication ( abstract varchar, cid int, citation_num int, jid int, pid int, reference_num int, title varchar, year int ) CREATE TABLE keyword ( keyword varchar, kid int ) CREATE TABLE conference (...
### Context: CREATE TABLE event ( ID int, Name text, Stadium_ID int, Year text ) CREATE TABLE swimmer ( ID int, name text, Nationality text, meter_100 real, meter_200 text, meter_300 text, meter_400 text, meter_500 text, meter_600 text, meter_700 text, Time t...
### Context: CREATE TABLE table_6085 ( "Date" text, "Visitor" text, "Score" text, "Home" text, "Record" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the date of the game when St. Louis was the home team? ### Query: SELECT "Date" FROM tab...
### Context: CREATE TABLE gyb ( CLINIC_ID 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, INSURED_STS text, INSU_TYPE...
### Context: CREATE TABLE table_25479607_3 ( fixed_charge___rs__kwh_ VARCHAR, unit__kwh__time_range VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the fixed charge for the user with a unit/time range of i-2: peak (18:30-22:30)? ### Query: SELECT fix...
### Context: CREATE TABLE table_78906 ( "Player" text, "Country" text, "Year(s) won" text, "Total" real, "To par" text, "Finish" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the average total in 1969? ### Query: SELECT AVG("Total") FR...
### Context: CREATE TABLE table_11677691_4 ( school VARCHAR, hometown VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many players' hometown was Akron, Ohio? ### Query: SELECT COUNT(school) FROM table_11677691_4 WHERE hometown = "Akron, Ohio"
### 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 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 countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) CREATE TABLE jobs ( JOB_ID varchar(10), JOB_TITLE varchar(35), MIN_SALARY decimal(6,0), MAX_SALARY decimal(6,0) ) CREATE TABLE regions ( REGION_ID decimal(5,0), REGION_N...
### Context: CREATE TABLE table_16771 ( "Race Name" text, "Circuit" text, "Date" text, "Winning driver" text, "Constructor" text, "Report" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who won the Modena circuit? ### Query: SELECT "Winning dri...
### Context: CREATE TABLE table_test_5 ( "id" int, "systemic_lupus_erythematosus" bool, "anemia" bool, "gender" string, "pregnancy_or_lactation" bool, "serum_potassium" float, "hemoglobin_a1c_hba1c" float, "heart_disease" bool, "renal_disease" bool, "creatinine_clearance_cl" floa...
### Context: CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE ReviewTaskResultTypes ( Id number, Name text, ...
### Context: CREATE TABLE swimmer ( ID int, name text, Nationality text, meter_100 real, meter_200 text, meter_300 text, meter_400 text, meter_500 text, meter_600 text, meter_700 text, Time text ) CREATE TABLE record ( ID int, Result text, Swimmer_ID int, Eve...
### Context: CREATE TABLE ship ( Ship_ID int, Name text, Type text, Nationality text, Tonnage int ) CREATE TABLE mission ( Mission_ID int, Ship_ID int, Code text, Launched_Year int, Location text, Speed_knots int, Fate text ) -- Using valid SQLite, answer the following...
### Context: CREATE TABLE allergy ( allergyid number, patientunitstayid number, drugname text, allergyname text, allergytime time ) CREATE TABLE patient ( uniquepid text, patienthealthsystemstayid number, patientunitstayid number, gender text, age text, ethnicity text, h...
### Context: CREATE TABLE table_10728 ( "Player" text, "Position" text, "School" text, "Hometown" text, "College" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What college did hunter henry go to? ### Query: SELECT "College" FROM table_10728 WHERE...
### Context: CREATE TABLE table_name_52 ( record VARCHAR, opponent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the team's record in games against the Hartford Whalers? ### Query: SELECT record FROM table_name_52 WHERE opponent = "hartford whalers...
### Context: CREATE TABLE table_204_144 ( id number, "represent" number, "contestant" text, "age" number, "height" text, "hometown" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- name each contestant whose age is 21 ? ### Query: SELECT "contest...
### Context: CREATE TABLE operate_company ( id number, name text, type text, principal_activities text, incorporated_in text, group_equity_shareholding number ) CREATE TABLE airport ( id number, city text, country text, iata text, icao text, name text ) CREATE TABLE fli...
### 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_204_649 ( id number, "rank" number, "name" text, "image" number, "height\nft (m)" text, "floors" number, "year" number, "notes" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the difference in heig...
### Context: CREATE TABLE state ( state_code text, state_name text, country_name text ) CREATE TABLE code_description ( code varchar, description text ) CREATE TABLE airport_service ( city_code varchar, airport_code varchar, miles_distant int, direction varchar, minutes_distant...
### Context: CREATE TABLE table_71139 ( "Year" real, "Tournament" text, "Venue" text, "Result" text, "Event" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What tournament was after 2009? ### Query: SELECT "Tournament" FROM table_71139 WHERE "Year"...
### Context: CREATE TABLE program_course ( program_id int, course_id int, workload int, category varchar ) CREATE TABLE area ( course_id int, area varchar ) CREATE TABLE program_requirement ( program_id int, category varchar, min_credit int, additional_req varchar ) CREATE TAB...
### Context: CREATE TABLE t_kc24 ( MED_SAFE_PAY_ID text, OVERALL_CD_ORG text, OVERALL_CD_PERSON text, MED_CLINIC_ID text, REF_SLT_FLG number, CLINIC_SLT_DATE time, COMP_ID text, PERSON_ID text, FLX_MED_ORG_ID text, INSU_TYPE text, MED_AMOUT number, PER_ACC_PAY number, ...
### Context: CREATE TABLE table_18946749_1 ( prominence__m_ INTEGER, peak VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When mount gauttier is the peak what is the highest prominence in meters? ### Query: SELECT MAX(prominence__m_) FROM table_18946749_1 WH...
### Context: CREATE TABLE t_kc21_t_kc24 ( MED_CLINIC_ID text, MED_SAFE_PAY_ID number ) 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...
### 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 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 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 table_name_3 ( overall VARCHAR, name VARCHAR, round VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name of calvin o'neal, and a Round smaller than 6 had what number total overall? ### Query: SELECT COUNT(overall) FROM table_nam...
### Context: CREATE TABLE table_name_18 ( common_name VARCHAR, color VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the common name for the creature with darker colors? ### Query: SELECT common_name FROM table_name_18 WHERE color = "darker colors"
### Context: CREATE TABLE table_22048 ( "Team" text, "Average" text, "Points" real, "Played" real, "1988-89" text, "1989-90" text, "1990-1991" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the team that scored 122 points? ### Quer...
### Context: CREATE TABLE table_2803106_1 ( dance_song VARCHAR, total VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What dance had a score total of 31? ### Query: SELECT dance_song FROM table_2803106_1 WHERE total = "31"
### Context: CREATE TABLE table_38958 ( "Player" text, "Touchdowns" real, "Extra points" real, "Field goals" real, "Points" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Extra points is the lowest one that has a Player of ross kidston, and Po...
### Context: CREATE TABLE table_10476 ( "Rider" text, "Manufacturer" text, "Laps" real, "Time/Retired" text, "Grid" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many laps have a Time/Retired of +1:35.553? ### Query: SELECT COUNT("Laps") FROM ...
### Context: CREATE TABLE table_57991 ( "Player" text, "Car." real, "Yards" real, "Avg." real, "TD's" real, "Long" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many yards did kevin swayne average, with a long carry over 7? ### Query: SELE...
### Context: CREATE TABLE table_name_15 ( date VARCHAR, score VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the date of the game with a score of 15 6? ### Query: SELECT date FROM table_name_15 WHERE score = "15–6"
### 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_11239 ( "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. -- Who was the host team at Louisiana Superdome when the final score was 10-20? #...
### Context: CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, BelongsOnBaseHostAddress text ) CREATE TABLE ReviewTaskStates ( Id number, Name te...
### Context: CREATE TABLE table_name_57 ( blank_ends VARCHAR, shot_pct VARCHAR, stolen_ends VARCHAR, skip VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of blank ends when the stolen ends were 17 and Jennifer Jones was skipped with...
### Context: CREATE TABLE table_79865 ( "Round" real, "Pick #" real, "Overall" real, "Name" text, "Position" text, "College" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Round larger than 6, and a Pick # smaller than 25, and a College of south...
### Context: CREATE TABLE requirement ( requirement_id int, requirement varchar, college varchar ) CREATE TABLE ta ( campus_job_id int, student_id int, location varchar ) CREATE TABLE program_requirement ( program_id int, category varchar, min_credit int, additional_req varchar...
### 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_name_56 ( Id VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the 2006 value with a 1r in 2011? ### Query: SELECT 2006 FROM table_name_56 WHERE 2011 = "1r"
### Context: CREATE TABLE table_name_18 ( result VARCHAR, opponent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- WHAT IS THE RESULT WHEN THE OPPONENT WAS CHICAGO BEARS? ### Query: SELECT result FROM table_name_18 WHERE opponent = "chicago bears"
### 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 prescriptions ( subject_id text, hadm_id text, icustay_id text, drug_type text, drug text, formulary_drug...
### Context: CREATE TABLE Tags ( Id number, TagName text, Count number, ExcerptPostId number, WikiPostId number ) CREATE TABLE Posts ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCoun...
### Context: CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE PostTypes ( Id number, Name text ) CREATE TABLE ReviewTaskTypes ( Id number, Name text, Desc...
### Context: CREATE TABLE table_30027 ( "Year" real, "Location" text, "Distance (miles)" real, "Rider Names" text, "Horse Name" text, "Best-Conditioned Horse" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many different riders are there tha...
### Context: CREATE TABLE table_train_248 ( "id" int, "anemia" bool, "prostate_specific_antigen_psa" float, "hemoglobin_a1c_hba1c" float, "body_weight" float, "fasting_triglycerides" int, "hyperlipidemia" bool, "hgb" int, "fasting_total_cholesterol" int, "fasting_ldl_cholesterol"...
### 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_name_24 ( round INTEGER, position VARCHAR, pick__number VARCHAR, overall VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest round with a pick# of 11, a position of offensive tackle, and overall less tha...
### 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_name_80 ( player VARCHAR, score VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Player had a Score of 70-71=141? ### Query: SELECT player FROM table_name_80 WHERE score = 70 - 71 = 141
### Context: CREATE TABLE table_3072 ( "Country" text, "Skip" text, "W" real, "L" real, "PF" real, "PA" real, "Ends Won" real, "Ends Lost" real, "Blank Ends" real, "Stolen Ends" real, "Shot %" text ) -- Using valid SQLite, answer the following questions for the tables provi...
### Context: CREATE TABLE table_3141 ( "Week" real, "Date" text, "Kickoff" text, "Opponent" text, "Final score" text, "Team record" text, "Game site" text, "Attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many people atten...
### Context: CREATE TABLE basketball_match ( Team_ID int, School_ID int, Team_Name text, ACC_Regular_Season text, ACC_Percent text, ACC_Home text, ACC_Road text, All_Games text, All_Games_Percent int, All_Home text, All_Road text, All_Neutral text ) CREATE TABLE universi...
### Context: CREATE TABLE table_name_31 ( fat32 VARCHAR, ntfs VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which FAT32 has yes v1.0/v1.1 for NTFS? ### Query: SELECT fat32 FROM table_name_31 WHERE ntfs = "yes v1.0/v1.1"
### 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_203_330 ( id number, "year of election" number, "candidates elected" number, "# of seats available" number, "# of votes" number, "% of popular vote" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many more sea...
### Context: CREATE TABLE table_8631 ( "Position" real, "Name" text, "Played" real, "Drawn" real, "Lost" real, "Points" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the sum of points when lost is less than 10, name is vfl denklingen an...
### Context: CREATE TABLE table_7239 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which venue held the Euro 2012 Qualifier? ### Query: SELECT "Venue" FROM table_7239 WHERE "C...
### Context: CREATE TABLE table_38655 ( "Discipline" text, "Peter" real, "Adam" real, "Jade" real, "Plat'num" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Adam's score when Peter's score is less than 3 and the plat'num is greater than 6? ...
### Context: CREATE TABLE table_21800 ( "Scientific name" text, "Common name" text, "Length (male)" text, "Length (female)" text, "Color" text, "Lifespan (years)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the number of color for furcif...
### Context: CREATE TABLE table_23248940_10 ( high_assists VARCHAR, game VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many people led in assists on game 71? ### Query: SELECT COUNT(high_assists) FROM table_23248940_10 WHERE game = 71
### Context: CREATE TABLE table_22785 ( "No." real, "#" real, "Title" text, "Directed by" text, "Written by" text, "U.S. air date" text, "Production code" text, "U.S. viewers (million)" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When...
### Context: CREATE TABLE table_204_670 ( id number, "week" number, "date" text, "opponent" text, "result" text, "record" text, "attendance" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the number of fans who attended the decembe...
### 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_203_41 ( id number, "name" text, "variant name(s)" text, "source" text, "source coordinates" text, "length" text, "mouth" text, "mouth coordinates" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which trib...
### Context: CREATE TABLE table_name_70 ( date VARCHAR, record VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Record of 92 70 had what date? ### Query: SELECT date FROM table_name_70 WHERE record = "92–70"
### Context: CREATE TABLE table_20928682_1 ( game INTEGER, opponent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which game number was played against Georgia? ### Query: SELECT MIN(game) FROM table_20928682_1 WHERE opponent = "Georgia"
### Context: CREATE TABLE PostHistoryTypes ( Id number, Name text ) CREATE TABLE ReviewTaskResults ( Id number, ReviewTaskId number, ReviewTaskResultTypeId number, CreationDate time, RejectionReasonId number, Comment text ) CREATE TABLE SuggestedEditVotes ( Id number, Suggested...
### Context: CREATE TABLE table_name_47 ( date VARCHAR, opponent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- On what Date was the Opponent the Tennessee Titans? ### Query: SELECT date FROM table_name_47 WHERE opponent = "tennessee titans"
### 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_name_27 ( rank INTEGER, name VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the greatest rank for Fifth third center? ### Query: SELECT MAX(rank) FROM table_name_27 WHERE name = "fifth third center"
### Context: CREATE TABLE table_203_737 ( id number, "#" number, "employer" text, "# of employees" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the difference between the number of employees at mundelein elementary school district 75 and fre...
### 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 microbiologyevents ( row_id number, subject_id number, hadm_id number, charttime time, spec_type_de...
### Context: CREATE TABLE table_43191 ( "Team" text, "Match" text, "Points" text, "Draw" text, "Lost" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the draw for a match that had 10 points? ### Query: SELECT "Draw" FROM table_43191 WHERE "P...
### 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 admiss...
### Context: CREATE TABLE table_70377 ( "Year" real, "Division" text, "League" text, "Regular Season" text, "Playoffs" text, "U.S. Open Cup" text, "Avg. Attendance" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which regular season was 2013...
### Context: CREATE TABLE table_63766 ( "Coaster Name" text, "Park" text, "Location" text, "Track" text, "Builder" text, "Year Opened" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the coaster name that was opened in 1978, and have wood...