Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
25,600
<question>: Who is the incumbent who was first elected before 2002 from the maryland 3 district? <context>: CREATE TABLE table_name_41 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_41 WHERE first_elected < 2002 AND district = "maryland 3"
25,601
<question>: What is the party of the maryland 6 district? <context>: CREATE TABLE table_name_73 (party VARCHAR, district VARCHAR)
SELECT party FROM table_name_73 WHERE district = "maryland 6"
25,602
<question>: WHAT IS THE SILVER WITH A YEAR OF 1962? <context>: CREATE TABLE table_name_35 (silver VARCHAR, year VARCHAR)
SELECT silver FROM table_name_35 WHERE year = 1962
25,603
<question>: WHAT YEAR HAS A BRONZE OF VALENTIN NOVIKOV? <context>: CREATE TABLE table_name_88 (year INTEGER, bronze VARCHAR)
SELECT AVG(year) FROM table_name_88 WHERE bronze = "valentin novikov"
25,604
<question>: WHAT YEAR HAS A SILVER FOR MATTHIAS MERZ? <context>: CREATE TABLE table_name_54 (year INTEGER, silver VARCHAR)
SELECT MIN(year) FROM table_name_54 WHERE silver = "matthias merz"
25,605
<question>: WHAT IS THE YEAR WITH A BRONZE OF AIMO TEPSELL? <context>: CREATE TABLE table_name_20 (year INTEGER, bronze VARCHAR)
SELECT MIN(year) FROM table_name_20 WHERE bronze = "aimo tepsell"
25,606
<question>: What is To par, when Player is "Greg Turner"? <context>: CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_72 WHERE player = "greg turner"
25,607
<question>: What is Score, when Country is "United States", and when Player is "Mark Brooks"? <context>: CREATE TABLE table_name_34 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT score FROM table_name_34 WHERE country = "united states" AND player = "mark brooks"
25,608
<question>: What is the highest Money ( £ ), when Player is "Peter Hedblom"? <context>: CREATE TABLE table_name_95 (money___ INTEGER, player VARCHAR)
SELECT MAX(money___) AS £__ FROM table_name_95 WHERE player = "peter hedblom"
25,609
<question>: What is the total number of losses for a draw of 7, and 1 points less than 33? <context>: CREATE TABLE table_name_21 (lost VARCHAR, drawn VARCHAR, points_1 VARCHAR)
SELECT COUNT(lost) FROM table_name_21 WHERE drawn = 7 AND points_1 < 33
25,610
<question>: What is the total number drawn with goals against less than 55, and a total of 14 losses? <context>: CREATE TABLE table_name_75 (drawn VARCHAR, goals_against VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_75 WHERE goals_against < 55 AND lost = 14
25,611
<question>: What is the total number of goals that has been played less than 38 times? <context>: CREATE TABLE table_name_25 (goals_for VARCHAR, played INTEGER)
SELECT COUNT(goals_for) FROM table_name_25 WHERE played < 38
25,612
<question>: What is the Diameter of the Dog Sled (gold variant) Theme coin? <context>: CREATE TABLE table_name_74 (diameter VARCHAR, theme VARCHAR)
SELECT diameter FROM table_name_74 WHERE theme = "dog sled (gold variant)"
25,613
<question>: What is the MIntage after 2006 of the Ruby-Throated Hummingbird Theme coin? <context>: CREATE TABLE table_name_42 (mintage INTEGER, year VARCHAR, theme VARCHAR)
SELECT MAX(mintage) FROM table_name_42 WHERE year > 2006 AND theme = "ruby-throated hummingbird"
25,614
<question>: What is the Mintage of the 12.61 g Weight Ruby-Throated Hummingbird? <context>: CREATE TABLE table_name_88 (mintage VARCHAR, weight VARCHAR, theme VARCHAR)
SELECT COUNT(mintage) FROM table_name_88 WHERE weight = "12.61 g" AND theme = "ruby-throated hummingbird"
25,615
<question>: What is the Year of the Coin with an Issue Price of $1089.95 and Mintage less than 900? <context>: CREATE TABLE table_name_15 (year INTEGER, issue_price VARCHAR, mintage VARCHAR)
SELECT SUM(year) FROM table_name_15 WHERE issue_price = "$1089.95" AND mintage < 900
25,616
<question>: What is the Theme of the coin with an Issue Price of $89.95? <context>: CREATE TABLE table_name_95 (theme VARCHAR, issue_price VARCHAR)
SELECT theme FROM table_name_95 WHERE issue_price = "$89.95"
25,617
<question>: What was the winning team on 11 July? <context>: CREATE TABLE table_name_58 (winning_team VARCHAR, date VARCHAR)
SELECT winning_team FROM table_name_58 WHERE date = "11 july"
25,618
<question>: Who is the winning driver of the race on 2 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? <context>: CREATE TABLE table_name_15 (winning_driver VARCHAR, winning_team VARCHAR, date VARCHAR)
SELECT winning_driver FROM table_name_15 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND date = "2 june"
25,619
<question>: Who is the winning driver of the race on 5 May? <context>: CREATE TABLE table_name_90 (winning_driver VARCHAR, date VARCHAR)
SELECT winning_driver FROM table_name_90 WHERE date = "5 may"
25,620
<question>: What is the round on 30 June with a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? <context>: CREATE TABLE table_name_7 (round VARCHAR, winning_team VARCHAR, date VARCHAR)
SELECT round FROM table_name_7 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND date = "30 june"
25,621
<question>: What is the date of the zolder circuit, which had a.z.k./roc-compétition a.z.k./roc-compétition as the winning team? <context>: CREATE TABLE table_name_53 (date VARCHAR, winning_team VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_53 WHERE winning_team = "a.z.k./roc-compétition a.z.k./roc-compétition" AND circuit = "zolder"
25,622
<question>: What place did Bob May get when his score was 72-66=138? <context>: CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR, score VARCHAR)
SELECT place FROM table_name_84 WHERE score = 72 - 66 = 138 AND player = "bob may"
25,623
<question>: What country is Stephen Ames from with a place value of t9? <context>: CREATE TABLE table_name_20 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_20 WHERE place = "t9" AND player = "stephen ames"
25,624
<question>: What place had a To par of –10? <context>: CREATE TABLE table_name_28 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_28 WHERE to_par = "–10"
25,625
<question>: What country is Darren Clarke from? <context>: CREATE TABLE table_name_18 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_18 WHERE player = "darren clarke"
25,626
<question>: What is the To par value that goes with a Score of 70-69=139? <context>: CREATE TABLE table_name_78 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_78 WHERE score = 70 - 69 = 139
25,627
<question>: What is the sum of Goals, when Season is "2005-06", and when Division is less than 1? <context>: CREATE TABLE table_name_43 (goals INTEGER, season VARCHAR, division VARCHAR)
SELECT SUM(goals) FROM table_name_43 WHERE season = "2005-06" AND division < 1
25,628
<question>: What is Season, when Goals is less than 6, and when Team is "Tarbiat Yazd"? <context>: CREATE TABLE table_name_42 (season VARCHAR, goals VARCHAR, team VARCHAR)
SELECT season FROM table_name_42 WHERE goals < 6 AND team = "tarbiat yazd"
25,629
<question>: What is the lowest Division, when Goals is less than 5, and when Season is "2002-03"? <context>: CREATE TABLE table_name_15 (division INTEGER, goals VARCHAR, season VARCHAR)
SELECT MIN(division) FROM table_name_15 WHERE goals < 5 AND season = "2002-03"
25,630
<question>: What is the average Goals, when Team is "Rah Ahan", and when Division is less than 1? <context>: CREATE TABLE table_name_81 (goals INTEGER, team VARCHAR, division VARCHAR)
SELECT AVG(goals) FROM table_name_81 WHERE team = "rah ahan" AND division < 1
25,631
<question>: What is the lowest capacity that has stadion mladina as the stadium? <context>: CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR)
SELECT MIN(capacity) FROM table_name_96 WHERE stadium = "stadion mladina"
25,632
<question>: What stadium has kutina as the city? <context>: CREATE TABLE table_name_13 (stadium VARCHAR, city VARCHAR)
SELECT stadium FROM table_name_13 WHERE city = "kutina"
25,633
<question>: What was the H/A on 29 july 1992? <context>: CREATE TABLE table_name_4 (h___a VARCHAR, date VARCHAR)
SELECT h___a FROM table_name_4 WHERE date = "29 july 1992"
25,634
<question>: Which Result F-A has Opponents of rosenborg? <context>: CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR)
SELECT result_f___a FROM table_name_8 WHERE opponents = "rosenborg"
25,635
<question>: What is the depth of the quake that occurred at 19:48? <context>: CREATE TABLE table_name_35 (depth VARCHAR, time__utc_ VARCHAR)
SELECT depth FROM table_name_35 WHERE time__utc_ = "19:48"
25,636
<question>: What is the magnitude with epicenter at Vrancea County, unknown intensity and which happened at 06:36? <context>: CREATE TABLE table_name_67 (magnitude VARCHAR, time__utc_ VARCHAR, epicenter VARCHAR, intensity VARCHAR)
SELECT magnitude FROM table_name_67 WHERE epicenter = "vrancea county" AND intensity = "unknown" AND time__utc_ = "06:36"
25,637
<question>: Where was the epicenter of the quake on December 1, 2012? <context>: CREATE TABLE table_name_54 (epicenter VARCHAR, date VARCHAR)
SELECT epicenter FROM table_name_54 WHERE date = "december 1, 2012"
25,638
<question>: What is Finish, when Year(s) Won is "1991"? <context>: CREATE TABLE table_name_6 (finish VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_6 WHERE year_s__won = "1991"
25,639
<question>: What is Year(s) Won, when Finish is "T31", and when Player is "Nick Price"? <context>: CREATE TABLE table_name_65 (year_s__won VARCHAR, finish VARCHAR, player VARCHAR)
SELECT year_s__won FROM table_name_65 WHERE finish = "t31" AND player = "nick price"
25,640
<question>: What is Country, when Total is greater than 283, and when Year(s) Won is "1989"? <context>: CREATE TABLE table_name_90 (country VARCHAR, total VARCHAR, year_s__won VARCHAR)
SELECT country FROM table_name_90 WHERE total > 283 AND year_s__won = "1989"
25,641
<question>: born on 1983-03-14, what is the cb's name? <context>: CREATE TABLE table_name_28 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_name_28 WHERE pos = "cb" AND date_of_birth = "1983-03-14"
25,642
<question>: born on 1973-08-21, what is the cf's name? <context>: CREATE TABLE table_name_8 (name VARCHAR, pos VARCHAR, date_of_birth VARCHAR)
SELECT name FROM table_name_8 WHERE pos = "cf" AND date_of_birth = "1973-08-21"
25,643
<question>: What attendance has detroit lions as the opponent? <context>: CREATE TABLE table_name_14 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_14 WHERE opponent = "detroit lions"
25,644
<question>: What score has houston texans as the opponent? <context>: CREATE TABLE table_name_62 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_62 WHERE opponent = "houston texans"
25,645
<question>: What score has October 31 as the date? <context>: CREATE TABLE table_name_18 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_18 WHERE date = "october 31"
25,646
<question>: What record has w as the result, with January 2 as the date? <context>: CREATE TABLE table_name_7 (record VARCHAR, result VARCHAR, date VARCHAR)
SELECT record FROM table_name_7 WHERE result = "w" AND date = "january 2"
25,647
<question>: What is the position of the team player from Aik? <context>: CREATE TABLE table_name_69 (position VARCHAR, team_from VARCHAR)
SELECT position FROM table_name_69 WHERE team_from = "aik"
25,648
<question>: What is the average pick # from the Quebec Major Junior Hockey League player Samuel Carrier? <context>: CREATE TABLE table_name_11 (pick__number INTEGER, league_from VARCHAR, player VARCHAR)
SELECT AVG(pick__number) FROM table_name_11 WHERE league_from = "quebec major junior hockey league" AND player = "samuel carrier"
25,649
<question>: What is the total pick # for the D position from a team from Chilliwack Bruins? <context>: CREATE TABLE table_name_94 (pick__number INTEGER, position VARCHAR, team_from VARCHAR)
SELECT SUM(pick__number) FROM table_name_94 WHERE position = "d" AND team_from = "chilliwack bruins"
25,650
<question>: What is the league that has the pick #160? <context>: CREATE TABLE table_name_36 (league_from VARCHAR, pick__number VARCHAR)
SELECT league_from FROM table_name_36 WHERE pick__number = 160
25,651
<question>: What bowl game was played on Dec. 26, 2007? <context>: CREATE TABLE table_name_79 (bowl_game VARCHAR, date VARCHAR)
SELECT bowl_game FROM table_name_79 WHERE date = "dec. 26, 2007"
25,652
<question>: Who was the opposing team in the game with a score of 21-17? <context>: CREATE TABLE table_name_49 (opp_team VARCHAR, score VARCHAR)
SELECT opp_team FROM table_name_49 WHERE score = "21-17"
25,653
<question>: Who was Purdue's opponent? <context>: CREATE TABLE table_name_19 (opp_team VARCHAR, big_ten_team VARCHAR)
SELECT opp_team FROM table_name_19 WHERE big_ten_team = "purdue"
25,654
<question>: What was the score of the Insight Bowl? <context>: CREATE TABLE table_name_53 (score VARCHAR, bowl_game VARCHAR)
SELECT score FROM table_name_53 WHERE bowl_game = "insight bowl"
25,655
<question>: What was the score of the BCS National Championship game? <context>: CREATE TABLE table_name_66 (score VARCHAR, bowl_game VARCHAR)
SELECT score FROM table_name_66 WHERE bowl_game = "bcs national championship"
25,656
<question>: Which Democratic incumbent was first elected in 1998? <context>: CREATE TABLE table_name_18 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT incumbent FROM table_name_18 WHERE party = "democratic" AND first_elected = 1998
25,657
<question>: Which district has a Democratic incumbent that was first elected before 1996? <context>: CREATE TABLE table_name_62 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT district FROM table_name_62 WHERE party = "democratic" AND first_elected < 1996
25,658
<question>: Who is the incumbent for the Oregon 5 District that was elected in 1996? <context>: CREATE TABLE table_name_34 (incumbent VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_34 WHERE first_elected = 1996 AND district = "oregon 5"
25,659
<question>: What was the result of the Oregon 5 District incumbent who was first elected in 1996? <context>: CREATE TABLE table_name_18 (results VARCHAR, first_elected VARCHAR, district VARCHAR)
SELECT results FROM table_name_18 WHERE first_elected = 1996 AND district = "oregon 5"
25,660
<question>: What's was the location for fight against Liam Mccarty? <context>: CREATE TABLE table_name_46 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_name_46 WHERE opponent = "liam mccarty"
25,661
<question>: How many strokes off par was the winner in 1978? <context>: CREATE TABLE table_name_90 (to_par VARCHAR, year_s__won VARCHAR)
SELECT to_par FROM table_name_90 WHERE year_s__won = "1978"
25,662
<question>: What was the average round score of the player who won in 1978? <context>: CREATE TABLE table_name_72 (total INTEGER, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_72 WHERE year_s__won = "1978"
25,663
<question>: What is the money won by Frank Nobilo? <context>: CREATE TABLE table_name_46 (money___ VARCHAR, player VARCHAR)
SELECT COUNT(money___) AS £__ FROM table_name_46 WHERE player = "frank nobilo"
25,664
<question>: What is Lee Westwood's score? <context>: CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_20 WHERE player = "lee westwood"
25,665
<question>: How much money has been won by Stephen Ames? <context>: CREATE TABLE table_name_46 (money___£__ VARCHAR, player VARCHAR)
SELECT money___£__ FROM table_name_46 WHERE player = "stephen ames"
25,666
<question>: How much Drawn has Goals Against of 81, and a Lost larger than 23? <context>: CREATE TABLE table_name_95 (drawn VARCHAR, goals_against VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_95 WHERE goals_against = 81 AND lost > 23
25,667
<question>: Which Lost has a Position larger than 5, and Points 1 of 37, and less than 63 Goals Against? <context>: CREATE TABLE table_name_87 (lost INTEGER, goals_against VARCHAR, position VARCHAR, points_1 VARCHAR)
SELECT AVG(lost) FROM table_name_87 WHERE position > 5 AND points_1 = "37" AND goals_against < 63
25,668
<question>: How much Drawn has Goals Against larger than 74, and a Lost smaller than 20, and a Played larger than 38? <context>: CREATE TABLE table_name_43 (drawn VARCHAR, played VARCHAR, goals_against VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_43 WHERE goals_against > 74 AND lost < 20 AND played > 38
25,669
<question>: Which Position has Goals For of 52, and Goals Against larger than 70? <context>: CREATE TABLE table_name_51 (position INTEGER, goals_for VARCHAR, goals_against VARCHAR)
SELECT MAX(position) FROM table_name_51 WHERE goals_for = 52 AND goals_against > 70
25,670
<question>: Which Played has a Drawn of 4, and a Position of 9, and Goals Against larger than 59? <context>: CREATE TABLE table_name_70 (played INTEGER, goals_against VARCHAR, drawn VARCHAR, position VARCHAR)
SELECT AVG(played) FROM table_name_70 WHERE drawn = 4 AND position = 9 AND goals_against > 59
25,671
<question>: Who is the home team when the san francisco 49ers are visiting with a result of 42-14? <context>: CREATE TABLE table_name_92 (home_team VARCHAR, visiting_team VARCHAR, result VARCHAR)
SELECT home_team FROM table_name_92 WHERE visiting_team = "san francisco 49ers" AND result = "42-14"
25,672
<question>: When was the earliest year when the attendance was 77,254? <context>: CREATE TABLE table_name_41 (year INTEGER, attendance VARCHAR)
SELECT MIN(year) FROM table_name_41 WHERE attendance = 77 OFFSET 254
25,673
<question>: What was the total attendance for a result of 7-23 before 1960? <context>: CREATE TABLE table_name_19 (attendance INTEGER, result VARCHAR, year VARCHAR)
SELECT SUM(attendance) FROM table_name_19 WHERE result = "7-23" AND year < 1960
25,674
<question>: What is the location of the enzyme Uroporphyrinogen iii Synthase? <context>: CREATE TABLE table_name_24 (location VARCHAR, enzyme VARCHAR)
SELECT location FROM table_name_24 WHERE enzyme = "uroporphyrinogen iii synthase"
25,675
<question>: What is protoporphyrin ix's substrate? <context>: CREATE TABLE table_name_55 (substrate VARCHAR, product VARCHAR)
SELECT substrate FROM table_name_55 WHERE product = "protoporphyrin ix"
25,676
<question>: Which substrate has an OMIM of 176000? <context>: CREATE TABLE table_name_47 (substrate VARCHAR, omim VARCHAR)
SELECT substrate FROM table_name_47 WHERE omim = 176000
25,677
<question>: What was Anders Forsbrand's score when the TO par is +4? <context>: CREATE TABLE table_name_65 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT score FROM table_name_65 WHERE to_par = "+4" AND player = "anders forsbrand"
25,678
<question>: Which player scored 76-68=144? <context>: CREATE TABLE table_name_28 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_28 WHERE score = 76 - 68 = 144
25,679
<question>: What did United States place when the player was Raymond Floyd? <context>: CREATE TABLE table_name_84 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_84 WHERE country = "united states" AND player = "raymond floyd"
25,680
<question>: What country did Raymond Floyd play for? <context>: CREATE TABLE table_name_9 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_9 WHERE player = "raymond floyd"
25,681
<question>: What is Greg Norman's place? <context>: CREATE TABLE table_name_89 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_89 WHERE player = "greg norman"
25,682
<question>: What place did Paul McGinley finish in? <context>: CREATE TABLE table_name_46 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_46 WHERE player = "paul mcginley"
25,683
<question>: What is Tiger Woods' to par? <context>: CREATE TABLE table_name_26 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_26 WHERE player = "tiger woods"
25,684
<question>: What is the to par when the year(s) won is larger than 1999? <context>: CREATE TABLE table_name_53 (to_par VARCHAR, year_s__won INTEGER)
SELECT to_par FROM table_name_53 WHERE year_s__won > 1999
25,685
<question>: What are the apps for less than 61 goals and before rank 6? <context>: CREATE TABLE table_name_51 (apps INTEGER, rank VARCHAR, goals VARCHAR)
SELECT SUM(apps) FROM table_name_51 WHERE rank < 6 AND goals < 61
25,686
<question>: What season was Barcelona ranked higher than 12, had more than 96 goals and had more than 26 apps? <context>: CREATE TABLE table_name_59 (season VARCHAR, rank VARCHAR, goals VARCHAR, apps VARCHAR, club VARCHAR)
SELECT season FROM table_name_59 WHERE apps > 26 AND club = "barcelona" AND goals > 96 AND rank > 12
25,687
<question>: How many apps when the rank was after 13 and having more than 73 goals? <context>: CREATE TABLE table_name_96 (apps INTEGER, goals VARCHAR, rank VARCHAR)
SELECT AVG(apps) FROM table_name_96 WHERE goals > 73 AND rank > 13
25,688
<question>: Who was the club having less than 22 apps and ranked less than 2? <context>: CREATE TABLE table_name_72 (club VARCHAR, apps VARCHAR, rank VARCHAR)
SELECT club FROM table_name_72 WHERE apps < 22 AND rank < 2
25,689
<question>: With a score of 68-65=133 and United States as the country what is the To par? <context>: CREATE TABLE table_name_66 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_66 WHERE country = "united states" AND score = 68 - 65 = 133
25,690
<question>: Who is the golfer that golfs for Northern Ireland? <context>: CREATE TABLE table_name_54 (player VARCHAR, country VARCHAR)
SELECT player FROM table_name_54 WHERE country = "northern ireland"
25,691
<question>: The golfer in place 1 if from what country? <context>: CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR)
SELECT country FROM table_name_13 WHERE place = "1"
25,692
<question>: On what date was Tie #26 played? <context>: CREATE TABLE table_name_90 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_90 WHERE tie_no = "26"
25,693
<question>: On what date was Tie #13 played? <context>: CREATE TABLE table_name_93 (date VARCHAR, tie_no VARCHAR)
SELECT date FROM table_name_93 WHERE tie_no = "13"
25,694
<question>: For which tie was Scunthorpe United the away team? <context>: CREATE TABLE table_name_5 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_5 WHERE away_team = "scunthorpe united"
25,695
<question>: What was the final score for the tie where Leeds United was the home team? <context>: CREATE TABLE table_name_6 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_6 WHERE home_team = "leeds united"
25,696
<question>: In the tie where Southampton was the away team, who was the home team? <context>: CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_97 WHERE away_team = "southampton"
25,697
<question>: What is the name of the away team for Tie #19? <context>: CREATE TABLE table_name_61 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_61 WHERE tie_no = "19"
25,698
<question>: Which Nominated Work won in 2000? <context>: CREATE TABLE table_name_15 (nominated_work VARCHAR, year VARCHAR, results VARCHAR)
SELECT nominated_work FROM table_name_15 WHERE year = 2000 AND results = "won"
25,699
<question>: What was the result in 2000? <context>: CREATE TABLE table_name_23 (results VARCHAR, year VARCHAR)
SELECT results FROM table_name_23 WHERE year = 2000