text
stringlengths
114
1.06k
### question: What is the smallest number of goals against when there are 1 of 18 points, and more than 8 are drawn? ### answer: SELECT MIN(goals_against) FROM table_name_58 WHERE points_1 = "18" AND drawn > 8 ### context: CREATE TABLE table_name_58 (goals_against INTEGER, points_1 VARCHAR, drawn VARCHAR)
### question: What is the total number of goals for when the drawn is less than 7, less than 21 games have been lost, and there are 1 of 33 points? ### answer: SELECT COUNT(goals_for) FROM table_name_33 WHERE drawn < 7 AND lost < 21 AND points_1 = "33" ### context: CREATE TABLE table_name_33 (goals_for VARCHAR, points_...
### question: Which Engine has a Model of sl500, and a Year From larger than 1999? ### answer: SELECT MAX(engine) FROM table_name_57 WHERE model = "sl500" AND year_from > 1999 ### context: CREATE TABLE table_name_57 (engine INTEGER, model VARCHAR, year_from VARCHAR)
### question: Which Engine has a Model of sl500, and a Chassis smaller than 129.067? ### answer: SELECT MIN(engine) FROM table_name_60 WHERE model = "sl500" AND chassis < 129.067 ### context: CREATE TABLE table_name_60 (engine INTEGER, model VARCHAR, chassis VARCHAR)
### question: How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995? ### answer: SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND year_to < 1995 ### context: CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_...
### question: Which Year To has an Engine of 119.972, and a Chassis smaller than 129.067? ### answer: SELECT MIN(year_to) FROM table_name_14 WHERE engine = 119.972 AND chassis < 129.067 ### context: CREATE TABLE table_name_14 (year_to INTEGER, engine VARCHAR, chassis VARCHAR)
### question: What Time has a Show Name of mornings with neil mitchell? ### answer: SELECT time FROM table_name_44 WHERE show_name = "mornings with neil mitchell" ### context: CREATE TABLE table_name_44 (time VARCHAR, show_name VARCHAR)
### question: What Time has Ad Freq of 15 minutes, and a Show Name of country today? ### answer: SELECT time FROM table_name_37 WHERE ad_freq = "15 minutes" AND show_name = "country today" ### context: CREATE TABLE table_name_37 (time VARCHAR, ad_freq VARCHAR, show_name VARCHAR)
### question: What Time has a Show Name of mornings with neil mitchell? ### answer: SELECT time FROM table_name_15 WHERE show_name = "mornings with neil mitchell" ### context: CREATE TABLE table_name_15 (time VARCHAR, show_name VARCHAR)
### question: What Local/Networked has a Show Name of nightline? ### answer: SELECT local_networked FROM table_name_99 WHERE show_name = "nightline" ### context: CREATE TABLE table_name_99 (local_networked VARCHAR, show_name VARCHAR)
### question: What News Freq has a Time of 1:00pm–4:00pm? ### answer: SELECT news_freq FROM table_name_90 WHERE time = "1:00pm–4:00pm" ### context: CREATE TABLE table_name_90 (news_freq VARCHAR, time VARCHAR)
### question: What was the ERP W for 96.7 MHz? ### answer: SELECT erp_w FROM table_name_44 WHERE frequency_mhz = 96.7 ### context: CREATE TABLE table_name_44 (erp_w VARCHAR, frequency_mhz VARCHAR)
### question: What was the class for Appleton, Wisconsin? ### answer: SELECT class FROM table_name_96 WHERE city_of_license = "appleton, wisconsin" ### context: CREATE TABLE table_name_96 (class VARCHAR, city_of_license VARCHAR)
### question: What are the transfers in for Hungary? ### answer: SELECT transfers_in FROM table_name_36 WHERE country = "hungary" ### context: CREATE TABLE table_name_36 (transfers_in VARCHAR, country VARCHAR)
### question: What are the Transfers out for Peru? ### answer: SELECT transfers_out FROM table_name_76 WHERE country = "peru" ### context: CREATE TABLE table_name_76 (transfers_out VARCHAR, country VARCHAR)
### question: WHAT POINTS 1 HAD A 22 LOST? ### answer: SELECT points_1 FROM table_name_88 WHERE lost = 22 ### context: CREATE TABLE table_name_88 (points_1 VARCHAR, lost VARCHAR)
### question: WHAT GOALS AGAINST HAD A GOAL FOR OF 46, AND PLAYED LESS THAN 38? ### answer: SELECT SUM(goals_against) FROM table_name_85 WHERE goals_for = 46 AND played < 38 ### context: CREATE TABLE table_name_85 (goals_against INTEGER, goals_for VARCHAR, played VARCHAR)
### question: WHAT IS THE POSITION WITH A LOST OF 6, FOR CAERNARFON TOWN? ### answer: SELECT SUM(position) FROM table_name_29 WHERE lost = 6 AND team = "caernarfon town" ### context: CREATE TABLE table_name_29 (position INTEGER, lost VARCHAR, team VARCHAR)
### question: WHAT IS THE SUM PLAYED WITH POINTS 1 OF 53, AND POSITION LARGER THAN 3? ### answer: SELECT SUM(played) FROM table_name_81 WHERE points_1 = "53" AND position > 3 ### context: CREATE TABLE table_name_81 (played INTEGER, points_1 VARCHAR, position VARCHAR)
### question: WHAT IS THE LOST WITH A DRAWN 11, FOR LEEK TOWN? ### answer: SELECT MAX(lost) FROM table_name_15 WHERE drawn = 11 AND team = "leek town" ### context: CREATE TABLE table_name_15 (lost INTEGER, drawn VARCHAR, team VARCHAR)
### question: Which player has a subtotal of more than 3 and more than 8 in round 1? ### answer: SELECT player FROM table_name_59 WHERE subtotal > 3 AND round_1 > 8 ### context: CREATE TABLE table_name_59 (player VARCHAR, subtotal VARCHAR, round_1 VARCHAR)
### question: What is the ranking for the United States when the money is $200? ### answer: SELECT place FROM table_name_52 WHERE country = "united states" AND money___$__ = "200" ### context: CREATE TABLE table_name_52 (place VARCHAR, country VARCHAR, money___$__ VARCHAR)
### question: What is the ranking when Archie Compston is the player and the money is $73? ### answer: SELECT place FROM table_name_6 WHERE money___$__ = "73" AND player = "archie compston" ### context: CREATE TABLE table_name_6 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
### question: Which country has a to par less than 19 and a score of 75-79-77-73=304? ### answer: SELECT country FROM table_name_92 WHERE to_par < 19 AND score = 75 - 79 - 77 - 73 = 304 ### context: CREATE TABLE table_name_92 (country VARCHAR, to_par VARCHAR, score VARCHAR)
### question: What is the score for the United States when Harry Hampton is the player and the money is $73? ### answer: SELECT score FROM table_name_23 WHERE country = "united states" AND money___$__ = "73" AND player = "harry hampton" ### context: CREATE TABLE table_name_23 (score VARCHAR, player VARCHAR, country VAR...
### question: What is the greatest 2010 for Miami, Fl? ### answer: SELECT MAX(2010) FROM table_name_94 WHERE state = "fl" AND major_city_served = "miami" ### context: CREATE TABLE table_name_94 (state VARCHAR, major_city_served VARCHAR)
### question: What is the North American release date of the remake with a European release date on 2013-03-20? ### answer: SELECT north_american_release_date FROM table_name_25 WHERE european_release_date = "2013-03-20" ### context: CREATE TABLE table_name_25 (north_american_release_date VARCHAR, european_release_date...
### question: What is the series with a North American release date on 2013-09-03? ### answer: SELECT series FROM table_name_12 WHERE north_american_release_date = "2013-09-03" ### context: CREATE TABLE table_name_12 (series VARCHAR, north_american_release_date VARCHAR)
### question: What is the US cash box before 1978 with a US billboard of 35? ### answer: SELECT us_cash_box FROM table_name_20 WHERE year < 1978 AND us_billboard = 35 ### context: CREATE TABLE table_name_20 (us_cash_box VARCHAR, year VARCHAR, us_billboard VARCHAR)
### question: What is the country of the player with a t6 place? ### answer: SELECT country FROM table_name_33 WHERE place = "t6" ### context: CREATE TABLE table_name_33 (country VARCHAR, place VARCHAR)
### question: What is the place of the player with a 72-71-65=208 score? ### answer: SELECT place FROM table_name_33 WHERE score = 72 - 71 - 65 = 208 ### context: CREATE TABLE table_name_33 (place VARCHAR, score VARCHAR)
### question: What country is player thomas bjørn from? ### answer: SELECT country FROM table_name_96 WHERE player = "thomas bjørn" ### context: CREATE TABLE table_name_96 (country VARCHAR, player VARCHAR)
### question: What is the place of the player with a 66-68-70=204 score? ### answer: SELECT place FROM table_name_86 WHERE score = 66 - 68 - 70 = 204 ### context: CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR)
### question: What is the number of wins when the goals against is larger than 41, points is 29, and draws are larger than 5? ### answer: SELECT COUNT(wins) FROM table_name_53 WHERE goals_against > 41 AND points = 29 AND draws > 5 ### context: CREATE TABLE table_name_53 (wins VARCHAR, draws VARCHAR, goals_against VARCH...
### question: What is the number of draws when played is smaller than 30? ### answer: SELECT COUNT(draws) FROM table_name_74 WHERE played < 30 ### context: CREATE TABLE table_name_74 (draws VARCHAR, played INTEGER)
### question: What is the number of losses when the goal difference was -8, and position is smaller than 10? ### answer: SELECT COUNT(losses) FROM table_name_37 WHERE goal_difference = -8 AND position < 10 ### context: CREATE TABLE table_name_37 (losses VARCHAR, goal_difference VARCHAR, position VARCHAR)
### question: What is the wins number when the points were smaller than 27, and goals against was 41? ### answer: SELECT SUM(wins) FROM table_name_76 WHERE points < 27 AND goals_against = 41 ### context: CREATE TABLE table_name_76 (wins INTEGER, points VARCHAR, goals_against VARCHAR)
### question: What is the losses when the goal difference is larger than 26? ### answer: SELECT MAX(losses) FROM table_name_45 WHERE goal_difference > 26 ### context: CREATE TABLE table_name_45 (losses INTEGER, goal_difference INTEGER)
### question: What is the goals for when played is larger than 30? ### answer: SELECT MIN(goals_for) FROM table_name_72 WHERE played > 30 ### context: CREATE TABLE table_name_72 (goals_for INTEGER, played INTEGER)
### question: What is the score on 2 October 2011? ### answer: SELECT score FROM table_name_72 WHERE date = "2 october 2011" ### context: CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)
### question: What is the surface of the tournament with a runner-up outcome and dudi sela as the opponent? ### answer: SELECT surface FROM table_name_59 WHERE outcome = "runner-up" AND opponent = "dudi sela" ### context: CREATE TABLE table_name_59 (surface VARCHAR, outcome VARCHAR, opponent VARCHAR)
### question: Who was the shooter for the WC Beijing event? ### answer: SELECT shooter FROM table_name_75 WHERE event = "wc beijing" ### context: CREATE TABLE table_name_75 (shooter VARCHAR, event VARCHAR)
### question: With Olympic Bronze Medalist as the total what are the score points? ### answer: SELECT score_points FROM table_name_65 WHERE total = "olympic bronze medalist" ### context: CREATE TABLE table_name_65 (score_points VARCHAR, total VARCHAR)
### question: With a total of 11, and 10 rank points, what are the score points? ### answer: SELECT score_points FROM table_name_25 WHERE rank_points = "10" AND total = "11" ### context: CREATE TABLE table_name_25 (score_points VARCHAR, rank_points VARCHAR, total VARCHAR)
### question: Who is the shooter with 15 rank points, and 0 score points? ### answer: SELECT shooter FROM table_name_56 WHERE rank_points = "15" AND score_points = "0" ### context: CREATE TABLE table_name_56 (shooter VARCHAR, rank_points VARCHAR, score_points VARCHAR)
### question: With a total of 11, what is the score points? ### answer: SELECT score_points FROM table_name_32 WHERE total = "11" ### context: CREATE TABLE table_name_32 (score_points VARCHAR, total VARCHAR)
### question: Which Losses have a South West DFL of branxholme-wallacedale, and less than 2 Byes? ### answer: SELECT AVG(losses) FROM table_name_21 WHERE south_west_dfl = "branxholme-wallacedale" AND byes < 2 ### context: CREATE TABLE table_name_21 (losses INTEGER, south_west_dfl VARCHAR, byes VARCHAR)
### question: Which draws have an average of 14 wins? ### answer: SELECT AVG(draws) FROM table_name_89 WHERE wins = 14 ### context: CREATE TABLE table_name_89 (draws INTEGER, wins VARCHAR)
### question: How many wins have 16 losses and an Against smaller than 3213? ### answer: SELECT SUM(wins) FROM table_name_82 WHERE losses = 16 AND against < 3213 ### context: CREATE TABLE table_name_82 (wins INTEGER, losses VARCHAR, against VARCHAR)
### question: How many Draws have a South West DFL of tyrendarra, and less than 10 wins? ### answer: SELECT SUM(draws) FROM table_name_83 WHERE south_west_dfl = "tyrendarra" AND wins < 10 ### context: CREATE TABLE table_name_83 (draws INTEGER, south_west_dfl VARCHAR, wins VARCHAR)
### question: What Circuit has a Winning constructor of bugatti, and a Winning driver of edward bret? ### answer: SELECT circuit FROM table_name_20 WHERE winning_constructor = "bugatti" AND winning_driver = "edward bret" ### context: CREATE TABLE table_name_20 (circuit VARCHAR, winning_constructor VARCHAR, winning_driv...
### question: What Circuit has a Date of 25 july? ### answer: SELECT circuit FROM table_name_55 WHERE date = "25 july" ### context: CREATE TABLE table_name_55 (circuit VARCHAR, date VARCHAR)
### question: What Date has a Name of thuin circuit? ### answer: SELECT date FROM table_name_26 WHERE name = "thuin circuit" ### context: CREATE TABLE table_name_26 (date VARCHAR, name VARCHAR)
### question: What Name has a Winning constructor of bugatti, and a Winning driver of louis chiron? ### answer: SELECT name FROM table_name_78 WHERE winning_constructor = "bugatti" AND winning_driver = "louis chiron" ### context: CREATE TABLE table_name_78 (name VARCHAR, winning_constructor VARCHAR, winning_driver VARC...
### question: What Winning driver has a Name of mugello circuit? ### answer: SELECT winning_driver FROM table_name_55 WHERE name = "mugello circuit" ### context: CREATE TABLE table_name_55 (winning_driver VARCHAR, name VARCHAR)
### question: What Winning driver has a Winning constructor of talbot? ### answer: SELECT winning_driver FROM table_name_59 WHERE winning_constructor = "talbot" ### context: CREATE TABLE table_name_59 (winning_driver VARCHAR, winning_constructor VARCHAR)
### question: What is the away team of the match with a 356 attendance? ### answer: SELECT away_team FROM table_name_64 WHERE attendance = 356 ### context: CREATE TABLE table_name_64 (away_team VARCHAR, attendance VARCHAR)
### question: Which player won in 1993? ### answer: SELECT player FROM table_name_21 WHERE year_s__won = "1993" ### context: CREATE TABLE table_name_21 (player VARCHAR, year_s__won VARCHAR)
### question: How many to pars were won in 1993? ### answer: SELECT COUNT(to_par) FROM table_name_86 WHERE year_s__won = "1993" ### context: CREATE TABLE table_name_86 (to_par VARCHAR, year_s__won VARCHAR)
### question: What is Zimbabwe's total with a to par higher than 5? ### answer: SELECT AVG(total) FROM table_name_34 WHERE country = "zimbabwe" AND to_par > 5 ### context: CREATE TABLE table_name_34 (total INTEGER, country VARCHAR, to_par VARCHAR)
### question: What is the total for 1986 with a to par higher than 6? ### answer: SELECT COUNT(total) FROM table_name_87 WHERE year_s__won = "1986" AND to_par > 6 ### context: CREATE TABLE table_name_87 (total VARCHAR, year_s__won VARCHAR, to_par VARCHAR)
### question: What is the total for 1984 for the team with 100 points total and more than 3 seasons? ### answer: SELECT SUM(1984) FROM table_name_11 WHERE total_points = 100 AND seasons > 3 ### context: CREATE TABLE table_name_11 (total_points VARCHAR, seasons VARCHAR)
### question: What is the points total for the team with points average more than 34, 1984 score more than 37 and N/A in 1982? ### answer: SELECT COUNT(total_points) FROM table_name_99 WHERE 1982 = "n/a" AND points_average > 34 AND 1984 > 37 ### context: CREATE TABLE table_name_99 (total_points VARCHAR, points_average ...
### question: What team had 3 seasons and fewer than 27 in 1984? ### answer: SELECT team FROM table_name_71 WHERE seasons = 3 AND 1984 < 27 ### context: CREATE TABLE table_name_71 (team VARCHAR, seasons VARCHAR)
### question: What is the number of seasons for the team with a total fewer than 24? ### answer: SELECT SUM(seasons) FROM table_name_45 WHERE total_points < 24 ### context: CREATE TABLE table_name_45 (seasons INTEGER, total_points INTEGER)
### question: What is the weight of the player from club panionios g.c. and was born on 1975-05-21? ### answer: SELECT weight FROM table_name_70 WHERE club = "panionios g.c." AND date_of_birth = "1975-05-21" ### context: CREATE TABLE table_name_70 (weight VARCHAR, club VARCHAR, date_of_birth VARCHAR)
### question: How much Height of ground station(m) has a Name of lutersee, and a Height of mountain station(m) larger than 2398? ### answer: SELECT COUNT(height_of_ground_station_m_) FROM table_name_35 WHERE name = "lutersee" AND height_of_mountain_station_m_ > 2398 ### context: CREATE TABLE table_name_35 (height_of_gr...
### question: Which elevation groundstation has a capacity in persons/hour larger than 820, and a Name or route of lager 1, and a slope length smaller than 336? ### answer: SELECT AVG(elevation_groundstation) FROM table_name_68 WHERE capacity_in_persons_hour > 820 AND name_or_route = "lager 1" AND slope_length < 336 ##...
### question: Which slope length has a type of surface lift, and an elevation groundstation smaller than 1974, and a construction year(s) of 1971, and a Name or route of alpmatten 1? ### answer: SELECT slope_length FROM table_name_43 WHERE type = "surface lift" AND elevation_groundstation < 1974 AND construction_year_s...
### question: What is the lowest pick that has arizona cardinals as the NFL club? ### answer: SELECT MIN(pick) FROM table_name_43 WHERE nfl_club = "arizona cardinals" ### context: CREATE TABLE table_name_43 (pick INTEGER, nfl_club VARCHAR)
### question: What round has a pick less than 189, with arizona cardinals as the NFL club? ### answer: SELECT round FROM table_name_4 WHERE pick < 189 AND nfl_club = "arizona cardinals" ### context: CREATE TABLE table_name_4 (round VARCHAR, pick VARCHAR, nfl_club VARCHAR)
### question: What player has defensive back as the position, with a round less than 2? ### answer: SELECT player FROM table_name_19 WHERE position = "defensive back" AND round < 2 ### context: CREATE TABLE table_name_19 (player VARCHAR, position VARCHAR, round VARCHAR)
### question: What lowest round has orlando pace as the player? ### answer: SELECT MIN(round) FROM table_name_3 WHERE player = "orlando pace" ### context: CREATE TABLE table_name_3 (round INTEGER, player VARCHAR)
### question: What was the location when the opponent was Seattle Supersonics? ### answer: SELECT location_attendance FROM table_name_6 WHERE opponent = "seattle supersonics" ### context: CREATE TABLE table_name_6 (location_attendance VARCHAR, opponent VARCHAR)
### question: What was the record for less than 78 games and a score of 114–109 (ot)? ### answer: SELECT record FROM table_name_69 WHERE game < 78 AND score = "114–109 (ot)" ### context: CREATE TABLE table_name_69 (record VARCHAR, game VARCHAR, score VARCHAR)
### question: Who was the opponent for game 75? ### answer: SELECT opponent FROM table_name_96 WHERE game = 75 ### context: CREATE TABLE table_name_96 (opponent VARCHAR, game VARCHAR)
### question: Which Wrestler plays for Team Batista which was Elimated by Orton on Elimination 8? ### answer: SELECT wrestler FROM table_name_3 WHERE team = "team batista" AND eliminated_by = "orton" AND elimination = "8" ### context: CREATE TABLE table_name_3 (wrestler VARCHAR, elimination VARCHAR, team VARCHAR, elimi...
### question: What time was the Wrestler Henry eliminated by Batista? ### answer: SELECT time FROM table_name_12 WHERE eliminated_by = "batista" AND wrestler = "henry" ### context: CREATE TABLE table_name_12 (time VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)
### question: Which Elimination Move is listed at Elimination 8 for Team Batista? ### answer: SELECT elimination AS Move FROM table_name_90 WHERE team = "team batista" AND elimination = "8" ### context: CREATE TABLE table_name_90 (elimination VARCHAR, team VARCHAR)
### question: Which Elimination move is listed against Team Orton, Eliminated by Batista against Elimination number 7? ### answer: SELECT elimination AS Move FROM table_name_25 WHERE team = "team orton" AND eliminated_by = "batista" AND elimination = "7" ### context: CREATE TABLE table_name_25 (elimination VARCHAR, tea...
### question: What Elimination Move is listed against Wrestler Henry, Eliminated by Batista? ### answer: SELECT elimination AS Move FROM table_name_35 WHERE eliminated_by = "batista" AND wrestler = "henry" ### context: CREATE TABLE table_name_35 (elimination VARCHAR, eliminated_by VARCHAR, wrestler VARCHAR)
### question: What is the Elimination move listed against Regal? ### answer: SELECT elimination AS Move FROM table_name_28 WHERE wrestler = "regal" ### context: CREATE TABLE table_name_28 (elimination VARCHAR, wrestler VARCHAR)
### question: Name the Total of jeff sluman? ### answer: SELECT AVG(total) FROM table_name_76 WHERE player = "jeff sluman" ### context: CREATE TABLE table_name_76 (total INTEGER, player VARCHAR)
### question: Name the Total of australia and a To par smaller than 7? ### answer: SELECT MIN(total) FROM table_name_48 WHERE country = "australia" AND to_par < 7 ### context: CREATE TABLE table_name_48 (total INTEGER, country VARCHAR, to_par VARCHAR)
### question: Name the To par that has a Year(s) won of 1988 and a Total smaller than 148? ### answer: SELECT MAX(to_par) FROM table_name_31 WHERE year_s__won = "1988" AND total < 148 ### context: CREATE TABLE table_name_31 (to_par INTEGER, year_s__won VARCHAR, total VARCHAR)
### question: Which Number has a Home Club of broomstones, and a Year End smaller than 1999? ### answer: SELECT MIN(number) FROM table_name_79 WHERE home_club = "broomstones" AND year_end < 1999 ### context: CREATE TABLE table_name_79 (number INTEGER, home_club VARCHAR, year_end VARCHAR)
### question: Which Year Start has a Number of 28? ### answer: SELECT MAX(year_start) FROM table_name_41 WHERE number = 28 ### context: CREATE TABLE table_name_41 (year_start INTEGER, number VARCHAR)
### question: Which Number has a Name of hill, lucius t.? ### answer: SELECT MAX(number) FROM table_name_41 WHERE name = "hill, lucius t." ### context: CREATE TABLE table_name_41 (number INTEGER, name VARCHAR)
### question: Which Number has a Year Start smaller than 1874, and a Year End larger than 1873? ### answer: SELECT MAX(number) FROM table_name_13 WHERE year_start < 1874 AND year_end > 1873 ### context: CREATE TABLE table_name_13 (number INTEGER, year_start VARCHAR, year_end VARCHAR)
### question: Which Number has a Name of cooper, c. kenneth, and a Year End larger than 1984? ### answer: SELECT AVG(number) FROM table_name_90 WHERE name = "cooper, c. kenneth" AND year_end > 1984 ### context: CREATE TABLE table_name_90 (number INTEGER, name VARCHAR, year_end VARCHAR)
### question: What is Venue, when Status is "Test Match", and when Against is "12"? ### answer: SELECT venue FROM table_name_16 WHERE status = "test match" AND against = 12 ### context: CREATE TABLE table_name_16 (venue VARCHAR, status VARCHAR, against VARCHAR)
### question: What is Opposing Teams, when Date is "11/10/1991"? ### answer: SELECT opposing_teams FROM table_name_81 WHERE date = "11/10/1991" ### context: CREATE TABLE table_name_81 (opposing_teams VARCHAR, date VARCHAR)
### question: What is Date, when Opposing Teams is "Australia", and when Venue is "Twickenham , London"? ### answer: SELECT date FROM table_name_79 WHERE opposing_teams = "australia" AND venue = "twickenham , london" ### context: CREATE TABLE table_name_79 (date VARCHAR, opposing_teams VARCHAR, venue VARCHAR)
### question: What is Against, when Opposing Teams is "Australia", and when Date is "27/07/1991"? ### answer: SELECT against FROM table_name_12 WHERE opposing_teams = "australia" AND date = "27/07/1991" ### context: CREATE TABLE table_name_12 (against VARCHAR, opposing_teams VARCHAR, date VARCHAR)
### question: What is the tie no of the game where exeter city was the home team? ### answer: SELECT tie_no FROM table_name_36 WHERE home_team = "exeter city" ### context: CREATE TABLE table_name_36 (tie_no VARCHAR, home_team VARCHAR)
### question: What is the score of the game against away team exeter city on 10 jan 1990? ### answer: SELECT score FROM table_name_70 WHERE date = "10 jan 1990" AND away_team = "exeter city" ### context: CREATE TABLE table_name_70 (score VARCHAR, date VARCHAR, away_team VARCHAR)
### question: What date did home team liverpool play? ### answer: SELECT date FROM table_name_70 WHERE home_team = "liverpool" ### context: CREATE TABLE table_name_70 (date VARCHAR, home_team VARCHAR)
### question: What was the score of the game against away team crewe alexandra? ### answer: SELECT score FROM table_name_3 WHERE away_team = "crewe alexandra" ### context: CREATE TABLE table_name_3 (score VARCHAR, away_team VARCHAR)
### question: What are the results of the incumbent who was first elected in 1996? ### answer: SELECT results FROM table_name_79 WHERE first_elected = 1996 ### context: CREATE TABLE table_name_79 (results VARCHAR, first_elected VARCHAR)
### question: What are the results of the incumbent who was first elected in 1996? ### answer: SELECT results FROM table_name_4 WHERE first_elected = 1996 ### context: CREATE TABLE table_name_4 (results VARCHAR, first_elected VARCHAR)