training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_44 (pinyin VARCHAR, county VARCHAR) ###human: Which Pinyin has a County of changhua? ###assistant: SELECT pinyin FROM table_name_44 WHERE county = "changhua"
###context:CREATE TABLE table_name_2 (county VARCHAR, chinese VARCHAR) ###human: Which County has a Chinese of ζ–°η«Ή? ###assistant: SELECT county FROM table_name_2 WHERE chinese = "ζ–°η«Ή"
###context:CREATE TABLE table_name_89 (pinyin VARCHAR, chinese VARCHAR) ###human: Which Pinyin has a Chinese of 臺南? ###assistant: SELECT pinyin FROM table_name_89 WHERE chinese = "臺南"
###context:CREATE TABLE table_name_61 (county VARCHAR, city VARCHAR) ###human: Which County has a City of changhua? ###assistant: SELECT county FROM table_name_61 WHERE city = "changhua"
###context:CREATE TABLE table_name_99 (population__2010_ INTEGER, city VARCHAR) ###human: What is taipei's lowest 2010 population? ###assistant: SELECT MIN(population__2010_) FROM table_name_99 WHERE city = "taipei"
###context:CREATE TABLE table_name_75 (record VARCHAR, round VARCHAR, opponent VARCHAR) ###human: What was Diego Saraiva's record when he fought for 3 rounds against danny suarez? ###assistant: SELECT record FROM table_name_75 WHERE round = "3" AND opponent = "danny suarez"
###context:CREATE TABLE table_name_98 (event VARCHAR, opponent VARCHAR) ###human: What event did Diego Saraiva fight jorge gurgel? ###assistant: SELECT event FROM table_name_98 WHERE opponent = "jorge gurgel"
###context:CREATE TABLE table_name_24 (game INTEGER, opponent VARCHAR) ###human: How many games had Montreal Canadiens as an opponent? ###assistant: SELECT SUM(game) FROM table_name_24 WHERE opponent = "montreal canadiens"
###context:CREATE TABLE table_name_61 (time VARCHAR, method VARCHAR) ###human: What was the time when the method was TKO? ###assistant: SELECT time FROM table_name_61 WHERE method = "tko"
###context:CREATE TABLE table_name_74 (round VARCHAR, record VARCHAR) ###human: How many rounds was the fight when the record was 4-0? ###assistant: SELECT COUNT(round) FROM table_name_74 WHERE record = "4-0"
###context:CREATE TABLE table_name_30 (opponent VARCHAR, round INTEGER) ###human: Who was the opponent when the round was more than 2? ###assistant: SELECT opponent FROM table_name_30 WHERE round > 2
###context:CREATE TABLE table_name_30 (game INTEGER, team VARCHAR) ###human: Can you tell me the average Game that has the Team of @ boston? ###assistant: SELECT AVG(game) FROM table_name_30 WHERE team = "@ boston"
###context:CREATE TABLE table_name_77 (team VARCHAR, date VARCHAR) ###human: Can you tell me the Team that has the Date of march 17? ###assistant: SELECT team FROM table_name_77 WHERE date = "march 17"
###context:CREATE TABLE table_name_85 (record VARCHAR, opponent VARCHAR) ###human: What is the record with the opponent as Carlton Jones? ###assistant: SELECT record FROM table_name_85 WHERE opponent = "carlton jones"
###context:CREATE TABLE table_name_88 (_percentage_of_votes VARCHAR, party VARCHAR) ###human: What is the percentage of votes received by the party of family rights? ###assistant: SELECT _percentage_of_votes FROM table_name_88 WHERE party = "family rights"
###context:CREATE TABLE table_name_86 (_percentage_of_seats VARCHAR, difference VARCHAR) ###human: What is the % of seats where the difference is 0.25? ###assistant: SELECT _percentage_of_seats FROM table_name_86 WHERE difference = "0.25"
###context:CREATE TABLE table_name_92 (_percentage_of_seats VARCHAR, difference VARCHAR) ###human: What is the % of seats where the difference is 0.19? ###assistant: SELECT _percentage_of_seats FROM table_name_92 WHERE difference = "0.19"
###context:CREATE TABLE table_name_51 (no_8 VARCHAR, no_10 VARCHAR, no_5 VARCHAR) ###human: Who was No. 8 when No. 10 Jackson and No. 5 Mason? ###assistant: SELECT no_8 FROM table_name_51 WHERE no_10 = "jackson" AND no_5 = "mason"
###context:CREATE TABLE table_name_17 (no_5 VARCHAR, no_6 VARCHAR, no_10 VARCHAR) ###human: Who was No. 5 when No. 6 Mason and No. 10 Jackson? ###assistant: SELECT no_5 FROM table_name_17 WHERE no_6 = "mason" AND no_10 = "jackson"
###context:CREATE TABLE table_name_48 (no_8 VARCHAR, no_1 VARCHAR, no_4 VARCHAR) ###human: Who was No. 8 when No. 1 Michael and No. 4 Logan? ###assistant: SELECT no_8 FROM table_name_48 WHERE no_1 = "michael" AND no_4 = "logan"
###context:CREATE TABLE table_name_65 (no_9 VARCHAR, no_5 VARCHAR, no_3 VARCHAR) ###human: Who was No. 9 when No. 5 Mason and No. 3 Aiden? ###assistant: SELECT no_9 FROM table_name_65 WHERE no_5 = "mason" AND no_3 = "aiden"
###context:CREATE TABLE table_name_35 (no_3 VARCHAR, no_5 VARCHAR, no_6 VARCHAR) ###human: Who was No. 3 when No. 5 James and No. 6 Mason? ###assistant: SELECT no_3 FROM table_name_35 WHERE no_5 = "james" AND no_6 = "mason"
###context:CREATE TABLE table_name_18 (year INTEGER, manufacturer VARCHAR, finish VARCHAR) ###human: Smaller than 37, the highest year for Ford? ###assistant: SELECT MAX(year) FROM table_name_18 WHERE manufacturer = "ford" AND finish < 37
###context:CREATE TABLE table_name_13 (finish INTEGER, year VARCHAR, team VARCHAR, start VARCHAR) ###human: Lowest finish for ganassi at smaller than 19 start for smaller than 2004 year? ###assistant: SELECT MIN(finish) FROM table_name_13 WHERE team = "ganassi" AND start < 19 AND year < 2004
###context:CREATE TABLE table_name_49 (method VARCHAR, event VARCHAR) ###human: What is Method, when Event is "Reality Submission Fighting 2"? ###assistant: SELECT method FROM table_name_49 WHERE event = "reality submission fighting 2"
###context:CREATE TABLE table_name_15 (votes INTEGER, governorate VARCHAR) ###human: Which Votes has a Governorate of hewler? ###assistant: SELECT AVG(votes) FROM table_name_15 WHERE governorate = "hewler"
###context:CREATE TABLE table_name_69 (draws INTEGER, wins VARCHAR, points VARCHAR) ###human: What is the average draws with less than 3 wins and more than 5 points? ###assistant: SELECT AVG(draws) FROM table_name_69 WHERE wins < 3 AND points > 5
###context:CREATE TABLE table_name_81 (goals_for INTEGER, goal_difference VARCHAR, points VARCHAR, goals_against VARCHAR) ###human: What is the average number of goals with more than 9 points, less than 14 goals against, and a goal difference less than 17? ###assistant: SELECT AVG(goals_for) FROM table_name_81 WHERE points > 9 AND goals_against < 14 AND goal_difference < 17
###context:CREATE TABLE table_name_76 (wins INTEGER, goals_against INTEGER) ###human: What is the average number of wins with less than 10 goals? ###assistant: SELECT AVG(wins) FROM table_name_76 WHERE goals_against < 10
###context:CREATE TABLE table_name_51 (position INTEGER, goal_difference VARCHAR, points VARCHAR) ###human: What is the lowest position with a -22 goal difference and more than 5 points? ###assistant: SELECT MIN(position) FROM table_name_51 WHERE goal_difference = -22 AND points > 5
###context:CREATE TABLE table_name_79 (title VARCHAR, composer_s_ VARCHAR, arranger_s_ VARCHAR) ###human: What is the Title, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham? ###assistant: SELECT title FROM table_name_79 WHERE composer_s_ = "sakdatorn" AND arranger_s_ = "jitrakorn mongkoltham"
###context:CREATE TABLE table_name_69 (title VARCHAR, lyricist_s_ VARCHAR, composer_s_ VARCHAR) ###human: What is the Title, when the Lyricist(s) is Yarosake, and when the Composer(s) is Yarosake? ###assistant: SELECT title FROM table_name_69 WHERE lyricist_s_ = "yarosake" AND composer_s_ = "yarosake"
###context:CREATE TABLE table_name_4 (length VARCHAR, composer_s_ VARCHAR, arranger_s_ VARCHAR) ###human: What is the Length, when the Composer(s) is Sakdatorn, and when the Arranger(s) is Jitrakorn Mongkoltham? ###assistant: SELECT length FROM table_name_4 WHERE composer_s_ = "sakdatorn" AND arranger_s_ = "jitrakorn mongkoltham"
###context:CREATE TABLE table_name_44 (composer_s_ VARCHAR, arranger_s_ VARCHAR, length VARCHAR) ###human: Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25? ###assistant: SELECT composer_s_ FROM table_name_44 WHERE arranger_s_ = "banana boat" AND length = "4:25"
###context:CREATE TABLE table_name_96 (composer_s_ VARCHAR, arranger_s_ VARCHAR, length VARCHAR) ###human: Who is/are the Composer(s), when the Arranger(s) is Banana Boat, and when the Length is 4:25? ###assistant: SELECT composer_s_ FROM table_name_96 WHERE arranger_s_ = "banana boat" AND length = "4:25"
###context:CREATE TABLE table_name_78 (try_bonus VARCHAR, lost VARCHAR) ###human: What i the try bonus with 12 losses? ###assistant: SELECT try_bonus FROM table_name_78 WHERE lost = "12"
###context:CREATE TABLE table_name_89 (losing_bonus VARCHAR, played VARCHAR, points_for VARCHAR) ###human: What was the losing bonus for the 20 played, and 353 points? ###assistant: SELECT losing_bonus FROM table_name_89 WHERE played = "20" AND points_for = "353"
###context:CREATE TABLE table_name_55 (played VARCHAR, tries_for VARCHAR) ###human: What was the played with 38 tries? ###assistant: SELECT played FROM table_name_55 WHERE tries_for = "38"
###context:CREATE TABLE table_name_58 (tries_for VARCHAR) ###human: What are the tries for a club of a club? ###assistant: SELECT tries_for FROM table_name_58 WHERE "club" = "club"
###context:CREATE TABLE table_name_66 (lost VARCHAR, points_for VARCHAR) ###human: What is the loss with 319 points? ###assistant: SELECT lost FROM table_name_66 WHERE points_for = "319"
###context:CREATE TABLE table_name_23 (runner_s__up VARCHAR, winner VARCHAR) ###human: Who was the runner(s)-Up to winner Sarah Brice? ###assistant: SELECT runner_s__up FROM table_name_23 WHERE winner = "sarah brice"
###context:CREATE TABLE table_name_19 (season INTEGER, bachelor VARCHAR) ###human: What season had bachelor Byron Velvick? ###assistant: SELECT MIN(season) FROM table_name_19 WHERE bachelor = "byron velvick"
###context:CREATE TABLE table_name_34 (season INTEGER, runner_s__up VARCHAR) ###human: What was the season that the runner -up was Tenley Molzahn? ###assistant: SELECT SUM(season) FROM table_name_34 WHERE runner_s__up = "tenley molzahn"
###context:CREATE TABLE table_name_50 (runner_s__up VARCHAR, premiered VARCHAR) ###human: Who was the runner-up for the show that premiered on March 25, 2002? ###assistant: SELECT runner_s__up FROM table_name_50 WHERE premiered = "march 25, 2002"
###context:CREATE TABLE table_name_28 (leading_scorer VARCHAR, date VARCHAR) ###human: Who was the leading scorer on the game played on February 25? ###assistant: SELECT leading_scorer FROM table_name_28 WHERE date = "february 25"
###context:CREATE TABLE table_name_82 (visitor VARCHAR, record VARCHAR) ###human: What was the visiting team that had a record of 26-18? ###assistant: SELECT visitor FROM table_name_82 WHERE record = "26-18"
###context:CREATE TABLE table_name_26 (score VARCHAR, home VARCHAR, visitor VARCHAR) ###human: What was the score for the game played between Cleveland and Orlando at Cleveland? ###assistant: SELECT score FROM table_name_26 WHERE home = "cleveland" AND visitor = "orlando"
###context:CREATE TABLE table_name_51 (visitor VARCHAR, score VARCHAR) ###human: What was the visiting team for the game that ended 82-75? ###assistant: SELECT visitor FROM table_name_51 WHERE score = "82-75"
###context:CREATE TABLE table_name_95 (semifinalists VARCHAR, tournament VARCHAR) ###human: who were the semifinalists for the tournament in montreal? ###assistant: SELECT semifinalists FROM table_name_95 WHERE tournament = "montreal"
###context:CREATE TABLE table_name_14 (finalist VARCHAR, tournament VARCHAR) ###human: Who was the finalist for the tournament in berlin? ###assistant: SELECT finalist FROM table_name_14 WHERE tournament = "berlin"
###context:CREATE TABLE table_name_16 (surface VARCHAR, tournament VARCHAR) ###human: What type of surface was played at the tournament in berlin? ###assistant: SELECT surface FROM table_name_16 WHERE tournament = "berlin"
###context:CREATE TABLE table_name_60 (tournament VARCHAR, surface VARCHAR, finalist VARCHAR) ###human: Where was the tournament where monica seles was the finalist who played on a hard surface? ###assistant: SELECT tournament FROM table_name_60 WHERE surface = "hard" AND finalist = "monica seles"
###context:CREATE TABLE table_name_61 (away_team VARCHAR, home_team VARCHAR) ###human: Who is the away team against the home team Hartlepools United? ###assistant: SELECT away_team FROM table_name_61 WHERE home_team = "hartlepools united"
###context:CREATE TABLE table_name_76 (away_team VARCHAR, home_team VARCHAR) ###human: Who is the away team against the home team Ashington? ###assistant: SELECT away_team FROM table_name_76 WHERE home_team = "ashington"
###context:CREATE TABLE table_name_6 (score VARCHAR, away_team VARCHAR) ###human: What is the score for the away team, Ipswich Town? ###assistant: SELECT score FROM table_name_6 WHERE away_team = "ipswich town"
###context:CREATE TABLE table_name_56 (date VARCHAR, away_team VARCHAR) ###human: What date did the away team Mansfield Town play? ###assistant: SELECT date FROM table_name_56 WHERE away_team = "mansfield town"
###context:CREATE TABLE table_name_88 (score VARCHAR, away_team VARCHAR) ###human: What was the score fore the away team Dartford? ###assistant: SELECT score FROM table_name_88 WHERE away_team = "dartford"
###context:CREATE TABLE table_name_63 (date VARCHAR, away_team VARCHAR) ###human: What date did the away team Bristol Rovers play? ###assistant: SELECT date FROM table_name_63 WHERE away_team = "bristol rovers"
###context:CREATE TABLE table_name_10 (brigade VARCHAR, type VARCHAR, tankers VARCHAR) ###human: What is the Brigade, when the Type is Rural, and when the value for Tankers is 1? ###assistant: SELECT brigade FROM table_name_10 WHERE type = "rural" AND tankers = 1
###context:CREATE TABLE table_name_98 (hazmat VARCHAR, type VARCHAR, tankers VARCHAR) ###human: What is the Hazmat, when the Type is Rural, and when the number of Tankers is 1? ###assistant: SELECT hazmat FROM table_name_98 WHERE type = "rural" AND tankers = 1
###context:CREATE TABLE table_name_15 (country VARCHAR, first_store VARCHAR) ###human: Which country had the first store in the year 2007? ###assistant: SELECT country FROM table_name_15 WHERE first_store = "2007"
###context:CREATE TABLE table_name_2 (first_store VARCHAR, hypermarkets VARCHAR) ###human: What year was the first store that had a hypermarket of 3? ###assistant: SELECT first_store FROM table_name_2 WHERE hypermarkets = 3
###context:CREATE TABLE table_name_20 (first_store VARCHAR, country VARCHAR) ###human: What year was the first store in India? ###assistant: SELECT first_store FROM table_name_20 WHERE country = "india"
###context:CREATE TABLE table_name_85 (attendance INTEGER, opponent VARCHAR) ###human: Can you tell me the average Attendance rhat has the Opponent of dunfermline athletic? ###assistant: SELECT AVG(attendance) FROM table_name_85 WHERE opponent = "dunfermline athletic"
###context:CREATE TABLE table_name_10 (attendance INTEGER, scorers VARCHAR) ###human: Can you tell me the average Attendance that has the Scorers of steven, johnston, walters, mccoist, i.ferguson? ###assistant: SELECT AVG(attendance) FROM table_name_10 WHERE scorers = "steven, johnston, walters, mccoist, i.ferguson"
###context:CREATE TABLE table_name_46 (number VARCHAR, points VARCHAR, steals VARCHAR) ###human: What number has 0 steals and less than 32 points? ###assistant: SELECT number FROM table_name_46 WHERE points < 32 AND steals = 0
###context:CREATE TABLE table_name_55 (score VARCHAR, set_3 VARCHAR) ###human: What was the overall score when the score for set 3 is 21–25? ###assistant: SELECT score FROM table_name_55 WHERE set_3 = "21–25"
###context:CREATE TABLE table_name_92 (set_1 VARCHAR, total VARCHAR) ###human: What is the set 1 score when the total is 85–101? ###assistant: SELECT set_1 FROM table_name_92 WHERE total = "85–101"
###context:CREATE TABLE table_name_32 (date VARCHAR, set_3 VARCHAR) ###human: On what date was the score for set 3 22–25? ###assistant: SELECT date FROM table_name_32 WHERE set_3 = "22–25"
###context:CREATE TABLE table_name_57 (score VARCHAR, set_2 VARCHAR) ###human: What is the overall score when the set 2 score is 25–18? ###assistant: SELECT score FROM table_name_57 WHERE set_2 = "25–18"
###context:CREATE TABLE table_name_10 (set_1 VARCHAR, set_3 VARCHAR) ###human: What is the score for set 1 when the score for set 3 is 22–25? ###assistant: SELECT set_1 FROM table_name_10 WHERE set_3 = "22–25"
###context:CREATE TABLE table_name_11 (player VARCHAR, score VARCHAR) ###human: What Player had a Score of 70-69-75=214? ###assistant: SELECT player FROM table_name_11 WHERE score = 70 - 69 - 75 = 214
###context:CREATE TABLE table_name_21 (score VARCHAR, to_par VARCHAR, player VARCHAR) ###human: With a To par of +4, what is Andy Bean's Score? ###assistant: SELECT score FROM table_name_21 WHERE to_par = "+4" AND player = "andy bean"
###context:CREATE TABLE table_name_33 (to_par VARCHAR, place VARCHAR, score VARCHAR) ###human: What is the To par of the T5 Place Player with a Score of 71-68-76=215? ###assistant: SELECT to_par FROM table_name_33 WHERE place = "t5" AND score = 71 - 68 - 76 = 215
###context:CREATE TABLE table_name_67 (place VARCHAR, to_par VARCHAR, score VARCHAR) ###human: What is the Place of the Player with a To par of +4 and Score of 70-76-71=217? ###assistant: SELECT place FROM table_name_67 WHERE to_par = "+4" AND score = 70 - 76 - 71 = 217
###context:CREATE TABLE table_name_33 (score VARCHAR, place VARCHAR) ###human: What is the Score of the T3 Place Player? ###assistant: SELECT score FROM table_name_33 WHERE place = "t3"
###context:CREATE TABLE table_name_35 (country VARCHAR, to_par VARCHAR) ###human: What is the Country of the Player with a To par of –1? ###assistant: SELECT country FROM table_name_35 WHERE to_par = "–1"
###context:CREATE TABLE table_name_77 (year INTEGER, host VARCHAR) ###human: In what year was Luxembourg Host? ###assistant: SELECT MIN(year) FROM table_name_77 WHERE host = "luxembourg"
###context:CREATE TABLE table_name_67 (bronze VARCHAR, silver VARCHAR) ###human: When Iceland gets the Silver, who gets the Bronze? ###assistant: SELECT bronze FROM table_name_67 WHERE silver = "iceland"
###context:CREATE TABLE table_name_76 (rank INTEGER, silver VARCHAR, total VARCHAR, gold VARCHAR, bronze VARCHAR) ###human: What is the maximum rank when there is 0 gold, and the bronze is less than 4, and the silver is greater than 1, and 2 as the total? ###assistant: SELECT MAX(rank) FROM table_name_76 WHERE gold = 0 AND bronze < 4 AND total = 2 AND silver > 1
###context:CREATE TABLE table_name_41 (bronze INTEGER, rank VARCHAR, total VARCHAR) ###human: Rank 14 with a total greater than 1 has what as the average bronze? ###assistant: SELECT AVG(bronze) FROM table_name_41 WHERE rank = 14 AND total > 1
###context:CREATE TABLE table_name_53 (total INTEGER, bronze VARCHAR, silver VARCHAR, gold VARCHAR) ###human: How many medals under total when silver is less than 2, gold is 3, and bronze is less than 0? ###assistant: SELECT SUM(total) FROM table_name_53 WHERE silver < 2 AND gold = 3 AND bronze < 0
###context:CREATE TABLE table_name_16 (total INTEGER, rank VARCHAR, silver VARCHAR, gold VARCHAR) ###human: What is the fewest total when silver is 0, and gold is less than 1, and rank is less than 13? ###assistant: SELECT MIN(total) FROM table_name_16 WHERE silver = 0 AND gold < 1 AND rank < 13
###context:CREATE TABLE table_name_18 (rank VARCHAR, total VARCHAR, bronze VARCHAR) ###human: What is the total rank where the total is less than 5, and bronze is less than 0? ###assistant: SELECT COUNT(rank) FROM table_name_18 WHERE total < 5 AND bronze < 0
###context:CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR) ###human: What place was the player hailing from Zimbabwe in? ###assistant: SELECT place FROM table_name_86 WHERE country = "zimbabwe"
###context:CREATE TABLE table_name_88 (score VARCHAR, player VARCHAR) ###human: What was the score of Bernhard Langer after 3 rounds? ###assistant: SELECT score FROM table_name_88 WHERE player = "bernhard langer"
###context:CREATE TABLE table_name_62 (goals_for VARCHAR, pct__percentage VARCHAR, points VARCHAR) ###human: How many Goals for were recorded when there was a percentage smaller than 0.519 and points greater than 65? ###assistant: SELECT COUNT(goals_for) FROM table_name_62 WHERE pct__percentage < 0.519 AND points > 65
###context:CREATE TABLE table_name_34 (games VARCHAR, goals_for VARCHAR) ###human: How many games were recorded with Goals for number of 215? ###assistant: SELECT COUNT(games) FROM table_name_34 WHERE goals_for = 215
###context:CREATE TABLE table_name_29 (to_par VARCHAR, player VARCHAR) ###human: what is the to par when the player is jack nicklaus? ###assistant: SELECT to_par FROM table_name_29 WHERE player = "jack nicklaus"
###context:CREATE TABLE table_name_81 (money___ INTEGER, place VARCHAR, player VARCHAR) ###human: what is the lowest money ($) when the place is t2 for player johnny miller? ###assistant: SELECT MIN(money___) AS $__ FROM table_name_81 WHERE place = "t2" AND player = "johnny miller"
###context:CREATE TABLE table_name_56 (to_par VARCHAR, score VARCHAR) ###human: what is the to par when the score is 69-70-72-72=283? ###assistant: SELECT to_par FROM table_name_56 WHERE score = 69 - 70 - 72 - 72 = 283
###context:CREATE TABLE table_name_50 (venue VARCHAR, result VARCHAR) ###human: What was the venue when the result was 3-2? ###assistant: SELECT venue FROM table_name_50 WHERE result = "3-2"
###context:CREATE TABLE table_name_8 (competition VARCHAR, score VARCHAR, result VARCHAR) ###human: What competition had a score of 3-0, and a result of 4-1? ###assistant: SELECT competition FROM table_name_8 WHERE score = "3-0" AND result = "4-1"
###context:CREATE TABLE table_name_28 (tie_no VARCHAR, away_team VARCHAR) ###human: Which Tie no that has an Away team of altrincham? ###assistant: SELECT tie_no FROM table_name_28 WHERE away_team = "altrincham"
###context:CREATE TABLE table_name_12 (date VARCHAR, score VARCHAR, tie_no VARCHAR) ###human: When has a Score of 0–1, and a Tie no of 3? ###assistant: SELECT date FROM table_name_12 WHERE score = "0–1" AND tie_no = "3"
###context:CREATE TABLE table_name_17 (date VARCHAR, tie_no VARCHAR) ###human: When has a Tie no of 15? ###assistant: SELECT date FROM table_name_17 WHERE tie_no = "15"
###context:CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR, score VARCHAR) ###human: Which Away has a Tie no of replay, and a Score of 2–0? ###assistant: SELECT away_team FROM table_name_93 WHERE tie_no = "replay" AND score = "2–0"
###context:CREATE TABLE table_name_80 (score VARCHAR, date VARCHAR) ###human: Name the Score on 17 december 1979? ###assistant: SELECT score FROM table_name_80 WHERE date = "17 december 1979"
###context:CREATE TABLE table_name_14 (date VARCHAR, home_team VARCHAR) ###human: Name the Home team of tranmere rovers? ###assistant: SELECT date FROM table_name_14 WHERE home_team = "tranmere rovers"
###context:CREATE TABLE table_name_49 (area_km_2 VARCHAR, census_ranking VARCHAR) ###human: what is the area when the census ranking is 2,290 of 5,008? ###assistant: SELECT area_km_2 FROM table_name_49 WHERE census_ranking = "2,290 of 5,008"