training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_79 (lane INTEGER, nationality VARCHAR, react VARCHAR) ###human: What is the average lane for Kenya with react larger than 0.212? ###assistant: SELECT AVG(lane) FROM table_name_79 WHERE nationality = "kenya" AND react > 0.212
###context:CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR) ###human: what is the highest rank for tim maeyens? ###assistant: SELECT MAX(rank) FROM table_name_34 WHERE athlete = "tim maeyens"
###context:CREATE TABLE table_name_24 (notes VARCHAR, athlete VARCHAR) ###human: what is the notes for andre vonarburg? ###assistant: SELECT notes FROM table_name_24 WHERE athlete = "andre vonarburg"
###context:CREATE TABLE table_name_13 (athlete VARCHAR, country VARCHAR) ###human: Who is the athlete from greece? ###assistant: SELECT athlete FROM table_name_13 WHERE country = "greece"
###context:CREATE TABLE table_name_10 (athlete VARCHAR, rank INTEGER) ###human: who is the athlete with the rank smaller than 2? ###assistant: SELECT athlete FROM table_name_10 WHERE rank < 2
###context:CREATE TABLE table_name_86 (notes VARCHAR, time VARCHAR) ###human: what is the notes for the athlete with the time of 7:38.87? ###assistant: SELECT notes FROM table_name_86 WHERE time = "7:38.87"
###context:CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, total VARCHAR) ###human: What is the sum of the gold medals of the nation with 4 silvers and more than 6 total medals? ###assistant: SELECT SUM(gold) FROM table_name_74 WHERE silver = 4 AND total > 6
###context:CREATE TABLE table_name_4 (bronze INTEGER, nation VARCHAR, gold VARCHAR) ###human: What is the highest number of bronze medals of west germany, which has more than 0 golds? ###assistant: SELECT MAX(bronze) FROM table_name_4 WHERE nation = "west germany" AND gold > 0
###context:CREATE TABLE table_name_2 (total INTEGER, nation VARCHAR, bronze VARCHAR, silver VARCHAR) ###human: What is the average total medals of the soviet union, which has more than 2 bronze and more than 0 silver medals? ###assistant: SELECT AVG(total) FROM table_name_2 WHERE bronze > 2 AND silver > 0 AND nation = "soviet union"
###context:CREATE TABLE table_name_32 (year INTEGER, ship VARCHAR, dates VARCHAR) ###human: What year did the ship Europa, have the dates of 14 – 23 October? ###assistant: SELECT AVG(year) FROM table_name_32 WHERE ship = "europa" AND dates = "14 – 23 october"
###context:CREATE TABLE table_name_81 (days VARCHAR, _hours VARCHAR, _minutes VARCHAR, dates VARCHAR) ###human: What is the Days, hours, minutes for 21 – 26 October? ###assistant: SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = "21 – 26 october"
###context:CREATE TABLE table_name_83 (year_joined VARCHAR, mascot VARCHAR) ###human: Which year did the school with the mascot of the Vikings join? ###assistant: SELECT year_joined FROM table_name_83 WHERE mascot = "vikings"
###context:CREATE TABLE table_name_64 (writer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR) ###human: Who wrote the album recorded at funhouse studios with a time of 3:27? ###assistant: SELECT writer_s_ FROM table_name_64 WHERE recorded_at = "funhouse studios" AND time = "3:27"
###context:CREATE TABLE table_name_45 (performer_s_ VARCHAR, recorded_at VARCHAR, time VARCHAR) ###human: Who performed the song recorded at the Cabin in the Woods Studio with a Time of 3:16? ###assistant: SELECT performer_s_ FROM table_name_45 WHERE recorded_at = "the cabin in the woods studio" AND time = "3:16"
###context:CREATE TABLE table_name_45 (league_cup_goals VARCHAR, league_cup_apps VARCHAR) ###human: Which League Cup Goals have a League Cup Apps of 1 (1)? ###assistant: SELECT league_cup_goals FROM table_name_45 WHERE league_cup_apps = "1 (1)"
###context:CREATE TABLE table_name_90 (fa_cup_apps VARCHAR, total_goals VARCHAR, fa_cup_goals VARCHAR) ###human: Which FA Cup Apps have Total Goals larger than 6, and an FA Cup Goals smaller than 1? ###assistant: SELECT fa_cup_apps FROM table_name_90 WHERE total_goals > 6 AND fa_cup_goals < 1
###context:CREATE TABLE table_name_84 (league_goals VARCHAR, fa_cup_apps VARCHAR) ###human: How many League Goals have an FA Cup Apps of 0 (1)? ###assistant: SELECT COUNT(league_goals) FROM table_name_84 WHERE fa_cup_apps = "0 (1)"
###context:CREATE TABLE table_name_55 (round INTEGER, player VARCHAR) ###human: What is the lowest round number in which Will Wilcox was selected? ###assistant: SELECT MIN(round) FROM table_name_55 WHERE player = "will wilcox"
###context:CREATE TABLE table_name_7 (player VARCHAR, college VARCHAR) ###human: Which player went to college at Tennessee-Chattanooga? ###assistant: SELECT player FROM table_name_7 WHERE college = "tennessee-chattanooga"
###context:CREATE TABLE table_name_88 (col__m_ INTEGER, elevation__m_ INTEGER) ###human: Which Col (m) has an Elevation (m) smaller than 1,624? ###assistant: SELECT MIN(col__m_) FROM table_name_88 WHERE elevation__m_ < 1 OFFSET 624
###context:CREATE TABLE table_name_45 (elevation__m_ INTEGER, prominence__m_ INTEGER) ###human: How much Elevation (m) has a Prominence (m) larger than 1,754? ###assistant: SELECT SUM(elevation__m_) FROM table_name_45 WHERE prominence__m_ > 1 OFFSET 754
###context:CREATE TABLE table_name_21 (score VARCHAR, rank VARCHAR) ###human: What is the lowest first half when the score is larger than 621 and the rank 35? ###assistant: SELECT MIN(1 AS st_half) FROM table_name_21 WHERE score > 621 AND rank = 35
###context:CREATE TABLE table_name_72 (grid VARCHAR, points VARCHAR, time_retired VARCHAR) ###human: Which Grid has Points larger than 10 and a Time/Retired of +13.7 secs? ###assistant: SELECT grid FROM table_name_72 WHERE points > 10 AND time_retired = "+13.7 secs"
###context:CREATE TABLE table_name_67 (team VARCHAR, driver VARCHAR, points VARCHAR, grid VARCHAR) ###human: Which Team has Points of 0, a Grid larger than 13, and a Driver of alex yoong? ###assistant: SELECT team FROM table_name_67 WHERE points = 0 AND grid > 13 AND driver = "alex yoong"
###context:CREATE TABLE table_name_75 (silver INTEGER, rank VARCHAR, gold VARCHAR) ###human: What is the hioghest amount of silver medals for a nation ranked higher than 19 and less than 2 gold medals? ###assistant: SELECT MAX(silver) FROM table_name_75 WHERE rank = "19" AND gold < 2
###context:CREATE TABLE table_name_67 (nation VARCHAR, silver VARCHAR) ###human: What nation finished with 11 silver medals? ###assistant: SELECT nation FROM table_name_67 WHERE silver = 11
###context:CREATE TABLE table_name_75 (pick VARCHAR, player VARCHAR) ###human: What is Benito Cheng's Pick number? ###assistant: SELECT pick FROM table_name_75 WHERE player = "benito cheng"
###context:CREATE TABLE table_name_42 (pba_team VARCHAR, player VARCHAR) ###human: What is Richard Bachmann's PBA team? ###assistant: SELECT pba_team FROM table_name_42 WHERE player = "richard bachmann"
###context:CREATE TABLE table_name_55 (pick VARCHAR, college VARCHAR, player VARCHAR) ###human: What is Far Eastern College Johnny Abarrientos' Pick number? ###assistant: SELECT pick FROM table_name_55 WHERE college = "far eastern" AND player = "johnny abarrientos"
###context:CREATE TABLE table_name_14 (home_team VARCHAR, tie_no VARCHAR) ###human: What home team has 10 as the tie no? ###assistant: SELECT home_team FROM table_name_14 WHERE tie_no = "10"
###context:CREATE TABLE table_name_7 (score VARCHAR, tie_no VARCHAR) ###human: What is the game score when the tie no is 7? ###assistant: SELECT score FROM table_name_7 WHERE tie_no = "7"
###context:CREATE TABLE table_name_82 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR) ###human: Who was the away team on 10 January 1979 who had a tie no of 17? ###assistant: SELECT away_team FROM table_name_82 WHERE date = "10 january 1979" AND tie_no = "17"
###context:CREATE TABLE table_name_91 (date VARCHAR, tie_no VARCHAR) ###human: When was the game that has tie no 2? ###assistant: SELECT date FROM table_name_91 WHERE tie_no = "2"
###context:CREATE TABLE table_name_44 (round INTEGER, event VARCHAR) ###human: What round did the match at the Golden Trophy 1999 event end? ###assistant: SELECT SUM(round) FROM table_name_44 WHERE event = "golden trophy 1999"
###context:CREATE TABLE table_name_33 (event VARCHAR, record VARCHAR) ###human: What event had a record of 8–5–1? ###assistant: SELECT event FROM table_name_33 WHERE record = "8–5–1"
###context:CREATE TABLE table_name_63 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR) ###human: What's the HDR Output that has a name of name? ###assistant: SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_63 WHERE "name" = "name"
###context:CREATE TABLE table_name_38 (exposure_fusion VARCHAR, name VARCHAR) ###human: What's the exposure fusion of Panoramaplus x4? ###assistant: SELECT exposure_fusion FROM table_name_38 WHERE name = "panoramaplus x4"
###context:CREATE TABLE table_name_35 (hdr_output___exr_ VARCHAR, _hdr VARCHAR, _logluv_ VARCHAR, _etc_ VARCHAR, name VARCHAR) ###human: What's the HDR output of Photovista Panorama? ###assistant: SELECT hdr_output___exr_, _hdr, _logluv_, _etc_ FROM table_name_35 WHERE name = "photovista panorama"
###context:CREATE TABLE table_name_72 (location VARCHAR, capacity VARCHAR) ###human: Which location has 101,119 as the capacity? ###assistant: SELECT location FROM table_name_72 WHERE capacity = "101,119"
###context:CREATE TABLE table_name_68 (rank INTEGER, location VARCHAR) ###human: What is the lowest rank that has university park, pa as the location? ###assistant: SELECT MIN(rank) FROM table_name_68 WHERE location = "university park, pa"
###context:CREATE TABLE table_name_13 (home_team VARCHAR, rank VARCHAR, capacity VARCHAR) ###human: What home team has a rank greater than 6, and 94,392 as the capacity? ###assistant: SELECT home_team FROM table_name_13 WHERE rank > 6 AND capacity = "94,392"
###context:CREATE TABLE table_name_98 (builder VARCHAR, name VARCHAR) ###human: Who was the builder for the USS cambridge? ###assistant: SELECT builder FROM table_name_98 WHERE name = "uss cambridge"
###context:CREATE TABLE table_name_17 (laid_down VARCHAR, name VARCHAR) ###human: What year was the USS Cambridge laid down? ###assistant: SELECT laid_down FROM table_name_17 WHERE name = "uss cambridge"
###context:CREATE TABLE table_name_82 (game VARCHAR, record VARCHAR) ###human: What was the number of the game when the record was 11-12? ###assistant: SELECT game FROM table_name_82 WHERE record = "11-12"
###context:CREATE TABLE table_name_4 (score VARCHAR, game VARCHAR) ###human: What was the score of Game 16? ###assistant: SELECT score FROM table_name_4 WHERE game = "16"
###context:CREATE TABLE table_name_54 (location_attendance VARCHAR, record VARCHAR) ###human: What was the location and attendance at the game when the record was 9-6? ###assistant: SELECT location_attendance FROM table_name_54 WHERE record = "9-6"
###context:CREATE TABLE table_name_88 (date VARCHAR, round__leg_ VARCHAR) ###human: What date has 3 as the round (leg)? ###assistant: SELECT date FROM table_name_88 WHERE round__leg_ = "3"
###context:CREATE TABLE table_name_87 (year INTEGER, result VARCHAR, film VARCHAR) ###human: What was the year of Bridget Jones: The Edge of Reason that was nominated? ###assistant: SELECT MIN(year) FROM table_name_87 WHERE result = "nominated" AND film = "bridget jones: the edge of reason"
###context:CREATE TABLE table_name_74 (lost_to VARCHAR, film VARCHAR) ###human: Who was the loss to for the film Chicago? ###assistant: SELECT lost_to FROM table_name_74 WHERE film = "chicago"
###context:CREATE TABLE table_name_79 (ihsaa_football_class VARCHAR, ihsaa_class VARCHAR, location VARCHAR) ###human: Which IHSAA Football Class has a IHSAA Class of aaa, and a Location of nashville? ###assistant: SELECT ihsaa_football_class FROM table_name_79 WHERE ihsaa_class = "aaa" AND location = "nashville"
###context:CREATE TABLE table_name_63 (mascot VARCHAR, enrollment VARCHAR) ###human: Which Mascot has an Enrollment of 640? ###assistant: SELECT mascot FROM table_name_63 WHERE enrollment = 640
###context:CREATE TABLE table_name_96 (ihsaa_class VARCHAR, location VARCHAR) ###human: Which IHSAA Class has a Location of brazil? ###assistant: SELECT ihsaa_class FROM table_name_96 WHERE location = "brazil"
###context:CREATE TABLE table_name_55 (school VARCHAR, enrollment VARCHAR) ###human: Which School has a Enrollment of 908? ###assistant: SELECT school FROM table_name_55 WHERE enrollment = 908
###context:CREATE TABLE table_name_34 (currency VARCHAR, code VARCHAR) ###human: What type of currency has a code of SEK? ###assistant: SELECT currency FROM table_name_34 WHERE code = "sek"
###context:CREATE TABLE table_name_34 (code VARCHAR, currency VARCHAR) ###human: What code is used to represent the currency of Croatian Kuna? ###assistant: SELECT code FROM table_name_34 WHERE currency = "croatian kuna"
###context:CREATE TABLE table_name_68 (model VARCHAR, chassis_code VARCHAR) ###human: What's the model that has chassis code W116.036? ###assistant: SELECT model FROM table_name_68 WHERE chassis_code = "w116.036"
###context:CREATE TABLE table_name_71 (score VARCHAR, year VARCHAR) ###human: What the score of the 1992 game? ###assistant: SELECT score FROM table_name_71 WHERE year = "1992"
###context:CREATE TABLE table_name_59 (score VARCHAR, runners_up VARCHAR) ###human: What is the score when TSV Siegen was the runner-up? ###assistant: SELECT score FROM table_name_59 WHERE runners_up = "tsv siegen"
###context:CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR) ###human: What year was the game at Bad Neuenahr Eppelborn? ###assistant: SELECT year FROM table_name_30 WHERE venue = "bad neuenahr eppelborn"
###context:CREATE TABLE table_name_65 (venue VARCHAR, runners_up VARCHAR, score VARCHAR) ###human: What was the venue when the runner up was Tennis Borussia Berlin, and the score was 4 – 2 *? ###assistant: SELECT venue FROM table_name_65 WHERE runners_up = "tennis borussia berlin" AND score = "4 – 2 *"
###context:CREATE TABLE table_name_2 (runners_up VARCHAR, venue VARCHAR, year VARCHAR) ###human: What team was runner-up at Bergisch Gladbach in 1983? ###assistant: SELECT runners_up FROM table_name_2 WHERE venue = "bergisch gladbach" AND year = "1983"
###context:CREATE TABLE table_name_77 (time VARCHAR, lane VARCHAR) ###human: What was the time of the swimmer in lane 7? ###assistant: SELECT time FROM table_name_77 WHERE lane = 7
###context:CREATE TABLE table_name_23 (rank VARCHAR, time VARCHAR) ###human: What was the rank of the swimmer with a time of 1:55.40? ###assistant: SELECT rank FROM table_name_23 WHERE time = "1:55.40"
###context:CREATE TABLE table_name_14 (date VARCHAR, game VARCHAR) ###human: What was the date for game 13? ###assistant: SELECT date FROM table_name_14 WHERE game = "13"
###context:CREATE TABLE table_name_72 (record VARCHAR, opponent VARCHAR) ###human: What is the record for the opponent St. Louis Cardinals? ###assistant: SELECT record FROM table_name_72 WHERE opponent = "st. louis cardinals"
###context:CREATE TABLE table_name_42 (record VARCHAR, game VARCHAR) ###human: What is the record for Game 8? ###assistant: SELECT record FROM table_name_42 WHERE game = "8"
###context:CREATE TABLE table_name_31 (mobile VARCHAR, opera VARCHAR) ###human: What percentage of users were using mobile browsers during the period in which 2.62% were using Opera? ###assistant: SELECT mobile FROM table_name_31 WHERE opera = "2.62%"
###context:CREATE TABLE table_name_28 (mobile VARCHAR, chrome VARCHAR) ###human: What percentage of users were using mobile browsers during the period in which 9.00% were using Chrome? ###assistant: SELECT mobile FROM table_name_28 WHERE chrome = "9.00%"
###context:CREATE TABLE table_name_96 (safari VARCHAR, firefox VARCHAR) ###human: What percentage of users were using Safari during the period in which 30.82% were using Firefox? ###assistant: SELECT safari FROM table_name_96 WHERE firefox = "30.82%"
###context:CREATE TABLE table_name_66 (internet_explorer VARCHAR, mobile VARCHAR) ###human: What percentage of users were using Internet Explorer during the period in which 2.1% were using mobile browsers? ###assistant: SELECT internet_explorer FROM table_name_66 WHERE mobile = "2.1%"
###context:CREATE TABLE table_name_58 (other_mozilla VARCHAR, chrome VARCHAR) ###human: What percentage of users were using other Mozilla browsers during the period in which 9.00% were using Chrome? ###assistant: SELECT other_mozilla FROM table_name_58 WHERE chrome = "9.00%"
###context:CREATE TABLE table_name_94 (date VARCHAR, result VARCHAR) ###human: What date has w 14-10 as the result? ###assistant: SELECT date FROM table_name_94 WHERE result = "w 14-10"
###context:CREATE TABLE table_name_29 (opponent VARCHAR, week VARCHAR, date VARCHAR) ###human: What opponent has a week less than 12, with November 25, 1965 as the date? ###assistant: SELECT opponent FROM table_name_29 WHERE week < 12 AND date = "november 25, 1965"
###context:CREATE TABLE table_name_70 (week INTEGER, date VARCHAR, attendance VARCHAR) ###human: What is the lowest week that has September 19, 1965 as the date, with an attendance less than 46,941? ###assistant: SELECT MIN(week) FROM table_name_70 WHERE date = "september 19, 1965" AND attendance < 46 OFFSET 941
###context:CREATE TABLE table_name_66 (week INTEGER, attendance VARCHAR) ###human: What is the lowest week that has 51,499 as the attendance? ###assistant: SELECT MIN(week) FROM table_name_66 WHERE attendance = 51 OFFSET 499
###context:CREATE TABLE table_name_18 (frequency VARCHAR, format VARCHAR) ###human: What is the frequency for the active rock format? ###assistant: SELECT frequency FROM table_name_18 WHERE format = "active rock"
###context:CREATE TABLE table_name_66 (branding VARCHAR, frequency VARCHAR) ###human: What is the branding for fm 88.9? ###assistant: SELECT branding FROM table_name_66 WHERE frequency = "fm 88.9"
###context:CREATE TABLE table_name_38 (owner VARCHAR, branding VARCHAR) ###human: What is the name of the owner of rock 97.7? ###assistant: SELECT owner FROM table_name_38 WHERE branding = "rock 97.7"
###context:CREATE TABLE table_name_15 (branding VARCHAR, call_sign VARCHAR) ###human: What is the branding for cbxp-fm? ###assistant: SELECT branding FROM table_name_15 WHERE call_sign = "cbxp-fm"
###context:CREATE TABLE table_name_34 (call_sign VARCHAR, format VARCHAR, frequency VARCHAR) ###human: What is the call sign for country station fm 93.1? ###assistant: SELECT call_sign FROM table_name_34 WHERE format = "country" AND frequency = "fm 93.1"
###context:CREATE TABLE table_name_65 (frequency VARCHAR, format VARCHAR, owner VARCHAR) ###human: What is the frequency for the country station owned by Jim Pattison Group? ###assistant: SELECT frequency FROM table_name_65 WHERE format = "country" AND owner = "jim pattison group"
###context:CREATE TABLE table_name_60 (game VARCHAR, location_attendance VARCHAR) ###human: What game was located at the Los Angeles Memorial Sports Arena? ###assistant: SELECT game FROM table_name_60 WHERE location_attendance = "los angeles memorial sports arena"
###context:CREATE TABLE table_name_44 (location_attendance VARCHAR, score VARCHAR) ###human: What is the location for the game with a score of w 106-81? ###assistant: SELECT location_attendance FROM table_name_44 WHERE score = "w 106-81"
###context:CREATE TABLE table_name_26 (location_attendance VARCHAR, game VARCHAR) ###human: Where is the location of Game 4? ###assistant: SELECT location_attendance FROM table_name_26 WHERE game = "4"
###context:CREATE TABLE table_name_89 (lane INTEGER, rank VARCHAR) ###human: What is the lane total when rank is 2? ###assistant: SELECT SUM(lane) FROM table_name_89 WHERE rank = 2
###context:CREATE TABLE table_name_56 (time VARCHAR, name VARCHAR) ###human: Gemma Spofforth has what time? ###assistant: SELECT time FROM table_name_56 WHERE name = "gemma spofforth"
###context:CREATE TABLE table_name_9 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, pinn_rank VARCHAR) ###human: Which Floors have a Pinnacle height ft (m) of 1,136 (346), and a Pinn Rank larger than 4? ###assistant: SELECT AVG(floors) FROM table_name_9 WHERE pinnacle_height_ft__m_ = "1,136 (346)" AND pinn_rank > 4
###context:CREATE TABLE table_name_97 (std_rank INTEGER, name VARCHAR, year VARCHAR) ###human: How much Standard Rank has a Name of 311 south wacker drive, and a Year larger than 1990? ###assistant: SELECT SUM(std_rank) FROM table_name_97 WHERE name = "311 south wacker drive" AND year > 1990
###context:CREATE TABLE table_name_92 (floors INTEGER, pinnacle_height_ft__m_ VARCHAR, std_rank VARCHAR) ###human: Which Floors have a Pinnacle height ft (m) of 995 (303), and an Std Rank larger than 6? ###assistant: SELECT MAX(floors) FROM table_name_92 WHERE pinnacle_height_ft__m_ = "995 (303)" AND std_rank > 6
###context:CREATE TABLE table_name_24 (time INTEGER, rank VARCHAR, name VARCHAR) ###human: What is the average time with a rank lower than 2 for Andy Turner? ###assistant: SELECT AVG(time) FROM table_name_24 WHERE rank > 2 AND name = "andy turner"
###context:CREATE TABLE table_name_34 (date VARCHAR, year VARCHAR, location VARCHAR) ###human: What was the date for morocco when the year was lerger than 1981? ###assistant: SELECT date FROM table_name_34 WHERE year > 1981 AND location = "morocco"
###context:CREATE TABLE table_name_80 (year INTEGER, city VARCHAR) ###human: What is the lowest year when the city is casablanca? ###assistant: SELECT MIN(year) FROM table_name_80 WHERE city = "casablanca"
###context:CREATE TABLE table_name_31 (year VARCHAR, city VARCHAR) ###human: What year was the expansion in the city of San Juan? ###assistant: SELECT COUNT(year) FROM table_name_31 WHERE city = "san juan"
###context:CREATE TABLE table_name_50 (city VARCHAR, location VARCHAR) ###human: What city was located in the Netherlands? ###assistant: SELECT city FROM table_name_50 WHERE location = "netherlands"
###context:CREATE TABLE table_name_88 (location VARCHAR, year VARCHAR, city VARCHAR) ###human: What location had a year of 1971 and a city of Tokyo? ###assistant: SELECT location FROM table_name_88 WHERE year = 1971 AND city = "tokyo"
###context:CREATE TABLE table_name_62 (award VARCHAR, year INTEGER) ###human: What award did they win before 2005? ###assistant: SELECT award FROM table_name_62 WHERE year < 2005
###context:CREATE TABLE table_name_44 (date VARCHAR, home_team VARCHAR) ###human: When was Southend United the home team? ###assistant: SELECT date FROM table_name_44 WHERE home_team = "southend united"
###context:CREATE TABLE table_name_4 (score VARCHAR, date VARCHAR, away_team VARCHAR) ###human: For the game on 13 December 1975 with Halifax Town as the away team what was the score? ###assistant: SELECT score FROM table_name_4 WHERE date = "13 december 1975" AND away_team = "halifax town"
###context:CREATE TABLE table_name_69 (away_team VARCHAR, tie_no VARCHAR) ###human: Who was the away team when 6 was the tie no? ###assistant: SELECT away_team FROM table_name_69 WHERE tie_no = "6"
###context:CREATE TABLE table_name_69 (score VARCHAR, tie_no VARCHAR) ###human: The game with 13 as the tie no had what as the score? ###assistant: SELECT score FROM table_name_69 WHERE tie_no = "13"