text
stringlengths
197
8.39k
### Context: CREATE TABLE table_33674 ( "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 DID HAWTHORN SCORE AT ITS AWAY...
### 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 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 table_name_6 ( venue VARCHAR, runner_up__average_in_final_ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the venue when the runner-up (average in final) is wayne jones (94.64)? ### Query: SELECT venue FROM table_name_6 WHE...
### 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_33253 ( "City" text, "Country" text, "IATA" text, "ICAO" text, "Airport" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is Cuba's ICAO? ### Query: SELECT "ICAO" FROM table_33253 WHERE "Country" = 'cuba'
### Context: CREATE TABLE table_204_737 ( id number, "year" number, "order" text, "quantity" number, "ger nos." text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the last year listed ? ### Query: SELECT "year" FROM table_204_737 ORDER BY id DE...
### 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_name_54 ( on_air_id VARCHAR, band VARCHAR, callsign VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the On-air ID of FM broadcaster 4nsa? ### Query: SELECT on_air_id FROM table_name_54 WHERE band = "fm" AND callsig...
### Context: CREATE TABLE table_name_84 ( goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest goals entry with drawn larger than 6 and goals against 85? ### Query: SELECT MAX(goals_for) FROM...
### Context: CREATE TABLE table_28741_1 ( area__km_2__ INTEGER, capital VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How few km 2 does the area with Nay Pyi Taw as capital cover? ### Query: SELECT MIN(area__km_2__) FROM table_28741_1 WHERE capital = "Nay ...
### Context: CREATE TABLE table_name_9 ( pick INTEGER, round VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name of the highest Pick is also a Round greater than 5 and Player as Tom Ivey? ### Query: SELECT MAX(pick) FROM table_name_9 WHE...
### Context: CREATE TABLE dorm ( dormid number, dorm_name text, student_capacity number, gender text ) CREATE TABLE has_amenity ( dormid number, amenid number ) CREATE TABLE dorm_amenity ( amenid number, amenity_name text ) CREATE TABLE lives_in ( stuid number, dormid number, ...
### Context: CREATE TABLE table_77390 ( "Rank" real, "Mountain Peak" text, "State" text, "Mountain Range" text, "Location" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the mountain peak when the location is 37.5775 n 105.4856 w? ### Query...
### Context: CREATE TABLE table_name_14 ( name VARCHAR, time VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Name has a Time of 01:17:01? ### Query: SELECT name FROM table_name_14 WHERE time = "01:17:01"
### Context: CREATE TABLE table_name_52 ( Id VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the 2009 for when 2007 is 3r and 2010 is q2 ### Query: SELECT 2009 FROM table_name_52 WHERE 2007 = "3r" AND 2010 = "q2"
### Context: CREATE TABLE code_description ( code varchar, description text ) CREATE TABLE restriction ( restriction_code text, advance_purchase int, stopovers text, saturday_stay_required text, minimum_stay int, maximum_stay int, application text, no_discounts text ) CREATE TA...
### 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_13113 ( "Elected" text, "Assembled" text, "Dissolved" text, "1st member" text, "2nd member" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What Assembled has a 1st member of william boteler? ### Query: SELECT "Assemb...
### Context: CREATE TABLE table_7584 ( "1900s" real, "1920s" real, "1930s" real, "1940s" real, "1950s" real, "1960s" real, "1970s" real, "1980s" real, "1990s" real, "2000s to date" real, "Total to date" real ) -- Using valid SQLite, answer the following questions for the ta...
### 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 admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, ...
### Context: CREATE TABLE table_52867 ( "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. -- Where did the home team score 15.21...
### Context: CREATE TABLE table_22757733_4 ( runner_up_a VARCHAR, winner VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- who ended runner-up to sankar adhi? ### Query: SELECT runner_up_a FROM table_22757733_4 WHERE winner = "Sankar Adhi"
### Context: CREATE TABLE table_name_35 ( december INTEGER, game VARCHAR, points VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which December has a Game of 37 and Points smaller than 47? ### Query: SELECT AVG(december) FROM table_name_35 WHERE game = 3...
### 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_name_73 ( round VARCHAR, pick__number VARCHAR, college VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many rounds had a pick number of more than 10 and Appalachian State as a college? ### Query: SELECT COUNT(round) FR...
### Context: CREATE TABLE ground_service ( city_code text, airport_code text, transport_type text, ground_fare int ) CREATE TABLE date_day ( month_number int, day_number int, year int, day_name varchar ) CREATE TABLE flight ( aircraft_code_sequence text, airline_code varchar, ...
### Context: CREATE TABLE table_name_74 ( venue VARCHAR, away_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When the Away team is melbourne, what venue do they play at? ### Query: SELECT venue FROM table_name_74 WHERE away_team = "melbourne"
### Context: CREATE TABLE table_name_37 ( term_end VARCHAR, party VARCHAR, minister VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- When is the term end of Shlomo-Yisrael Ben-Meir of the National Religious Party? ### Query: SELECT term_end FROM table_nam...
### Context: CREATE TABLE table_12886178_4 ( points VARCHAR, club VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many points does Croesyceiliog RFC have? ### Query: SELECT points FROM table_12886178_4 WHERE club = "Croesyceiliog RFC"
### Context: CREATE TABLE table_name_62 ( grid INTEGER, rider VARCHAR, laps VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the average Grid for the Rider Toni Elias with Laps more than 30? ### Query: SELECT AVG(grid) FROM table_name_62 WHERE rid...
### Context: CREATE TABLE Lives_in ( stuid INTEGER, dormid INTEGER, room_number INTEGER ) CREATE TABLE Dorm_amenity ( amenid INTEGER, amenity_name VARCHAR(25) ) CREATE TABLE Student ( StuID INTEGER, LName VARCHAR(12), Fname VARCHAR(12), Age INTEGER, Sex VARCHAR(1), Major IN...
### Context: CREATE TABLE furniture ( furniture_id number, name text, num_of_component number, market_rate number ) CREATE TABLE manufacturer ( manufacturer_id number, open_year number, name text, num_of_factories number, num_of_shops number ) CREATE TABLE furniture_manufacte ( ...
### Context: CREATE TABLE restriction ( restriction_code text, advance_purchase int, stopovers text, saturday_stay_required text, minimum_stay int, maximum_stay int, application text, no_discounts text ) CREATE TABLE aircraft ( aircraft_code varchar, aircraft_description varchar...
### Context: CREATE TABLE countries ( COUNTRY_ID varchar(2), COUNTRY_NAME varchar(40), REGION_ID decimal(10,0) ) CREATE TABLE departments ( DEPARTMENT_ID decimal(4,0), DEPARTMENT_NAME varchar(30), MANAGER_ID decimal(6,0), LOCATION_ID decimal(4,0) ) CREATE TABLE jobs ( JOB_ID varchar(10...
### Context: CREATE TABLE gsi ( course_offering_id int, student_id int ) CREATE TABLE ta ( campus_job_id int, student_id int, location varchar ) CREATE TABLE semester ( semester_id int, semester varchar, year int ) CREATE TABLE course_tags_count ( course_id int, clear_grading ...
### Context: CREATE TABLE table_71185 ( "Model" text, "Launch year" real, "RAM ( MiB )" real, "ROM ( MiB )" real, "Slots" text, "WiFi" text, "Bluetooth" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the RAM (MiB) value for the X30 M...
### Context: CREATE TABLE PostsWithDeleted ( Id number, PostTypeId number, AcceptedAnswerId number, ParentId number, CreationDate time, DeletionDate time, Score number, ViewCount number, Body text, OwnerUserId number, OwnerDisplayName text, LastEditorUserId number, La...
### Context: CREATE TABLE table_79186 ( "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. -- For which tie was Scunthorpe United the away team? ### Query: SELECT "Tie no" FROM table_...
### Context: CREATE TABLE table_30909 ( "Round" real, "Date" text, "Opponent" text, "Home/Away" text, "Score (Collingwoods score is in bold)" text, "Result (includes margin)" text, "Venue" text, "Position on Ladder" text ) -- Using valid SQLite, answer the following questions for the t...
### Context: CREATE TABLE table_26992 ( "Season" real, "Series" text, "Team" text, "Races" real, "Wins" real, "Poles" real, "F/Laps" real, "Podiums" real, "Points" real, "Position" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- W...
### Context: CREATE TABLE table_68443 ( "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 Qual with less than 68 laps? ### Query: SELECT "Qual" FROM table_68443...
### Context: CREATE TABLE table_56116 ( "Driver" text, "Constructor" text, "Laps" real, "Time/Retired" text, "Grid" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the time/retired for ronnie peterson with under 75 laps and a grid under 15? ...
### Context: CREATE TABLE table_20669355_2 ( height__ft_ VARCHAR, country VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How tall is the contestant from Aruba? ### Query: SELECT height__ft_ FROM table_20669355_2 WHERE country = "Aruba"
### 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_56667 ( "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. -- Where is the home venue of carlton ...
### Context: CREATE TABLE ReviewTaskTypes ( Id number, Name text, Description text ) CREATE TABLE PendingFlags ( Id number, FlagTypeId number, PostId number, CreationDate time, CloseReasonTypeId number, CloseAsOffTopicReasonTypeId number, DuplicateOfQuestionId number, Belong...
### Context: CREATE TABLE player_coach ( Player_ID int, Coach_ID int, Starting_year int ) CREATE TABLE club ( Club_ID int, Club_name text, Region text, Start_year int ) CREATE TABLE player ( Player_ID int, Sponsor_name text, Player_name text, Gender text, Residence text...
### Context: CREATE TABLE table_13671 ( "Outcome" text, "Date" text, "Tournament" text, "Surface" text, "Opponent" text, "Score" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what is the tournament when the score is 2-6, 4-6? ### Query: SELECT...
### Context: CREATE TABLE table_182499_1 ( porphyria VARCHAR, substrate VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many porphyria have substrate -aminolevulinic acid ### Query: SELECT COUNT(porphyria) FROM table_182499_1 WHERE substrate = "δ-Aminole...
### Context: CREATE TABLE table_61574 ( "Name" text, "Type" text, "R.A. ( J2000 )" text, "Dec. ( J2000 )" text, "Redshift (km/ s )" text, "Apparent Magnitude" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which R.A. (J2000) has a Name of ngc 15...
### Context: CREATE TABLE table_1140119_5 ( date VARCHAR, circuit VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What date was the Silverstone circuit driven? ### Query: SELECT date FROM table_1140119_5 WHERE circuit = "Silverstone"
### 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 transfers ( row_id number, subject_id number, hadm_id number, icustay_id number, ...
### Context: CREATE TABLE person_info ( CSD text, CSRQ time, GJDM text, GJMC text, JGDM text, JGMC text, MZDM text, MZMC text, RYBH text, XBDM number, XBMC text, XLDM text, XLMC text, XM text, ZYLBDM text, ZYMC text ) CREATE TABLE hz_info ( KH text, ...
### Context: CREATE TABLE table_17903 ( "Unit" text, "Type" text, "Net power" text, "Total power" text, "Construction start" text, "Construction finish" text, "Commercial operation" text, "Shut down" text ) -- Using valid SQLite, answer the following questions for the tables provided a...
### 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 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 ReviewTaskStates ( Id number, Name text, Description text ) CREATE TABLE FlagTypes ( Id number, Name text, Description text ) CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount numbe...
### Context: CREATE TABLE table_name_3 ( team_1 VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the 1st leg score when US Mbila Nzambi is team 1? ### Query: SELECT 1 AS st_leg FROM table_name_3 WHERE team_1 = "us mbila nzambi"
### Context: CREATE TABLE table_14003108_1 ( highest VARCHAR, team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many highest with team being forfar athletic ### Query: SELECT COUNT(highest) FROM table_14003108_1 WHERE team = "Forfar Athletic"
### Context: CREATE TABLE table_20445 ( "Information" text, "Akimel A-al The name is Tohono Oodham for children of the river" text, "Altade\u00f1a" text, "Aprende" text, "Centennial" text, "Kyrene MS" text, "del Pueblo" text ) -- Using valid SQLite, answer the following questions for the t...
### Context: CREATE TABLE Votes ( Id number, PostId number, VoteTypeId number, UserId number, CreationDate time, BountyAmount number ) CREATE TABLE ReviewRejectionReasons ( Id number, Name text, Description text, PostTypeId number ) CREATE TABLE Tags ( Id number, TagNam...
### Context: CREATE TABLE table_68789 ( "Institution" text, "Team" text, "City" text, "Province" text, "First season" real, "Head coach" text, "Enrollment" real, "Football stadium" text, "Capacity" real ) -- Using valid SQLite, answer the following questions for the tables provided...
### Context: CREATE TABLE table_name_9 ( winning_team VARCHAR, pole_position VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What team does mario andretti play pole position for? ### Query: SELECT winning_team FROM table_name_9 WHERE pole_position = "mario a...
### Context: CREATE TABLE purchase ( branch_id VARCHAR, year VARCHAR ) CREATE TABLE branch ( branch_id VARCHAR, city VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the sum of total pounds of purchase in year 2018 for all branches in London? ...
### Context: CREATE TABLE table_31409 ( "Rank" real, "Country/Territory" text, "Miss Earth" text, "Miss Air" real, "Miss Water" real, "Miss Fire" real, "Semifinalists" real, "Total" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is ...
### 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 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 outputevents ( row_id number, subject_id number, hadm_id number, icustay_id number, charttime time, itemid number, value number ) CREATE TABLE admissions ( row_id number, subject_id number, hadm_id number, admittime time, dischtime time, adm...
### Context: CREATE TABLE table_name_10 ( floors INTEGER, name VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the number of floors for the Citic Square? ### Query: SELECT AVG(floors) FROM table_name_10 WHERE name = "citic square"
### Context: CREATE TABLE game ( stadium_id int, id int, Season int, Date text, Home_team text, Away_team text, Score text, Competition text ) CREATE TABLE injury_accident ( game_id int, id int, Player text, Injury text, Number_of_matches text, Source text ) CRE...
### 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_27771406_1 ( catches INTEGER, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many catches did Clifford McWatt have? ### Query: SELECT MIN(catches) FROM table_27771406_1 WHERE player = "Clifford McWatt"
### 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_63 ( winner VARCHAR, college VARCHAR, hometown VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who is the winner who attended college at Connecticut and is from North Syracuse, NY? ### Query: SELECT winner FROM table_...
### Context: CREATE TABLE Things ( thing_id INTEGER, organization_id INTEGER, Type_of_Thing_Code CHAR(15), service_type_code CHAR(10), service_details VARCHAR(255) ) CREATE TABLE Properties ( property_id INTEGER, property_type_code CHAR(15), property_address VARCHAR(255), other_deta...
### Context: CREATE TABLE table_5607 ( "Date" text, "Tournament" text, "Surface" text, "Opponent in the Final" text, "Score" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which tournament was played on October 1, 2006? ### Query: SELECT "Tournamen...
### Context: CREATE TABLE table_name_15 ( position VARCHAR, player VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What position does Mikhail Kravets play? ### Query: SELECT position FROM table_name_15 WHERE player = "mikhail kravets"
### Context: CREATE TABLE project_staff ( staff_id number, project_id number, role_code text, date_from time, date_to time, other_details text ) CREATE TABLE projects ( project_id number, organisation_id number, project_details text ) CREATE TABLE project_outcomes ( project_id ...
### Context: CREATE TABLE requirement ( requirement_id int, requirement varchar, college varchar ) CREATE TABLE offering_instructor ( offering_instructor_id int, offering_id int, instructor_id int ) CREATE TABLE student ( student_id int, lastname varchar, firstname varchar, pro...
### Context: CREATE TABLE table_name_19 ( population INTEGER, code VARCHAR, area__km_2__ VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What's the population with a code more than 90902 and an area less than 1,335.47? ### Query: SELECT MIN(population) F...
### Context: CREATE TABLE table_10776 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "Attendance" real ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the week 12 result? ### Query: SELECT "Result" FROM table_10776 WHERE "Week" = '12...
### Context: CREATE TABLE table_11465521_2 ( tv VARCHAR, opponent VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Which channel had the game against the Minnesota Vikings? ### Query: SELECT tv FROM table_11465521_2 WHERE opponent = "Minnesota Vikings"
### Context: CREATE TABLE table_name_41 ( date VARCHAR, home_team VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the date of the home team from South Melbourne? ### Query: SELECT date FROM table_name_41 WHERE home_team = "south melbourne"
### Context: CREATE TABLE equipment_sequence ( aircraft_code_sequence varchar, aircraft_code varchar ) CREATE TABLE class_of_service ( booking_class varchar, rank int, class_description text ) CREATE TABLE dual_carrier ( main_airline varchar, low_flight_number int, high_flight_number i...
### Context: CREATE TABLE table_203_801 ( id number, "season" text, "division" text, "tier" text, "position" number, "cup" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how long does this table cover in years ? ### Query: SELECT MAX("season") ...
### Context: CREATE TABLE table_203_541 ( id number, "games" text, "host city" text, "dates" text, "nations" number, "participants" number, "events" number ) -- Using valid SQLite, answer the following questions for the tables provided above. -- what dates did the 1984 summer olympics tak...
### 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_10380 ( "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 is the total number of people ...
### Context: CREATE TABLE table_48429 ( "Name" text, "Daytime" text, "Evening" text, "Saturday" text, "Sunday" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Name the Daytime which has a Name of exmouth? ### Query: SELECT "Daytime" FROM table_48429...
### Context: CREATE TABLE fires ( fire_year number, discovery_date number, discovery_doy number, discovery_time text, stat_cause_code number, stat_cause_descr text, cont_date text, cont_doy text, cont_time text, fire_size number, fire_size_class text, latitude number, ...
### Context: CREATE TABLE table_20812 ( "Official #" real, "TF1 #" real, "French title" text, "English title" text, "Air date (France)" text, "Original Beechwood Bunny Tale / Source material" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who wa...
### Context: CREATE TABLE table_204_466 ( id number, "rank" number, "bib" number, "country" text, "time" text, "penalties (p+s)" text, "deficit" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many countries were represented ? ### Query:...
### Context: CREATE TABLE table_65094 ( "Week" real, "Date" text, "Opponent" text, "Result" text, "TV Time" text, "Attendance" text ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the Opponent of the game after Week 3 with a Result of L 10 6? ...
### Context: CREATE TABLE table_name_33 ( opponent_in_the_final VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- Who was the opponent on the 28 july 2013 final? ### Query: SELECT opponent_in_the_final FROM table_name_33 WHERE date = "28 july 201...
### Context: CREATE TABLE table_245711_2 ( season VARCHAR, final_record VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- how many time is the final record is 9 16 5? ### Query: SELECT COUNT(season) FROM table_245711_2 WHERE final_record = "9–16–5"
### Context: CREATE TABLE table_name_62 ( podiums INTEGER, f_laps VARCHAR, season VARCHAR, position VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- What is the highest number of podiums before 2008 with a 5th position and more than 0 f/laps? ### Quer...
### Context: CREATE TABLE table_name_81 ( gold INTEGER, total VARCHAR, bronze VARCHAR, rank VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- How many gold have a bronze of 1, a rank smaller than 6, and a total less than 3? ### Query: SELECT SUM(gold) ...
### Context: CREATE TABLE table_name_41 ( series VARCHAR, date VARCHAR ) -- Using valid SQLite, answer the following questions for the tables provided above. -- On May 8 what series is it? ### Query: SELECT series FROM table_name_41 WHERE date = "may 8"
### Context: CREATE TABLE weather ( date text, max_temperature_f number, mean_temperature_f number, min_temperature_f number, max_dew_point_f number, mean_dew_point_f number, min_dew_point_f number, max_humidity number, mean_humidity number, min_humidity number, max_sea_level...