Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
25,100
<question>: Which Played has Draws smaller than 7, and Goals for smaller than 61, and Goals against smaller than 48, and a Position of 5? <context>: CREATE TABLE table_name_29 (played INTEGER, position VARCHAR, goals_against VARCHAR, draws VARCHAR, goals_for VARCHAR)
SELECT MAX(played) FROM table_name_29 WHERE draws < 7 AND goals_for < 61 AND goals_against < 48 AND position = 5
25,101
<question>: How many Goals against have Played more than 34? <context>: CREATE TABLE table_name_97 (goals_against VARCHAR, played INTEGER)
SELECT COUNT(goals_against) FROM table_name_97 WHERE played > 34
25,102
<question>: Which Losses have a Goal Difference of -16, and less than 8 wins? <context>: CREATE TABLE table_name_83 (losses INTEGER, goal_difference VARCHAR, wins VARCHAR)
SELECT MIN(losses) FROM table_name_83 WHERE goal_difference = -16 AND wins < 8
25,103
<question>: Which Wins have a Goal Difference larger than 0, and Goals against larger than 40, and a Position smaller than 6, and a Club of sd indauchu? <context>: CREATE TABLE table_name_33 (wins INTEGER, club VARCHAR, position VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)
SELECT MIN(wins) FROM table_name_33 WHERE goal_difference > 0 AND goals_against > 40 AND position < 6 AND club = "sd indauchu"
25,104
<question>: What place did player mark brooks take? <context>: CREATE TABLE table_name_84 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_84 WHERE player = "mark brooks"
25,105
<question>: What was the To par of the golfer that placed t5? <context>: CREATE TABLE table_name_66 (to_par VARCHAR, place VARCHAR)
SELECT to_par FROM table_name_66 WHERE place = "t5"
25,106
<question>: Which player had a score of 70? <context>: CREATE TABLE table_name_96 (player VARCHAR, score VARCHAR)
SELECT player FROM table_name_96 WHERE score = 70
25,107
<question>: What was the highest score of t5 place finisher brandt jobe? <context>: CREATE TABLE table_name_51 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT MAX(score) FROM table_name_51 WHERE place = "t5" AND player = "brandt jobe"
25,108
<question>: Which event had a total of defending champion? <context>: CREATE TABLE table_name_39 (event VARCHAR, total VARCHAR)
SELECT event FROM table_name_39 WHERE total = "defending champion"
25,109
<question>: How many weeks was there an attendance of 74,347? <context>: CREATE TABLE table_name_63 (week INTEGER, attendance VARCHAR)
SELECT SUM(week) FROM table_name_63 WHERE attendance = "74,347"
25,110
<question>: What is the latest week with an attendance of 74,162? <context>: CREATE TABLE table_name_72 (week INTEGER, attendance VARCHAR)
SELECT MAX(week) FROM table_name_72 WHERE attendance = "74,162"
25,111
<question>: Who is the opponent when the attendance is 57,331? <context>: CREATE TABLE table_name_41 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_41 WHERE attendance = "57,331"
25,112
<question>: What day was the attendance 74,285? <context>: CREATE TABLE table_name_98 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_98 WHERE attendance = "74,285"
25,113
<question>: What was the result for week 16? <context>: CREATE TABLE table_name_36 (result VARCHAR, week VARCHAR)
SELECT result FROM table_name_36 WHERE week = 16
25,114
<question>: Who are the Opponents in the final prior to 1998 in the Bucharest, Romania Tournament? <context>: CREATE TABLE table_name_65 (opponents_in_the_final VARCHAR, date VARCHAR, tournament VARCHAR)
SELECT opponents_in_the_final FROM table_name_65 WHERE date < 1998 AND tournament = "bucharest, romania"
25,115
<question>: Which parish has an area of 750.51? <context>: CREATE TABLE table_name_46 (official_name VARCHAR, area_km_2 VARCHAR)
SELECT official_name FROM table_name_46 WHERE area_km_2 = 750.51
25,116
<question>: What is the area of the parish with a population larger than 1,172 and a census ranking of 1,871 of 5,008? <context>: CREATE TABLE table_name_16 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR)
SELECT COUNT(area_km_2) FROM table_name_16 WHERE census_ranking = "1,871 of 5,008" AND population > 1 OFFSET 172
25,117
<question>: When the position is less than 7, what is the appeared on album? <context>: CREATE TABLE table_name_90 (appeared_on_album VARCHAR, position INTEGER)
SELECT appeared_on_album FROM table_name_90 WHERE position < 7
25,118
<question>: After 1996, what is the average position? <context>: CREATE TABLE table_name_96 (position INTEGER, year INTEGER)
SELECT AVG(position) FROM table_name_96 WHERE year > 1996
25,119
<question>: Which To par has a Place of t4, and wayne grady is in? <context>: CREATE TABLE table_name_87 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_87 WHERE place = "t4" AND player = "wayne grady"
25,120
<question>: Name the Place of england with a Score larger than 66? <context>: CREATE TABLE table_name_3 (place VARCHAR, country VARCHAR, score VARCHAR)
SELECT place FROM table_name_3 WHERE country = "england" AND score > 66
25,121
<question>: Name the Score united states of tom watson in united state? <context>: CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT score FROM table_name_40 WHERE country = "united states" AND player = "tom watson"
25,122
<question>: Who has a To par of –2, and a Country of united states? <context>: CREATE TABLE table_name_98 (player VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT player FROM table_name_98 WHERE to_par = "–2" AND country = "united states"
25,123
<question>: What is the time of Max Biaggi with more than 2 grids, 20 laps? <context>: CREATE TABLE table_name_40 (time VARCHAR, rider VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT time FROM table_name_40 WHERE grid > 2 AND laps = 20 AND rider = "max biaggi"
25,124
<question>: What is the time of Troy Bayliss with less than 8 grids? <context>: CREATE TABLE table_name_96 (time VARCHAR, grid VARCHAR, rider VARCHAR)
SELECT time FROM table_name_96 WHERE grid < 8 AND rider = "troy bayliss"
25,125
<question>: Which Torque has a Model of s63 amg ('01)? <context>: CREATE TABLE table_name_91 (torque VARCHAR, model VARCHAR)
SELECT torque FROM table_name_91 WHERE model = "s63 amg ('01)"
25,126
<question>: Which Engine has a Model of s430? <context>: CREATE TABLE table_name_71 (engine VARCHAR, model VARCHAR)
SELECT engine FROM table_name_71 WHERE model = "s430"
25,127
<question>: Which Engine has a Model of s320 cdi? <context>: CREATE TABLE table_name_87 (engine VARCHAR, model VARCHAR)
SELECT engine FROM table_name_87 WHERE model = "s320 cdi"
25,128
<question>: Who won Division Southwest when Madžari Solidarnost won Division North? <context>: CREATE TABLE table_name_4 (division_southwest VARCHAR, division_north VARCHAR)
SELECT division_southwest FROM table_name_4 WHERE division_north = "madžari solidarnost"
25,129
<question>: Who won Division West when Division North was won by Alumina? <context>: CREATE TABLE table_name_69 (division_west VARCHAR, division_north VARCHAR)
SELECT division_west FROM table_name_69 WHERE division_north = "alumina"
25,130
<question>: Who won Division North when Division Southwest was won by Novaci and Division West by Vrapčište? <context>: CREATE TABLE table_name_75 (division_north VARCHAR, division_southwest VARCHAR, division_west VARCHAR)
SELECT division_north FROM table_name_75 WHERE division_southwest = "novaci" AND division_west = "vrapčište"
25,131
<question>: Who won Division Southwest when the winner of Division North was Lepenec and Division South was won by 11 Oktomvri? <context>: CREATE TABLE table_name_44 (division_southwest VARCHAR, division_north VARCHAR, division_south VARCHAR)
SELECT division_southwest FROM table_name_44 WHERE division_north = "lepenec" AND division_south = "11 oktomvri"
25,132
<question>: What are the minutes of the Player from Real Madrid Club with a Rank of 7 or larger? <context>: CREATE TABLE table_name_73 (minutes INTEGER, rank VARCHAR, club VARCHAR)
SELECT SUM(minutes) FROM table_name_73 WHERE rank > 7 AND club = "real madrid"
25,133
<question>: For what award was there a nomination for Best Actress? <context>: CREATE TABLE table_name_21 (award VARCHAR, category VARCHAR)
SELECT award FROM table_name_21 WHERE category = "best actress"
25,134
<question>: What year was Teen Angels 2 nominated? <context>: CREATE TABLE table_name_19 (year VARCHAR, nominated VARCHAR)
SELECT year FROM table_name_19 WHERE nominated = "teen angels 2"
25,135
<question>: What year saw an award in the category of Revelation? <context>: CREATE TABLE table_name_73 (year VARCHAR, category VARCHAR)
SELECT year FROM table_name_73 WHERE category = "revelation"
25,136
<question>: Name the performance nominated for a Capif Award. <context>: CREATE TABLE table_name_60 (nominated VARCHAR, award VARCHAR)
SELECT nominated FROM table_name_60 WHERE award = "capif award"
25,137
<question>: In what category was Herself nominated? <context>: CREATE TABLE table_name_21 (category VARCHAR, nominated VARCHAR)
SELECT category FROM table_name_21 WHERE nominated = "herself"
25,138
<question>: What year was there a nomination for Best Actress at the Kids' Choice Awards Argentina? <context>: CREATE TABLE table_name_36 (year VARCHAR, award VARCHAR, category VARCHAR)
SELECT year FROM table_name_36 WHERE award = "kids' choice awards argentina" AND category = "best actress"
25,139
<question>: What is the average Draws, when Goal Difference is greater than -3, when Goals Against is 30, and when Points is greater than 45? <context>: CREATE TABLE table_name_97 (draws INTEGER, points VARCHAR, goal_difference VARCHAR, goals_against VARCHAR)
SELECT AVG(draws) FROM table_name_97 WHERE goal_difference > -3 AND goals_against = 30 AND points > 45
25,140
<question>: What is the average Played, when Club is "Burgos CF", and when Draws is less than 7? <context>: CREATE TABLE table_name_32 (played INTEGER, club VARCHAR, draws VARCHAR)
SELECT AVG(played) FROM table_name_32 WHERE club = "burgos cf" AND draws < 7
25,141
<question>: What is the highest Goals Against, when Club is "Pontevedra CF", and when Played is less than 38? <context>: CREATE TABLE table_name_74 (goals_against INTEGER, club VARCHAR, played VARCHAR)
SELECT MAX(goals_against) FROM table_name_74 WHERE club = "pontevedra cf" AND played < 38
25,142
<question>: What is T2 Place Player Steve Flesch's Score? <context>: CREATE TABLE table_name_97 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT MAX(score) FROM table_name_97 WHERE place = "t2" AND player = "steve flesch"
25,143
<question>: What is the Place of the Player with a Score of 67? <context>: CREATE TABLE table_name_16 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_16 WHERE score = 67
25,144
<question>: What Venue has a Year smaller than 1991, Time larger than 10.29, Competition of mediterranean games, and Event of 4x100 m relay? <context>: CREATE TABLE table_name_10 (venue VARCHAR, event VARCHAR, competition VARCHAR, year VARCHAR, time VARCHAR)
SELECT venue FROM table_name_10 WHERE year < 1991 AND time > 10.29 AND competition = "mediterranean games" AND event = "4x100 m relay"
25,145
<question>: What Event has a Position of 1st, a Year of 1983, and a Venue of budapest? <context>: CREATE TABLE table_name_34 (event VARCHAR, venue VARCHAR, position VARCHAR, year VARCHAR)
SELECT event FROM table_name_34 WHERE position = "1st" AND year = 1983 AND venue = "budapest"
25,146
<question>: What Position has a Time of 20.66? <context>: CREATE TABLE table_name_52 (position VARCHAR, time VARCHAR)
SELECT position FROM table_name_52 WHERE time = 20.66
25,147
<question>: What is the greatest Time with a Year of 1991, and Event of 4x100 m relay? <context>: CREATE TABLE table_name_89 (time INTEGER, year VARCHAR, event VARCHAR)
SELECT MAX(time) FROM table_name_89 WHERE year = 1991 AND event = "4x100 m relay"
25,148
<question>: When was the match that had Shaun Murphy as runner-up? <context>: CREATE TABLE table_name_31 (date VARCHAR, runner_up VARCHAR)
SELECT date FROM table_name_31 WHERE runner_up = "shaun murphy"
25,149
<question>: Who was the winner in the match that had John Higgins as runner-up? <context>: CREATE TABLE table_name_63 (winner VARCHAR, runner_up VARCHAR)
SELECT winner FROM table_name_63 WHERE runner_up = "john higgins"
25,150
<question>: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ʏ"? <context>: CREATE TABLE table_name_8 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
SELECT pronunciation_spelled_free FROM table_name_8 WHERE pronunciation_spelled_checked = "ʏ"
25,151
<question>: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɛ"? <context>: CREATE TABLE table_name_2 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
SELECT pronunciation_spelled_free FROM table_name_2 WHERE pronunciation_spelled_checked = "ɛ"
25,152
<question>: What is Pronunciation Spelled Free, when Pronunciation Spelled Checked is "ɑ"? <context>: CREATE TABLE table_name_24 (pronunciation_spelled_free VARCHAR, pronunciation_spelled_checked VARCHAR)
SELECT pronunciation_spelled_free FROM table_name_24 WHERE pronunciation_spelled_checked = "ɑ"
25,153
<question>: What was the largest tie when the G.P was more than 5? <context>: CREATE TABLE table_name_56 (ties INTEGER, gp INTEGER)
SELECT MAX(ties) FROM table_name_56 WHERE gp > 5
25,154
<question>: What is the highest number in attendance against the game at Kansas City Chiefs? <context>: CREATE TABLE table_name_47 (attendance INTEGER, opponent VARCHAR)
SELECT MAX(attendance) FROM table_name_47 WHERE opponent = "at kansas city chiefs"
25,155
<question>: What is the attendance for the game against the Kansas City Chiefs earlier than week 13? <context>: CREATE TABLE table_name_32 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT AVG(attendance) FROM table_name_32 WHERE opponent = "kansas city chiefs" AND week < 13
25,156
<question>: What is the result later than week 13? <context>: CREATE TABLE table_name_64 (result VARCHAR, week INTEGER)
SELECT result FROM table_name_64 WHERE week > 13
25,157
<question>: What is the lowest To par of gary player, with more than 145 total? <context>: CREATE TABLE table_name_8 (to_par INTEGER, player VARCHAR, total VARCHAR)
SELECT MIN(to_par) FROM table_name_8 WHERE player = "gary player" AND total > 145
25,158
<question>: How many Wins have Goals against smaller than 30, and Goals for larger than 25, and Draws larger than 5? <context>: CREATE TABLE table_name_66 (wins VARCHAR, draws VARCHAR, goals_against VARCHAR, goals_for VARCHAR)
SELECT COUNT(wins) FROM table_name_66 WHERE goals_against < 30 AND goals_for > 25 AND draws > 5
25,159
<question>: How many Draws have 30 Points, and less than 33 Goals against? <context>: CREATE TABLE table_name_44 (draws VARCHAR, points VARCHAR, goals_against VARCHAR)
SELECT COUNT(draws) FROM table_name_44 WHERE points = 30 AND goals_against < 33
25,160
<question>: Which Wins have a Goal Difference larger than 12, and a Club of granada cf, and Played larger than 30? <context>: CREATE TABLE table_name_91 (wins INTEGER, played VARCHAR, goal_difference VARCHAR, club VARCHAR)
SELECT AVG(wins) FROM table_name_91 WHERE goal_difference > 12 AND club = "granada cf" AND played > 30
25,161
<question>: Which Played has a Club of atlético ceuta, and less than 11 Losses? <context>: CREATE TABLE table_name_40 (played INTEGER, club VARCHAR, losses VARCHAR)
SELECT MAX(played) FROM table_name_40 WHERE club = "atlético ceuta" AND losses < 11
25,162
<question>: What is the place number for the player with a To Par score of 'E'? <context>: CREATE TABLE table_name_85 (place VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_85 WHERE to_par = "e"
25,163
<question>: What is the To Par score for the player from South Africa? <context>: CREATE TABLE table_name_76 (to_par VARCHAR, country VARCHAR)
SELECT to_par FROM table_name_76 WHERE country = "south africa"
25,164
<question>: Which player from Scotland has a To Par score of +7? <context>: CREATE TABLE table_name_50 (player VARCHAR, to_par VARCHAR, country VARCHAR)
SELECT player FROM table_name_50 WHERE to_par = "+7" AND country = "scotland"
25,165
<question>: Player Craig Parry of Australia is in what place number? <context>: CREATE TABLE table_name_86 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_86 WHERE country = "australia" AND player = "craig parry"
25,166
<question>: Which player from the United States is in a place of T2? <context>: CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)
SELECT player FROM table_name_49 WHERE place = "t2" AND country = "united states"
25,167
<question>: For the match in which player David Frost scored a To Par of +7, what was the final score? <context>: CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT score FROM table_name_94 WHERE to_par = "+7" AND player = "david frost"
25,168
<question>: What was Tom Watson's lowest To par when the total was larger than 144? <context>: CREATE TABLE table_name_44 (to_par INTEGER, player VARCHAR, total VARCHAR)
SELECT MIN(to_par) FROM table_name_44 WHERE player = "tom watson" AND total > 144
25,169
<question>: What was England's total? <context>: CREATE TABLE table_name_75 (total VARCHAR, country VARCHAR)
SELECT total FROM table_name_75 WHERE country = "england"
25,170
<question>: What player had a To par smaller than 9 and won in 1985? <context>: CREATE TABLE table_name_9 (player VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
SELECT player FROM table_name_9 WHERE to_par < 9 AND year_s__won = "1985"
25,171
<question>: What is the seat percentage when vote percentage is 2.4% (-8.3)? <context>: CREATE TABLE table_name_73 (seat_percentage VARCHAR, vote_percentage VARCHAR)
SELECT seat_percentage FROM table_name_73 WHERE vote_percentage = "2.4% (-8.3)"
25,172
<question>: How many calories is 1 watt hour? <context>: CREATE TABLE table_name_64 (calorie VARCHAR, watt_hour VARCHAR)
SELECT calorie FROM table_name_64 WHERE watt_hour = "1"
25,173
<question>: How many electronvolts is 3,600 joules? <context>: CREATE TABLE table_name_44 (electronvolt VARCHAR, joule VARCHAR)
SELECT electronvolt FROM table_name_44 WHERE joule = "3,600"
25,174
<question>: What is the total number of Year, when Winner is "Johnathan Gray"? <context>: CREATE TABLE table_name_81 (year VARCHAR, winner VARCHAR)
SELECT COUNT(year) FROM table_name_81 WHERE winner = "johnathan gray"
25,175
<question>: What is Winner, when College is "Kentucky"? <context>: CREATE TABLE table_name_16 (winner VARCHAR, college VARCHAR)
SELECT winner FROM table_name_16 WHERE college = "kentucky"
25,176
<question>: What is Hometown, when Sport is "Basketball", and when Winner is "Dwight Howard"? <context>: CREATE TABLE table_name_83 (hometown VARCHAR, sport VARCHAR, winner VARCHAR)
SELECT hometown FROM table_name_83 WHERE sport = "basketball" AND winner = "dwight howard"
25,177
<question>: What is the Duration for less than 53 consecutive wins? <context>: CREATE TABLE table_name_68 (duration VARCHAR, wins INTEGER)
SELECT duration FROM table_name_68 WHERE wins < 53
25,178
<question>: How many wins were held before being defeated by toda? <context>: CREATE TABLE table_name_97 (wins VARCHAR, defeated_by VARCHAR)
SELECT COUNT(wins) FROM table_name_97 WHERE defeated_by = "toda"
25,179
<question>: What is the greatest goals for Curtis Davies if ends is greater than 2012? <context>: CREATE TABLE table_name_9 (goals INTEGER, name VARCHAR, ends VARCHAR)
SELECT MAX(goals) FROM table_name_9 WHERE name = "curtis davies" AND ends > 2012
25,180
<question>: When the transfer fee is £8.5m, what is the total ends? <context>: CREATE TABLE table_name_70 (ends INTEGER, transfer_fee VARCHAR)
SELECT SUM(ends) FROM table_name_70 WHERE transfer_fee = "£8.5m"
25,181
<question>: On what Date was Henry I Latin Commander of the Battle of Boruy? <context>: CREATE TABLE table_name_67 (date VARCHAR, latin_commander VARCHAR, battle VARCHAR)
SELECT date FROM table_name_67 WHERE latin_commander = "henry i" AND battle = "battle of boruy"
25,182
<question>: Who is the Latin Commander of the Siege of Constantinople? <context>: CREATE TABLE table_name_88 (latin_commander VARCHAR, battle VARCHAR)
SELECT latin_commander FROM table_name_88 WHERE battle = "siege of constantinople"
25,183
<question>: What is the Result of the battle with Latin Commander Boniface of Montferrat? <context>: CREATE TABLE table_name_3 (result VARCHAR, latin_commander VARCHAR)
SELECT result FROM table_name_3 WHERE latin_commander = "boniface of montferrat"
25,184
<question>: What is the Battle with Bulgarian Commander Ivan Asen II? <context>: CREATE TABLE table_name_21 (battle VARCHAR, bulgarian_commander VARCHAR)
SELECT battle FROM table_name_21 WHERE bulgarian_commander = "ivan asen ii"
25,185
<question>: What is the Bulgarian Commander of the Battle of Rusion? <context>: CREATE TABLE table_name_39 (bulgarian_commander VARCHAR, battle VARCHAR)
SELECT bulgarian_commander FROM table_name_39 WHERE battle = "battle of rusion"
25,186
<question>: What is Type for Rite Albanian? <context>: CREATE TABLE table_name_63 (type VARCHAR, rite VARCHAR)
SELECT type FROM table_name_63 WHERE rite = "albanian"
25,187
<question>: What Area (km 2) is lowest with a type being Apostolic Administration? <context>: CREATE TABLE table_name_47 (area__km_2__ INTEGER, type VARCHAR)
SELECT MIN(area__km_2__) FROM table_name_47 WHERE type = "apostolic administration"
25,188
<question>: What Ecclesiastical Province has a type diocese and a latin name alexiensis? <context>: CREATE TABLE table_name_21 (ecclesiastical_province VARCHAR, type VARCHAR, latin_name VARCHAR)
SELECT ecclesiastical_province FROM table_name_21 WHERE type = "diocese" AND latin_name = "alexiensis"
25,189
<question>: What's the money that Sam Snead won? <context>: CREATE TABLE table_name_52 (money___$__ VARCHAR, player VARCHAR)
SELECT money___$__ FROM table_name_52 WHERE player = "sam snead"
25,190
<question>: What was the total To Par for Craig Wood? <context>: CREATE TABLE table_name_16 (to_par INTEGER, player VARCHAR)
SELECT SUM(to_par) FROM table_name_16 WHERE player = "craig wood"
25,191
<question>: What was the score for t9 place for Harold Mcspaden? <context>: CREATE TABLE table_name_9 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT score FROM table_name_9 WHERE place = "t9" AND player = "harold mcspaden"
25,192
<question>: What was the country for Sam Snead? <context>: CREATE TABLE table_name_58 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_58 WHERE player = "sam snead"
25,193
<question>: What place had a ribbon below 9.8 and a 19.2 total? <context>: CREATE TABLE table_name_23 (place INTEGER, ribbon VARCHAR, total VARCHAR)
SELECT MAX(place) FROM table_name_23 WHERE ribbon < 9.8 AND total = 19.2
25,194
<question>: Which Natural change has a Crude death rate (per 1000) larger than 9, and Deaths of 40 399? <context>: CREATE TABLE table_name_88 (natural_change VARCHAR, crude_death_rate__per_1000_ VARCHAR, deaths VARCHAR)
SELECT natural_change FROM table_name_88 WHERE crude_death_rate__per_1000_ > 9 AND deaths = "40 399"
25,195
<question>: How many season have an average attendance league of 2.456? <context>: CREATE TABLE table_name_46 (season INTEGER, average_attendance_league VARCHAR)
SELECT SUM(season) FROM table_name_46 WHERE average_attendance_league = 2.456
25,196
<question>: Which venue has more than 19 against? <context>: CREATE TABLE table_name_63 (venue VARCHAR, against INTEGER)
SELECT venue FROM table_name_63 WHERE against > 19
25,197
<question>: How many against have a status of first test? <context>: CREATE TABLE table_name_20 (against VARCHAR, status VARCHAR)
SELECT COUNT(against) FROM table_name_20 WHERE status = "first test"
25,198
<question>: What is the Venue of the Competition on 2001-05-05? <context>: CREATE TABLE table_name_38 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_38 WHERE date = "2001-05-05"
25,199
<question>: What is the Date of the Fifa World Cup with a Score of 1-0? <context>: CREATE TABLE table_name_15 (date VARCHAR, score VARCHAR, competition VARCHAR)
SELECT date FROM table_name_15 WHERE score = "1-0" AND competition = "fifa world cup"