text
stringlengths
197
8.39k
### Context: CREATE TABLE table_60473 ( "English name" text, "Thai name" text, "Abbr." text, "Transcription" text, "Sanskrit word" text, "Zodiac sign" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the zodiac sign for the English March? ...
### Context: CREATE TABLE class_of_service ( booking_class varchar, rank int, class_description text ) CREATE TABLE month ( month_number int, month_name text ) CREATE TABLE airport_service ( city_code varchar, airport_code varchar, miles_distant int, direction varchar, minutes_...
### Context: CREATE TABLE table_204_373 ( id number, "wager" text, "winner" text, "loser" text, "location" text, "date" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- only opponent to defeat mocho cota in 1994 ### Query: SELECT "winner" FROM ta...
### Context: CREATE TABLE table_53070 ( "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 was the game where the home te...
### 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_25067 ( "District" text, "Vacator" text, "Reason for change" text, "Successor" text, "Date successor seated" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When was the successor who got his seat because of 'until aug...
### Context: CREATE TABLE table_28628309_6 ( team VARCHAR, category VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who was the team when the category is field goal percentage? ### Query: SELECT team FROM table_28628309_6 WHERE category = "Field goal percent...
### Context: CREATE TABLE table_21068 ( "Position" real, "Team" text, "Played" real, "Wins" real, "Draws" real, "Losses" real, "Scored" real, "Conceded" real, "Points" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many points sc...
### Context: CREATE TABLE table_68487 ( "Date" text, "Venue" text, "Score" text, "Result" text, "Competition" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the competition type of the event with a result of 3-2 and a score of 2-1? ### Quer...
### Context: CREATE TABLE table_18328569_1 ( new_entries_this_round VARCHAR, winners_from_previous_round VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many new entries started in the round where winners from the previous round is 32? ### Query: SELECT ...
### Context: CREATE TABLE table_18173916_8 ( friday VARCHAR, monday VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which episode was Transmitted on friday if the episode of '515 the adventures of tintin' was transmitted on monday? ### Query: SELECT friday F...
### Context: CREATE TABLE table_name_77 ( league_cup INTEGER, total VARCHAR, fa_cup VARCHAR, premier_league VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest league cup with more than 0 FA cups, a premier league less than 34 and a to...
### Context: CREATE TABLE table_train_234 ( "id" int, "orthostatic_hypotension" bool, "systolic_blood_pressure_sbp" int, "estimated_glomerular_filtration_rate_egfr" int, "postural_fall_of_dbp" int, "diastolic_blood_pressure_dbp" int, "postural_fall_of_sbp" int, "allergy_to_sglt_2_inhibit...
### Context: CREATE TABLE table_16187 ( "Institution" text, "Location" text, "Mens Nickname" text, "Womens Nickname" text, "Founded" real, "Type" text, "Enrollment" real, "Joined" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is th...
### Context: CREATE TABLE table_11142 ( "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 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 table_21460 ( "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 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 table_25360865_1 ( height VARCHAR, _number VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the total number of height for number 32 ### Query: SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32
### 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 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 microbiologyevents ( row_id number, subject_id number, hadm_id number, ch...
### Context: CREATE TABLE table_name_6 ( best VARCHAR, qual_1 VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the best time for a team with a first-qualifying time of 59.448? ### Query: SELECT best FROM table_name_6 WHERE qual_1 = "59.448"
### Context: CREATE TABLE table_19417244_2 ( written_by VARCHAR, us_viewers__millions_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- who write the episode that have 14.39 million viewers ### Query: SELECT written_by FROM table_19417244_2 WHERE us_viewers__...
### Context: CREATE TABLE table_name_40 ( long INTEGER, name VARCHAR, gain VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When Thomas Clayton had a gain less than 71, what was the highest long value? ### Query: SELECT MAX(long) FROM table_name_40 WHERE ...
### Context: CREATE TABLE table_26313243_1 ( gdp__ppp__per_capita___intl_$___2011 VARCHAR, country VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the gdp per capita for haiti ### Query: SELECT gdp__ppp__per_capita___intl_$___2011 FROM table_26313243_1 ...
### Context: CREATE TABLE table_21283 ( "Official Name" text, "Status" text, "Area km 2" text, "Population" real, "Census Ranking" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the total number of population in the land with an area of 149....
### 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_name_40 ( player VARCHAR, money___$__ VARCHAR, score VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Player, when Money ( $ ) is less than 387, and when Score is '73-76-74-72=295'? ### Query: SELECT player FROM 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_29854 ( "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 ijekavian translation of the ikavian ...
### Context: CREATE TABLE table_name_22 ( re_entered_service__p_ VARCHAR, entered_service__t_ VARCHAR, pre_conversion VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What date did the T328 that entered service on 18 June 1956 re-enter service? ### Query:...
### Context: CREATE TABLE table_15887683_6 ( country VARCHAR, television_service VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the country for sky primafila 7 hd ### Query: SELECT country FROM table_15887683_6 WHERE television_service = "Sky Primafila...
### Context: CREATE TABLE table_15380 ( "Category" text, "Film" text, "Director(s)" text, "Country" text, "Nominating Festival" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which nominating festival nominated Iao Lethem's film? ### Query: SELECT ...
### Context: CREATE TABLE table_11772 ( "Team" text, "Games Played" real, "Wins" real, "Losses" real, "Ties" real, "Goals For" real, "Goals Against" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the largest number of Games Played wi...
### Context: CREATE TABLE table_63746 ( "School" text, "Location" text, "Mascot" text, "Enrollment" real, "IHSAA Football Class" text, "Primary Conference" text, "County" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What county has an IHSA...
### Context: CREATE TABLE d_icd_diagnoses ( row_id number, icd9_code text, short_title text, long_title text ) CREATE TABLE labevents ( row_id number, subject_id number, hadm_id number, itemid number, charttime time, valuenum number, valueuom text ) CREATE TABLE microbiolog...
### Context: CREATE TABLE CloseReasonTypes ( Id number, Name text, Description text ) CREATE TABLE PostHistory ( Id number, PostHistoryTypeId number, PostId number, RevisionGUID other, CreationDate time, UserId number, UserDisplayName text, Comment text, Text text, C...
### Context: CREATE TABLE Manufacturers ( Code INTEGER, Name VARCHAR(255), Headquarter VARCHAR(255), Founder VARCHAR(255), Revenue REAL ) CREATE TABLE Products ( Code INTEGER, Name VARCHAR(255), Price DECIMAL, Manufacturer INTEGER ) -- Using valid SQLite, answer the following ques...
### Context: CREATE TABLE table_name_10 ( grid INTEGER, time VARCHAR, laps VARCHAR, manufacturer VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the lowest Grid, when Laps is 21, when Manufacturer is Yamaha, and when Time is +18.802? ### Quer...
### Context: CREATE TABLE table_62894 ( "Driver" text, "Entrant" text, "Constructor" text, "Time/Retired" text, "Grid" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What's the lowest grid with and entrant of fred saunders? ### Query: SELECT MIN("G...
### Context: CREATE TABLE table_9427 ( "CERCLIS ID" text, "Name" text, "County" text, "Proposed" text, "Listed" text, "Construction completed" text, "Partially deleted" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What name was proposed on...
### Context: CREATE TABLE table_12834315_4 ( stock VARCHAR, colt_model_no VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the stock for colt model mt6601 ### Query: SELECT stock FROM table_12834315_4 WHERE colt_model_no = "MT6601"
### Context: CREATE TABLE table_36871 ( "Club" text, "Sport" text, "League" text, "Venue" text, "Established" real, "Championships" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What year was the West Coast League established than the champions...
### Context: CREATE TABLE county ( County_Id int, County_name text, Population real, Zip_code text ) CREATE TABLE party ( Party_ID int, Year real, Party text, Governor text, Lieutenant_Governor text, Comptroller text, Attorney_General text, US_Senate text ) CREATE TABLE...
### 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_57777 ( "Rocket launch" text, "Launch Date" text, "Mission" text, "Institutional authority" text, "Launch Site" text, "Outcomes" text, "Derivatives" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Institu...
### Context: CREATE TABLE table_name_49 ( high_points VARCHAR, team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What are Utah's high points? ### Query: SELECT high_points FROM table_name_49 WHERE team = "utah"
### Context: CREATE TABLE table_21281 ( "Country" text, "Preliminary" text, "Interview" text, "Swimsuit" text, "Evening Gown" text, "Average" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Give swimsuit scores of participants 8.847 in preliminar...
### Context: CREATE TABLE time_interval ( period text, begin_time int, end_time int ) CREATE TABLE fare ( fare_id int, from_airport varchar, to_airport varchar, fare_basis_code text, fare_airline text, restriction_code text, one_direction_cost int, round_trip_cost int, r...
### Context: CREATE TABLE table_8574 ( "Region" text, "Date" text, "Label" text, "Format" text, "Catalog" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- The Catalog of ilps 9153 is from what region? ### Query: SELECT "Region" FROM table_8574 WHERE ...
### Context: CREATE TABLE table_name_48 ( february VARCHAR, opponent VARCHAR, game VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the February number of the game with the Vancouver Canucks as the opponent and a game number greater than 55? ### Q...
### 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 admissions ( row_id number, subject_id number, hadm_id number, admittim...
### Context: CREATE TABLE table_10504 ( "Grid" real, "Constructor" text, "Qual" real, "Rank" real, "Laps" real, "Time/retired" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the average rank of one who is at 76 laps? ### Query: SELECT A...
### Context: CREATE TABLE procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE demographic ( subject_id text, hadm_id text, name text, marital_status text, age text, dob text, gender text, language text, rel...
### Context: CREATE TABLE table_name_10 ( country VARCHAR, music VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What country is the film that has music of nino oliviero? ### Query: SELECT country FROM table_name_10 WHERE music = "nino oliviero"
### Context: CREATE TABLE area ( course_id int, area varchar ) 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 ( program_id int, name varchar, ...
### Context: CREATE TABLE School ( School_id text, School_name text, Location text, Mascot text, Enrollment int, IHSAA_Class text, IHSAA_Football_Class text, County text ) CREATE TABLE endowment ( endowment_id int, School_id int, donator_name text, amount real ) CREATE ...
### 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_14312471_7 ( home_team VARCHAR, away_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who played Richmond at home? ### Query: SELECT home_team FROM table_14312471_7 WHERE away_team = "Richmond"
### Context: CREATE TABLE hz_info ( KH text, KLX number, RYBH text, YLJGDM text ) 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, ...
### Context: CREATE TABLE table_53217 ( "Year" real, "Tracks" text, "Title" text, "Format, Special Notes" text, "Label" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What label is after 2004? ### Query: SELECT "Label" FROM table_53217 WHERE "Year"...
### Context: CREATE TABLE dual_carrier ( main_airline varchar, low_flight_number int, high_flight_number int, dual_airline varchar, service_name text ) CREATE TABLE ground_service ( city_code text, airport_code text, transport_type text, ground_fare int ) CREATE TABLE airline ( ...
### Context: CREATE TABLE table_63371 ( "Constituency number" text, "Name" text, "Reserved for ( SC / ST /None)" text, "District" text, "Number of electorates (2009)" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the name when the constitue...
### Context: CREATE TABLE table_name_48 ( place VARCHAR, score VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- WHAT PLACE WAS A SCORE 67-70=137? ### Query: SELECT place FROM table_name_48 WHERE score = 67 - 70 = 137
### 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 countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) 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_I...
### 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 procedures ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE diagnoses ( subject_id text, hadm_id text, icd9_code text, short_title text, long_title text ) CREATE TABLE lab ( subject_id text, hadm...
### Context: CREATE TABLE table_59057 ( "Parish (Prestegjeld)" text, "Sub-Parish (Sokn)" text, "Church Name" text, "Year Built" text, "Location of the Church" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When was the church in Arnafjord built? ##...
### Context: CREATE TABLE table_59320 ( "Date" text, "Time" text, "Opponent#" text, "Rank #" text, "Result" text, "Attendance" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the result of the game that had 56,500 in attendance? ### Que...
### Context: CREATE TABLE table_name_91 ( round INTEGER, school_club_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many rounds have School/club team of pan american? ### Query: SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan ame...
### Context: CREATE TABLE table_77393 ( "Game" real, "Date" text, "Score" text, "Location" text, "Time" text, "Attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of people in attendance when the time is 3:00? ### Quer...
### 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_47467 ( "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. -- Which Place has a Country of united states, and Money ($) larger than ...
### Context: CREATE TABLE performance ( Performance_ID real, Date text, Host text, Location text, Attendance int ) CREATE TABLE member ( Member_ID text, Name text, Nationality text, Role text ) CREATE TABLE member_attendance ( Member_ID int, Performance_ID int, Num_of_P...
### Context: CREATE TABLE table_80411 ( "Team 1" text, "Agg." text, "Team 2" text, "1st leg" text, "2nd leg" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What team played against Al-Ismaily (team 1)? ### Query: SELECT "Team 2" FROM table_80411 WH...
### 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_41 ( chassis VARCHAR, entrant VARCHAR, driver VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1? ### Query: SELECT chassis FROM table_name_41 WHERE en...
### Context: CREATE TABLE classroom ( building varchar(15), room_number varchar(7), capacity numeric(4,0) ) CREATE TABLE teaches ( ID varchar(5), course_id varchar(8), sec_id varchar(8), semester varchar(6), year numeric(4,0) ) CREATE TABLE course ( course_id varchar(8), title ...
### Context: CREATE TABLE table_name_39 ( venue VARCHAR, extra VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Venue, when Extra is Pentathlon? ### Query: SELECT venue FROM table_name_39 WHERE extra = "pentathlon"
### Context: CREATE TABLE chartevents ( row_id number, subject_id number, hadm_id number, icustay_id number, itemid number, charttime time, valuenum number, valueuom text ) CREATE TABLE labevents ( row_id number, subject_id number, hadm_id number, itemid number, char...
### Context: CREATE TABLE table_name_95 ( frequency_mhz VARCHAR, call_sign VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How much Frequency MHz has a Call sign of w264bg? ### Query: SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = "w264bg"
### Context: CREATE TABLE table_name_16 ( county INTEGER, party VARCHAR, borough VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many counties have people before profit as the party, and a borough greater than 0? ### Query: SELECT SUM(county) FROM ta...
### 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_14312471_4 ( ground VARCHAR, crowd VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What are the ground where the crowd totals 19929? ### Query: SELECT ground FROM table_14312471_4 WHERE crowd = 19929
### Context: CREATE TABLE company ( Company_ID int, Rank int, Company text, Headquarters text, Main_Industry text, Sales_billion real, Profits_billion real, Assets_billion real, Market_Value real ) CREATE TABLE station_company ( Station_ID int, Company_ID int, Rank_of_th...
### Context: CREATE TABLE table_33761 ( "Team" text, "Chassis" text, "Engine" text, "Driver(s)" text, "Sponsor(s)" text, "Rounds" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which rounds did the team Walther participate in? ### Query: SELECT...
### Context: CREATE TABLE table_name_84 ( away_team VARCHAR, venue VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How much did the away team score at Victoria park? ### Query: SELECT away_team AS score FROM table_name_84 WHERE venue = "victoria park"
### Context: CREATE TABLE table_203_741 ( id number, "season" text, "competition" text, "round" text, "opponent" text, "home" text, "away" text, "aggregate" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- which is the only year they went ...
### Context: CREATE TABLE d_labitems ( row_id number, itemid number, label text ) CREATE TABLE icustays ( row_id number, subject_id number, hadm_id number, icustay_id number, first_careunit text, last_careunit text, first_wardid number, last_wardid number, intime time, ...
### Context: CREATE TABLE table_name_72 ( score VARCHAR, year VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What was the score in the year 2004? ### Query: SELECT score FROM table_name_72 WHERE year = "2004"
### Context: CREATE TABLE table_65795 ( "Edition" text, "Year" text, "City" text, "Country" text, "Date" text, "No. of Events" real, "Top Team" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which Country has a Top Team of jam, and an Editio...
### Context: CREATE TABLE table_47393 ( "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. -- What is the score for the match that had a home team of Kidderminster Harriers? ### Query...
### Context: CREATE TABLE table_63242 ( "Country/Territory" text, "Established" real, "Degree" text, "Regional/Offshore" text, "IMED/Avicenna Listed" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the imed/avicenna listed for a medical schoo...
### Context: CREATE TABLE table_8371 ( "Date" text, "Home" text, "Score" text, "Away" text, "Attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Attendance when Vida is the Away team? ### Query: SELECT AVG("Attendance") FROM tabl...
### Context: CREATE TABLE table_203_653 ( 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 nation had the same total number of gold medal...
### 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_204_616 ( id number, "township" text, "fips" number, "population\ncenter" text, "population" number, "population\ndensity\n/km2 (/sq mi)" text, "land area\nkm2 (sq mi)" text, "water area\nkm2 (sq mi)" text, "water %" text, "geographic coordinates" ...
### Context: CREATE TABLE table_15199 ( "Tournament" text, "2007" text, "2008" text, "2009" text, "2010" text, "2011" text, "2012" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the 2010 for 2007 of a and 2012 of a ### Query: SELECT "2...
### Context: CREATE TABLE mzjzjlb ( YLJGDM text, JZLSH text, KH text, KLX number, MJZH text, HZXM text, NLS number, NLY number, ZSEBZ number, JZZTDM number, JZZTMC text, JZJSSJ time, TXBZ number, ZZBZ number, WDBZ number, JZKSBM text, JZKSMC text, ...