question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which 2007 has a 2010 of A?
CREATE TABLE table_name_92 (Id VARCHAR)
SELECT 2007 FROM table_name_92 WHERE 2010 = "a"
### Context: CREATE TABLE table_name_92 (Id VARCHAR) ### Question: Which 2007 has a 2010 of A? ### Answer: SELECT 2007 FROM table_name_92 WHERE 2010 = "a"
What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0?
CREATE TABLE table_name_40 (adam INTEGER, jade VARCHAR, peter VARCHAR)
SELECT AVG(adam) FROM table_name_40 WHERE jade > 5 AND peter < 0
### Context: CREATE TABLE table_name_40 (adam INTEGER, jade VARCHAR, peter VARCHAR) ### Question: What's Adam's score when Jade's score is greater than 5 and Peter's score is less than 0? ### Answer: SELECT AVG(adam) FROM table_name_40 WHERE jade > 5 AND peter < 0
Old Scotch had less than 9 losses and how much against?
CREATE TABLE table_name_70 (against INTEGER, losses VARCHAR, ntfa_div_2 VARCHAR)
SELECT SUM(against) FROM table_name_70 WHERE losses < 9 AND ntfa_div_2 = "old scotch"
### Context: CREATE TABLE table_name_70 (against INTEGER, losses VARCHAR, ntfa_div_2 VARCHAR) ### Question: Old Scotch had less than 9 losses and how much against? ### Answer: SELECT SUM(against) FROM table_name_70 WHERE losses < 9 AND ntfa_div_2 = "old scotch"
Of the teams that had more than 0 byes, what was the total number of losses?
CREATE TABLE table_name_54 (losses VARCHAR, byes INTEGER)
SELECT COUNT(losses) FROM table_name_54 WHERE byes < 0
### Context: CREATE TABLE table_name_54 (losses VARCHAR, byes INTEGER) ### Question: Of the teams that had more than 0 byes, what was the total number of losses? ### Answer: SELECT COUNT(losses) FROM table_name_54 WHERE byes < 0
Who was the incumbent in the 20th district?
CREATE TABLE table_name_16 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_16 WHERE district = "20th"
### Context: CREATE TABLE table_name_16 (incumbent VARCHAR, district VARCHAR) ### Question: Who was the incumbent in the 20th district? ### Answer: SELECT incumbent FROM table_name_16 WHERE district = "20th"
Which party has the 6th district?
CREATE TABLE table_name_49 (party VARCHAR, district VARCHAR)
SELECT party FROM table_name_49 WHERE district = "6th"
### Context: CREATE TABLE table_name_49 (party VARCHAR, district VARCHAR) ### Question: Which party has the 6th district? ### Answer: SELECT party FROM table_name_49 WHERE district = "6th"
Which party has Ken Cuccinelli as an incumbent?
CREATE TABLE table_name_34 (party VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_34 WHERE incumbent = "ken cuccinelli"
### Context: CREATE TABLE table_name_34 (party VARCHAR, incumbent VARCHAR) ### Question: Which party has Ken Cuccinelli as an incumbent? ### Answer: SELECT party FROM table_name_34 WHERE incumbent = "ken cuccinelli"
Which party was elected in 2003 with incumbent Mark Obenshain?
CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_47 WHERE elected = 2003 AND incumbent = "mark obenshain"
### Context: CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR) ### Question: Which party was elected in 2003 with incumbent Mark Obenshain? ### Answer: SELECT party FROM table_name_47 WHERE elected = 2003 AND incumbent = "mark obenshain"
Which incumbent was in the 24th district?
CREATE TABLE table_name_60 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_60 WHERE district = "24th"
### Context: CREATE TABLE table_name_60 (incumbent VARCHAR, district VARCHAR) ### Question: Which incumbent was in the 24th district? ### Answer: SELECT incumbent FROM table_name_60 WHERE district = "24th"
Name the sum of laps for mi-jack conquest racing and points less than 11
CREATE TABLE table_name_19 (laps INTEGER, team VARCHAR, points VARCHAR)
SELECT SUM(laps) FROM table_name_19 WHERE team = "mi-jack conquest racing" AND points < 11
### Context: CREATE TABLE table_name_19 (laps INTEGER, team VARCHAR, points VARCHAR) ### Question: Name the sum of laps for mi-jack conquest racing and points less than 11 ### Answer: SELECT SUM(laps) FROM table_name_19 WHERE team = "mi-jack conquest racing" AND points < 11
Name the points with grid more than 8 and time/retired of +47.487 secs
CREATE TABLE table_name_74 (points VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT points FROM table_name_74 WHERE grid > 8 AND time_retired = "+47.487 secs"
### Context: CREATE TABLE table_name_74 (points VARCHAR, grid VARCHAR, time_retired VARCHAR) ### Question: Name the points with grid more than 8 and time/retired of +47.487 secs ### Answer: SELECT points FROM table_name_74 WHERE grid > 8 AND time_retired = "+47.487 secs"
Name the team with laps of 97 and grid of 3
CREATE TABLE table_name_79 (team VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT team FROM table_name_79 WHERE laps = 97 AND grid = 3
### Context: CREATE TABLE table_name_79 (team VARCHAR, laps VARCHAR, grid VARCHAR) ### Question: Name the team with laps of 97 and grid of 3 ### Answer: SELECT team FROM table_name_79 WHERE laps = 97 AND grid = 3
Name the sum of grid with laps more than 97
CREATE TABLE table_name_82 (grid INTEGER, laps INTEGER)
SELECT SUM(grid) FROM table_name_82 WHERE laps > 97
### Context: CREATE TABLE table_name_82 (grid INTEGER, laps INTEGER) ### Question: Name the sum of grid with laps more than 97 ### Answer: SELECT SUM(grid) FROM table_name_82 WHERE laps > 97
What are the most wins in 1971 in 250cc class?
CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR)
SELECT MAX(wins) FROM table_name_11 WHERE class = "250cc" AND year = 1971
### Context: CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year VARCHAR) ### Question: What are the most wins in 1971 in 250cc class? ### Answer: SELECT MAX(wins) FROM table_name_11 WHERE class = "250cc" AND year = 1971
What is the earliest year with less than 45 points for Yamaha team in 21st rank?
CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR)
SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = "yamaha" AND rank = "21st"
### Context: CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team VARCHAR) ### Question: What is the earliest year with less than 45 points for Yamaha team in 21st rank? ### Answer: SELECT MIN(year) FROM table_name_49 WHERE points < 45 AND team = "yamaha" AND rank = "21st"
How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13?
CREATE TABLE table_name_58 (ends_won INTEGER, stolen_ends VARCHAR, blank_ends VARCHAR, locale VARCHAR)
SELECT SUM(ends_won) FROM table_name_58 WHERE blank_ends < 14 AND locale = "manitoba" AND stolen_ends > 13
### Context: CREATE TABLE table_name_58 (ends_won INTEGER, stolen_ends VARCHAR, blank_ends VARCHAR, locale VARCHAR) ### Question: How many Ends Won have Blank Ends smaller than 14, and a Locale of manitoba, and Stolen Ends larger than 13? ### Answer: SELECT SUM(ends_won) FROM table_name_58 WHERE blank_ends < 14 AND locale = "manitoba" AND stolen_ends > 13
Which Skip has Ends Lost larger than 44, and Blank Ends of 10?
CREATE TABLE table_name_80 (skip VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR)
SELECT skip FROM table_name_80 WHERE ends_lost > 44 AND blank_ends = 10
### Context: CREATE TABLE table_name_80 (skip VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR) ### Question: Which Skip has Ends Lost larger than 44, and Blank Ends of 10? ### Answer: SELECT skip FROM table_name_80 WHERE ends_lost > 44 AND blank_ends = 10
How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7?
CREATE TABLE table_name_83 (stolen_ends VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR)
SELECT COUNT(stolen_ends) FROM table_name_83 WHERE ends_lost < 44 AND blank_ends < 7
### Context: CREATE TABLE table_name_83 (stolen_ends VARCHAR, ends_lost VARCHAR, blank_ends VARCHAR) ### Question: How many Stolen Ends have Ends Lost smaller than 44, and Blank Ends smaller than 7? ### Answer: SELECT COUNT(stolen_ends) FROM table_name_83 WHERE ends_lost < 44 AND blank_ends < 7
What is the current status for GM Advanced Design with more than 41 seats?
CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR)
SELECT current_status FROM table_name_64 WHERE make = "gm advanced design" AND number_of_seats > 41
### Context: CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats VARCHAR) ### Question: What is the current status for GM Advanced Design with more than 41 seats? ### Answer: SELECT current_status FROM table_name_64 WHERE make = "gm advanced design" AND number_of_seats > 41
What is the quantity with more than 45 seats and MCI make?
CREATE TABLE table_name_80 (quantity VARCHAR, number_of_seats VARCHAR, make VARCHAR)
SELECT quantity FROM table_name_80 WHERE number_of_seats > 45 AND make = "mci"
### Context: CREATE TABLE table_name_80 (quantity VARCHAR, number_of_seats VARCHAR, make VARCHAR) ### Question: What is the quantity with more than 45 seats and MCI make? ### Answer: SELECT quantity FROM table_name_80 WHERE number_of_seats > 45 AND make = "mci"
What is the largest number of seats with more than 32 of a MCI make?
CREATE TABLE table_name_24 (number_of_seats INTEGER, make VARCHAR, quantity VARCHAR)
SELECT MAX(number_of_seats) FROM table_name_24 WHERE make = "mci" AND quantity > 32
### Context: CREATE TABLE table_name_24 (number_of_seats INTEGER, make VARCHAR, quantity VARCHAR) ### Question: What is the largest number of seats with more than 32 of a MCI make? ### Answer: SELECT MAX(number_of_seats) FROM table_name_24 WHERE make = "mci" AND quantity > 32
What is the smallest number of seats in a vehicle currently retired and in quantities less than 8?
CREATE TABLE table_name_21 (number_of_seats INTEGER, current_status VARCHAR, quantity VARCHAR)
SELECT MIN(number_of_seats) FROM table_name_21 WHERE current_status = "retired" AND quantity < 8
### Context: CREATE TABLE table_name_21 (number_of_seats INTEGER, current_status VARCHAR, quantity VARCHAR) ### Question: What is the smallest number of seats in a vehicle currently retired and in quantities less than 8? ### Answer: SELECT MIN(number_of_seats) FROM table_name_21 WHERE current_status = "retired" AND quantity < 8
What is the smallest number of seats in a retired vehicle that was started in service in 1981?
CREATE TABLE table_name_93 (number_of_seats INTEGER, current_status VARCHAR, year_placed_in_service VARCHAR)
SELECT MIN(number_of_seats) FROM table_name_93 WHERE current_status = "retired" AND year_placed_in_service = "1981"
### Context: CREATE TABLE table_name_93 (number_of_seats INTEGER, current_status VARCHAR, year_placed_in_service VARCHAR) ### Question: What is the smallest number of seats in a retired vehicle that was started in service in 1981? ### Answer: SELECT MIN(number_of_seats) FROM table_name_93 WHERE current_status = "retired" AND year_placed_in_service = "1981"
What is Trevard Lindley's height?
CREATE TABLE table_name_42 (height VARCHAR, name VARCHAR)
SELECT height FROM table_name_42 WHERE name = "trevard lindley"
### Context: CREATE TABLE table_name_42 (height VARCHAR, name VARCHAR) ### Question: What is Trevard Lindley's height? ### Answer: SELECT height FROM table_name_42 WHERE name = "trevard lindley"
What is Ashton Cobb's class in Game 2?
CREATE TABLE table_name_87 (class VARCHAR, games↑ VARCHAR, name VARCHAR)
SELECT class FROM table_name_87 WHERE games↑ = 2 AND name = "ashton cobb"
### Context: CREATE TABLE table_name_87 (class VARCHAR, games↑ VARCHAR, name VARCHAR) ### Question: What is Ashton Cobb's class in Game 2? ### Answer: SELECT class FROM table_name_87 WHERE games↑ = 2 AND name = "ashton cobb"
What is the earliest game with a position of Re and a smaller number than 95?
CREATE TABLE table_name_2 (games INTEGER, position VARCHAR, number VARCHAR)
SELECT MIN(games) AS ↑ FROM table_name_2 WHERE position = "re" AND number < 95
### Context: CREATE TABLE table_name_2 (games INTEGER, position VARCHAR, number VARCHAR) ### Question: What is the earliest game with a position of Re and a smaller number than 95? ### Answer: SELECT MIN(games) AS ↑ FROM table_name_2 WHERE position = "re" AND number < 95
Which Seattle quarterback has more than 81 career wins and less than 70 team wins?
CREATE TABLE table_name_33 (quarterback VARCHAR, team_wins VARCHAR, career_wins VARCHAR, teams VARCHAR)
SELECT quarterback FROM table_name_33 WHERE career_wins > 81 AND teams = "seattle" AND team_wins < 70
### Context: CREATE TABLE table_name_33 (quarterback VARCHAR, team_wins VARCHAR, career_wins VARCHAR, teams VARCHAR) ### Question: Which Seattle quarterback has more than 81 career wins and less than 70 team wins? ### Answer: SELECT quarterback FROM table_name_33 WHERE career_wins > 81 AND teams = "seattle" AND team_wins < 70
What is Mike Harris' lowest overall?
CREATE TABLE table_name_61 (overall INTEGER, name VARCHAR)
SELECT MIN(overall) FROM table_name_61 WHERE name = "mike harris"
### Context: CREATE TABLE table_name_61 (overall INTEGER, name VARCHAR) ### Question: What is Mike Harris' lowest overall? ### Answer: SELECT MIN(overall) FROM table_name_61 WHERE name = "mike harris"
What is the highest pick # that has a 228 overall and a round less than 7?
CREATE TABLE table_name_81 (pick__number INTEGER, overall VARCHAR, round VARCHAR)
SELECT MAX(pick__number) FROM table_name_81 WHERE overall = 228 AND round < 7
### Context: CREATE TABLE table_name_81 (pick__number INTEGER, overall VARCHAR, round VARCHAR) ### Question: What is the highest pick # that has a 228 overall and a round less than 7? ### Answer: SELECT MAX(pick__number) FROM table_name_81 WHERE overall = 228 AND round < 7
What value has negative infinity?
CREATE TABLE table_name_82 (value VARCHAR, type VARCHAR)
SELECT value FROM table_name_82 WHERE type = "negative infinity"
### Context: CREATE TABLE table_name_82 (value VARCHAR, type VARCHAR) ### Question: What value has negative infinity? ### Answer: SELECT value FROM table_name_82 WHERE type = "negative infinity"
What's the exponent field that has 255 exp and value of +∞?
CREATE TABLE table_name_93 (exponent_field VARCHAR, exp__biased_ VARCHAR, value VARCHAR)
SELECT exponent_field FROM table_name_93 WHERE exp__biased_ = "255" AND value = "+∞"
### Context: CREATE TABLE table_name_93 (exponent_field VARCHAR, exp__biased_ VARCHAR, value VARCHAR) ### Question: What's the exponent field that has 255 exp and value of +∞? ### Answer: SELECT exponent_field FROM table_name_93 WHERE exp__biased_ = "255" AND value = "+∞"
What's the type of 0.0 value?
CREATE TABLE table_name_29 (type VARCHAR, value VARCHAR)
SELECT type FROM table_name_29 WHERE value = "0.0"
### Context: CREATE TABLE table_name_29 (type VARCHAR, value VARCHAR) ### Question: What's the type of 0.0 value? ### Answer: SELECT type FROM table_name_29 WHERE value = "0.0"
What's the Significant of a value 1.0?
CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR)
SELECT significand__fraction_field_ FROM table_name_2 WHERE value = "1.0"
### Context: CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value VARCHAR) ### Question: What's the Significant of a value 1.0? ### Answer: SELECT significand__fraction_field_ FROM table_name_2 WHERE value = "1.0"
What is the lowest round of the pick #8 player with an overall greater than 72 from the college of temple?
CREATE TABLE table_name_19 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR)
SELECT MIN(round) FROM table_name_19 WHERE pick__number = 8 AND college = "temple" AND overall > 72
### Context: CREATE TABLE table_name_19 (round INTEGER, overall VARCHAR, pick__number VARCHAR, college VARCHAR) ### Question: What is the lowest round of the pick #8 player with an overall greater than 72 from the college of temple? ### Answer: SELECT MIN(round) FROM table_name_19 WHERE pick__number = 8 AND college = "temple" AND overall > 72
What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7?
CREATE TABLE table_name_19 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR)
SELECT MIN(overall) FROM table_name_19 WHERE position = "wide receiver" AND round < 5 AND pick__number > 7
### Context: CREATE TABLE table_name_19 (overall INTEGER, pick__number VARCHAR, position VARCHAR, round VARCHAR) ### Question: What is the lowest overall of the wide receiver player from a round higher than 5 and a pick lower than 7? ### Answer: SELECT MIN(overall) FROM table_name_19 WHERE position = "wide receiver" AND round < 5 AND pick__number > 7
What is the overall of the running back player?
CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR)
SELECT overall FROM table_name_91 WHERE position = "running back"
### Context: CREATE TABLE table_name_91 (overall VARCHAR, position VARCHAR) ### Question: What is the overall of the running back player? ### Answer: SELECT overall FROM table_name_91 WHERE position = "running back"
What is the general classification when the team classification is japan?
CREATE TABLE table_name_18 (general_classification VARCHAR, team_classification VARCHAR)
SELECT general_classification FROM table_name_18 WHERE team_classification = "japan"
### Context: CREATE TABLE table_name_18 (general_classification VARCHAR, team_classification VARCHAR) ### Question: What is the general classification when the team classification is japan? ### Answer: SELECT general_classification FROM table_name_18 WHERE team_classification = "japan"
Which stage had tabriz petrochemical team in the team classification?
CREATE TABLE table_name_68 (stage VARCHAR, team_classification VARCHAR)
SELECT stage FROM table_name_68 WHERE team_classification = "tabriz petrochemical team"
### Context: CREATE TABLE table_name_68 (stage VARCHAR, team_classification VARCHAR) ### Question: Which stage had tabriz petrochemical team in the team classification? ### Answer: SELECT stage FROM table_name_68 WHERE team_classification = "tabriz petrochemical team"
Which stage had suhardi hassan in the Malaysian rider classification?
CREATE TABLE table_name_59 (stage VARCHAR, malaysian_rider_classification VARCHAR)
SELECT stage FROM table_name_59 WHERE malaysian_rider_classification = "suhardi hassan"
### Context: CREATE TABLE table_name_59 (stage VARCHAR, malaysian_rider_classification VARCHAR) ### Question: Which stage had suhardi hassan in the Malaysian rider classification? ### Answer: SELECT stage FROM table_name_59 WHERE malaysian_rider_classification = "suhardi hassan"
How many drawn have points of 6 and lost by fewer than 4?
CREATE TABLE table_name_53 (drawn VARCHAR, points VARCHAR, lost VARCHAR)
SELECT COUNT(drawn) FROM table_name_53 WHERE points = 6 AND lost < 4
### Context: CREATE TABLE table_name_53 (drawn VARCHAR, points VARCHAR, lost VARCHAR) ### Question: How many drawn have points of 6 and lost by fewer than 4? ### Answer: SELECT COUNT(drawn) FROM table_name_53 WHERE points = 6 AND lost < 4
What was the earliest game with a record of 23–6–4?
CREATE TABLE table_name_48 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_48 WHERE record = "23–6–4"
### Context: CREATE TABLE table_name_48 (game INTEGER, record VARCHAR) ### Question: What was the earliest game with a record of 23–6–4? ### Answer: SELECT MIN(game) FROM table_name_48 WHERE record = "23–6–4"
What was the earliest game with a record of 16–4–3?
CREATE TABLE table_name_96 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_96 WHERE record = "16–4–3"
### Context: CREATE TABLE table_name_96 (game INTEGER, record VARCHAR) ### Question: What was the earliest game with a record of 16–4–3? ### Answer: SELECT MIN(game) FROM table_name_96 WHERE record = "16–4–3"
Which ERP W is the highest one that has a Call sign of w255bi?
CREATE TABLE table_name_3 (erp_w INTEGER, call_sign VARCHAR)
SELECT MAX(erp_w) FROM table_name_3 WHERE call_sign = "w255bi"
### Context: CREATE TABLE table_name_3 (erp_w INTEGER, call_sign VARCHAR) ### Question: Which ERP W is the highest one that has a Call sign of w255bi? ### Answer: SELECT MAX(erp_w) FROM table_name_3 WHERE call_sign = "w255bi"
Which FCC info has a Frequency MHz of 100.7?
CREATE TABLE table_name_96 (fcc_info VARCHAR, frequency_mhz VARCHAR)
SELECT fcc_info FROM table_name_96 WHERE frequency_mhz = 100.7
### Context: CREATE TABLE table_name_96 (fcc_info VARCHAR, frequency_mhz VARCHAR) ### Question: Which FCC info has a Frequency MHz of 100.7? ### Answer: SELECT fcc_info FROM table_name_96 WHERE frequency_mhz = 100.7
How much Frequency MHz has a Call sign of w264bg?
CREATE TABLE table_name_95 (frequency_mhz VARCHAR, call_sign VARCHAR)
SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = "w264bg"
### Context: CREATE TABLE table_name_95 (frequency_mhz VARCHAR, call_sign VARCHAR) ### Question: How much Frequency MHz has a Call sign of w264bg? ### Answer: SELECT COUNT(frequency_mhz) FROM table_name_95 WHERE call_sign = "w264bg"
Which ERP W is the lowest one that has a Call sign of w233be?
CREATE TABLE table_name_47 (erp_w INTEGER, call_sign VARCHAR)
SELECT MIN(erp_w) FROM table_name_47 WHERE call_sign = "w233be"
### Context: CREATE TABLE table_name_47 (erp_w INTEGER, call_sign VARCHAR) ### Question: Which ERP W is the lowest one that has a Call sign of w233be? ### Answer: SELECT MIN(erp_w) FROM table_name_47 WHERE call_sign = "w233be"
Which FCC info has a Frequency MHz larger than 102.3?
CREATE TABLE table_name_84 (fcc_info VARCHAR, frequency_mhz INTEGER)
SELECT fcc_info FROM table_name_84 WHERE frequency_mhz > 102.3
### Context: CREATE TABLE table_name_84 (fcc_info VARCHAR, frequency_mhz INTEGER) ### Question: Which FCC info has a Frequency MHz larger than 102.3? ### Answer: SELECT fcc_info FROM table_name_84 WHERE frequency_mhz > 102.3
What date was Rica head of household?
CREATE TABLE table_name_35 (date_given VARCHAR, head_of_household VARCHAR)
SELECT date_given FROM table_name_35 WHERE head_of_household = "rica"
### Context: CREATE TABLE table_name_35 (date_given VARCHAR, head_of_household VARCHAR) ### Question: What date was Rica head of household? ### Answer: SELECT date_given FROM table_name_35 WHERE head_of_household = "rica"
What is the latest task number for which Cathy is head of household?
CREATE TABLE table_name_16 (task_no INTEGER, head_of_household VARCHAR)
SELECT MAX(task_no) FROM table_name_16 WHERE head_of_household = "cathy"
### Context: CREATE TABLE table_name_16 (task_no INTEGER, head_of_household VARCHAR) ### Question: What is the latest task number for which Cathy is head of household? ### Answer: SELECT MAX(task_no) FROM table_name_16 WHERE head_of_household = "cathy"
Who is the head of household for task number 7?
CREATE TABLE table_name_39 (head_of_household VARCHAR, task_no VARCHAR)
SELECT head_of_household FROM table_name_39 WHERE task_no = 7
### Context: CREATE TABLE table_name_39 (head_of_household VARCHAR, task_no VARCHAR) ### Question: Who is the head of household for task number 7? ### Answer: SELECT head_of_household FROM table_name_39 WHERE task_no = 7
Which task had Cathy as the hand grenade user?
CREATE TABLE table_name_98 (task_no VARCHAR, hand_grenade_user VARCHAR)
SELECT task_no FROM table_name_98 WHERE hand_grenade_user = "cathy"
### Context: CREATE TABLE table_name_98 (task_no VARCHAR, hand_grenade_user VARCHAR) ### Question: Which task had Cathy as the hand grenade user? ### Answer: SELECT task_no FROM table_name_98 WHERE hand_grenade_user = "cathy"
What is the task number on January 22, 2010 (day 111)?
CREATE TABLE table_name_94 (task_no INTEGER, date_given VARCHAR)
SELECT MAX(task_no) FROM table_name_94 WHERE date_given = "january 22, 2010 (day 111)"
### Context: CREATE TABLE table_name_94 (task_no INTEGER, date_given VARCHAR) ### Question: What is the task number on January 22, 2010 (day 111)? ### Answer: SELECT MAX(task_no) FROM table_name_94 WHERE date_given = "january 22, 2010 (day 111)"
What was the record in the win 7 streak?
CREATE TABLE table_name_86 (record VARCHAR, streak VARCHAR)
SELECT record FROM table_name_86 WHERE streak = "win 7"
### Context: CREATE TABLE table_name_86 (record VARCHAR, streak VARCHAR) ### Question: What was the record in the win 7 streak? ### Answer: SELECT record FROM table_name_86 WHERE streak = "win 7"
What was the score when the opponent was Detroit Pistons?
CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_46 WHERE opponent = "detroit pistons"
### Context: CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR) ### Question: What was the score when the opponent was Detroit Pistons? ### Answer: SELECT score FROM table_name_46 WHERE opponent = "detroit pistons"
What is the date when streak was won 8?
CREATE TABLE table_name_50 (date VARCHAR, streak VARCHAR)
SELECT date FROM table_name_50 WHERE streak = "won 8"
### Context: CREATE TABLE table_name_50 (date VARCHAR, streak VARCHAR) ### Question: What is the date when streak was won 8? ### Answer: SELECT date FROM table_name_50 WHERE streak = "won 8"
What trips are operated by Atlantic coast charters?
CREATE TABLE table_name_47 (total_trips__am_pm_ VARCHAR, operated_by VARCHAR)
SELECT total_trips__am_pm_ FROM table_name_47 WHERE operated_by = "atlantic coast charters"
### Context: CREATE TABLE table_name_47 (total_trips__am_pm_ VARCHAR, operated_by VARCHAR) ### Question: What trips are operated by Atlantic coast charters? ### Answer: SELECT total_trips__am_pm_ FROM table_name_47 WHERE operated_by = "atlantic coast charters"
What was the average week of a game with a result of l 10-7 attended by 37,500?
CREATE TABLE table_name_4 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT AVG(week) FROM table_name_4 WHERE result = "l 10-7" AND attendance < 37 OFFSET 500
### Context: CREATE TABLE table_name_4 (week INTEGER, result VARCHAR, attendance VARCHAR) ### Question: What was the average week of a game with a result of l 10-7 attended by 37,500? ### Answer: SELECT AVG(week) FROM table_name_4 WHERE result = "l 10-7" AND attendance < 37 OFFSET 500
What was the average attendance on October 30, 1938?
CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938"
### Context: CREATE TABLE table_name_33 (attendance INTEGER, date VARCHAR) ### Question: What was the average attendance on October 30, 1938? ### Answer: SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938"
When did Yugoslavia play a friendly game in Belgrade?
CREATE TABLE table_name_88 (date VARCHAR, city VARCHAR, type_of_game VARCHAR)
SELECT date FROM table_name_88 WHERE city = "belgrade" AND type_of_game = "friendly"
### Context: CREATE TABLE table_name_88 (date VARCHAR, city VARCHAR, type_of_game VARCHAR) ### Question: When did Yugoslavia play a friendly game in Belgrade? ### Answer: SELECT date FROM table_name_88 WHERE city = "belgrade" AND type_of_game = "friendly"
When was the WC 1974 Qualifying game?
CREATE TABLE table_name_94 (date VARCHAR, type_of_game VARCHAR)
SELECT date FROM table_name_94 WHERE type_of_game = "wc 1974 qualifying"
### Context: CREATE TABLE table_name_94 (date VARCHAR, type_of_game VARCHAR) ### Question: When was the WC 1974 Qualifying game? ### Answer: SELECT date FROM table_name_94 WHERE type_of_game = "wc 1974 qualifying"
What city did Yugoslavia play Norway in?
CREATE TABLE table_name_2 (city VARCHAR, opponent VARCHAR)
SELECT city FROM table_name_2 WHERE opponent = "norway"
### Context: CREATE TABLE table_name_2 (city VARCHAR, opponent VARCHAR) ### Question: What city did Yugoslavia play Norway in? ### Answer: SELECT city FROM table_name_2 WHERE opponent = "norway"
Who did Yugoslavia play against that led to a result of 2:3?
CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR)
SELECT opponent FROM table_name_90 WHERE results¹ = "2:3"
### Context: CREATE TABLE table_name_90 (opponent VARCHAR, results¹ VARCHAR) ### Question: Who did Yugoslavia play against that led to a result of 2:3? ### Answer: SELECT opponent FROM table_name_90 WHERE results¹ = "2:3"
What is the final score of the runner-up on 9 February 1992?
CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT score_in_final FROM table_name_75 WHERE outcome = "runner-up" AND date = "9 february 1992"
### Context: CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR) ### Question: What is the final score of the runner-up on 9 February 1992? ### Answer: SELECT score_in_final FROM table_name_75 WHERE outcome = "runner-up" AND date = "9 february 1992"
Which opponent has a time of 1:50?
CREATE TABLE table_name_79 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_79 WHERE time = "1:50"
### Context: CREATE TABLE table_name_79 (opponent VARCHAR, time VARCHAR) ### Question: Which opponent has a time of 1:50? ### Answer: SELECT opponent FROM table_name_79 WHERE time = "1:50"
Which opponent has a time of 2:35?
CREATE TABLE table_name_85 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_85 WHERE time = "2:35"
### Context: CREATE TABLE table_name_85 (opponent VARCHAR, time VARCHAR) ### Question: Which opponent has a time of 2:35? ### Answer: SELECT opponent FROM table_name_85 WHERE time = "2:35"
What is the time when the opponent is stephanie palmer?
CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_27 WHERE opponent = "stephanie palmer"
### Context: CREATE TABLE table_name_27 (time VARCHAR, opponent VARCHAR) ### Question: What is the time when the opponent is stephanie palmer? ### Answer: SELECT time FROM table_name_27 WHERE opponent = "stephanie palmer"
What tournament has Samantha Stosur as the opponent in the final?
CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_99 WHERE opponent_in_the_final = "samantha stosur"
### Context: CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR) ### Question: What tournament has Samantha Stosur as the opponent in the final? ### Answer: SELECT tournament FROM table_name_99 WHERE opponent_in_the_final = "samantha stosur"
What date is the zürich, switzerland tournament?
CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_36 WHERE tournament = "zürich, switzerland"
### Context: CREATE TABLE table_name_36 (date VARCHAR, tournament VARCHAR) ### Question: What date is the zürich, switzerland tournament? ### Answer: SELECT date FROM table_name_36 WHERE tournament = "zürich, switzerland"
What is the date of the Sydney, Australia tournament with a hard surface?
CREATE TABLE table_name_50 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_50 WHERE surface = "hard" AND tournament = "sydney, australia"
### Context: CREATE TABLE table_name_50 (date VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: What is the date of the Sydney, Australia tournament with a hard surface? ### Answer: SELECT date FROM table_name_50 WHERE surface = "hard" AND tournament = "sydney, australia"
Which Result has a Date of 4 april 1993?
CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_78 WHERE date = "4 april 1993"
### Context: CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR) ### Question: Which Result has a Date of 4 april 1993? ### Answer: SELECT result FROM table_name_78 WHERE date = "4 april 1993"
Which Venue has a Result of 5-1, and a Score of 3-0?
CREATE TABLE table_name_53 (venue VARCHAR, result VARCHAR, score VARCHAR)
SELECT venue FROM table_name_53 WHERE result = "5-1" AND score = "3-0"
### Context: CREATE TABLE table_name_53 (venue VARCHAR, result VARCHAR, score VARCHAR) ### Question: Which Venue has a Result of 5-1, and a Score of 3-0? ### Answer: SELECT venue FROM table_name_53 WHERE result = "5-1" AND score = "3-0"
Which Score has a Result of 5-1?
CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR)
SELECT score FROM table_name_68 WHERE result = "5-1"
### Context: CREATE TABLE table_name_68 (score VARCHAR, result VARCHAR) ### Question: Which Score has a Result of 5-1? ### Answer: SELECT score FROM table_name_68 WHERE result = "5-1"
Which Venue has a Result of 5-1, and a Score of 1-0?
CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)
SELECT venue FROM table_name_72 WHERE result = "5-1" AND score = "1-0"
### Context: CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR) ### Question: Which Venue has a Result of 5-1, and a Score of 1-0? ### Answer: SELECT venue FROM table_name_72 WHERE result = "5-1" AND score = "1-0"
Which Venue has a Result of 5-0?
CREATE TABLE table_name_18 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_18 WHERE result = "5-0"
### Context: CREATE TABLE table_name_18 (venue VARCHAR, result VARCHAR) ### Question: Which Venue has a Result of 5-0? ### Answer: SELECT venue FROM table_name_18 WHERE result = "5-0"
What did winner Gary Player par?
CREATE TABLE table_name_89 (to_par VARCHAR, winner VARCHAR)
SELECT to_par FROM table_name_89 WHERE winner = "gary player"
### Context: CREATE TABLE table_name_89 (to_par VARCHAR, winner VARCHAR) ### Question: What did winner Gary Player par? ### Answer: SELECT to_par FROM table_name_89 WHERE winner = "gary player"
How many PATAs does an nForce Professional 3400 MCP have?
CREATE TABLE table_name_38 (pata INTEGER, model VARCHAR)
SELECT SUM(pata) FROM table_name_38 WHERE model = "nforce professional 3400 mcp"
### Context: CREATE TABLE table_name_38 (pata INTEGER, model VARCHAR) ### Question: How many PATAs does an nForce Professional 3400 MCP have? ### Answer: SELECT SUM(pata) FROM table_name_38 WHERE model = "nforce professional 3400 mcp"
Which PCI-Express has a DDR 266/333/400 Registered/ECC memory and Enhanced AC'97 2.3 sound?
CREATE TABLE table_name_11 (pci_express VARCHAR, memory VARCHAR, sound VARCHAR)
SELECT pci_express FROM table_name_11 WHERE memory = "ddr 266/333/400 registered/ecc" AND sound = "enhanced ac'97 2.3"
### Context: CREATE TABLE table_name_11 (pci_express VARCHAR, memory VARCHAR, sound VARCHAR) ### Question: Which PCI-Express has a DDR 266/333/400 Registered/ECC memory and Enhanced AC'97 2.3 sound? ### Answer: SELECT pci_express FROM table_name_11 WHERE memory = "ddr 266/333/400 registered/ecc" AND sound = "enhanced ac'97 2.3"
Which FSB/HT frequency (MHz) has a SATA larger than 6 and DDR 266/333/400 Registered/ECC memory?
CREATE TABLE table_name_79 (fsb_ht_frequency__mhz_ VARCHAR, sata VARCHAR, memory VARCHAR)
SELECT fsb_ht_frequency__mhz_ FROM table_name_79 WHERE sata > 6 AND memory = "ddr 266/333/400 registered/ecc"
### Context: CREATE TABLE table_name_79 (fsb_ht_frequency__mhz_ VARCHAR, sata VARCHAR, memory VARCHAR) ### Question: Which FSB/HT frequency (MHz) has a SATA larger than 6 and DDR 266/333/400 Registered/ECC memory? ### Answer: SELECT fsb_ht_frequency__mhz_ FROM table_name_79 WHERE sata > 6 AND memory = "ddr 266/333/400 registered/ecc"
Which network has model nForce Professional 3400 MCP?
CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)
SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp"
### Context: CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR) ### Question: Which network has model nForce Professional 3400 MCP? ### Answer: SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp"
What model has an engine of 1,868 cc?
CREATE TABLE table_name_33 (model VARCHAR, displacement VARCHAR)
SELECT model FROM table_name_33 WHERE displacement = "1,868 cc"
### Context: CREATE TABLE table_name_33 (model VARCHAR, displacement VARCHAR) ### Question: What model has an engine of 1,868 cc? ### Answer: SELECT model FROM table_name_33 WHERE displacement = "1,868 cc"
What College team has 8 rounds?
CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_31 WHERE round = 8
### Context: CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, round VARCHAR) ### Question: What College team has 8 rounds? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_31 WHERE round = 8
What nationality is Daryn Fersovich?
CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_47 WHERE player = "daryn fersovich"
### Context: CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR) ### Question: What nationality is Daryn Fersovich? ### Answer: SELECT nationality FROM table_name_47 WHERE player = "daryn fersovich"
What day was the ground subiaco?
CREATE TABLE table_name_8 (date VARCHAR, ground VARCHAR)
SELECT date FROM table_name_8 WHERE ground = "subiaco"
### Context: CREATE TABLE table_name_8 (date VARCHAR, ground VARCHAR) ### Question: What day was the ground subiaco? ### Answer: SELECT date FROM table_name_8 WHERE ground = "subiaco"
What was the crowd size for the Home team of melbourne?
CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = "melbourne"
### Context: CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR) ### Question: What was the crowd size for the Home team of melbourne? ### Answer: SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = "melbourne"
Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha?
CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR)
SELECT score FROM table_name_7 WHERE couple = "cristián & cheryl" AND style = "cha-cha-cha"
### Context: CREATE TABLE table_name_7 (score VARCHAR, couple VARCHAR, style VARCHAR) ### Question: Which Score has a Couple of cristián & cheryl, and a Style of cha-cha-cha? ### Answer: SELECT score FROM table_name_7 WHERE couple = "cristián & cheryl" AND style = "cha-cha-cha"
Which Score has a Couple comprised of jason & edyta, and a Style of freestyle?
CREATE TABLE table_name_2 (score VARCHAR, couple VARCHAR, style VARCHAR)
SELECT score FROM table_name_2 WHERE couple = "jason & edyta" AND style = "freestyle"
### Context: CREATE TABLE table_name_2 (score VARCHAR, couple VARCHAR, style VARCHAR) ### Question: Which Score has a Couple comprised of jason & edyta, and a Style of freestyle? ### Answer: SELECT score FROM table_name_2 WHERE couple = "jason & edyta" AND style = "freestyle"
Which music is jive?
CREATE TABLE table_name_20 (music VARCHAR, style VARCHAR)
SELECT music FROM table_name_20 WHERE style = "jive"
### Context: CREATE TABLE table_name_20 (music VARCHAR, style VARCHAR) ### Question: Which music is jive? ### Answer: SELECT music FROM table_name_20 WHERE style = "jive"
Which Couple has a Result of third place, and a Style of cha-cha-cha?
CREATE TABLE table_name_82 (couple VARCHAR, result VARCHAR, style VARCHAR)
SELECT couple FROM table_name_82 WHERE result = "third place" AND style = "cha-cha-cha"
### Context: CREATE TABLE table_name_82 (couple VARCHAR, result VARCHAR, style VARCHAR) ### Question: Which Couple has a Result of third place, and a Style of cha-cha-cha? ### Answer: SELECT couple FROM table_name_82 WHERE result = "third place" AND style = "cha-cha-cha"
Which Score has a Result of third place, and a Style of cha-cha-cha?
CREATE TABLE table_name_18 (score VARCHAR, result VARCHAR, style VARCHAR)
SELECT score FROM table_name_18 WHERE result = "third place" AND style = "cha-cha-cha"
### Context: CREATE TABLE table_name_18 (score VARCHAR, result VARCHAR, style VARCHAR) ### Question: Which Score has a Result of third place, and a Style of cha-cha-cha? ### Answer: SELECT score FROM table_name_18 WHERE result = "third place" AND style = "cha-cha-cha"
Which Music has a Score of 30 (10, 10, 10), and a Style of cha-cha-cha?
CREATE TABLE table_name_22 (music VARCHAR, score VARCHAR, style VARCHAR)
SELECT music FROM table_name_22 WHERE score = "30 (10, 10, 10)" AND style = "cha-cha-cha"
### Context: CREATE TABLE table_name_22 (music VARCHAR, score VARCHAR, style VARCHAR) ### Question: Which Music has a Score of 30 (10, 10, 10), and a Style of cha-cha-cha? ### Answer: SELECT music FROM table_name_22 WHERE score = "30 (10, 10, 10)" AND style = "cha-cha-cha"
What is the Australian National Kennel Council Toy Dogs Group with papillon as the Kennel Club breed?
CREATE TABLE table_name_98 (australian_national_kennel_council_toy_dogs_group VARCHAR, the_kennel_club__uk__toy_group VARCHAR)
SELECT australian_national_kennel_council_toy_dogs_group FROM table_name_98 WHERE the_kennel_club__uk__toy_group = "papillon"
### Context: CREATE TABLE table_name_98 (australian_national_kennel_council_toy_dogs_group VARCHAR, the_kennel_club__uk__toy_group VARCHAR) ### Question: What is the Australian National Kennel Council Toy Dogs Group with papillon as the Kennel Club breed? ### Answer: SELECT australian_national_kennel_council_toy_dogs_group FROM table_name_98 WHERE the_kennel_club__uk__toy_group = "papillon"
What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed?
CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = "papillon"
### Context: CREATE TABLE table_name_26 (new_zealand_kennel_club_toy_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR) ### Question: What is the New Zealand Kennel Club Toy Group with papillon as the Australian National Kennel Council Toy Dogs Group breed? ### Answer: SELECT new_zealand_kennel_club_toy_group FROM table_name_26 WHERE australian_national_kennel_council_toy_dogs_group = "papillon"
What is the Canadian Kennel Club Toy Dogs Group with the australian silky terrier as the Australian National Kennel Council Toy Dogs Group breed?
CREATE TABLE table_name_49 (canadian_kennel_club_toy_dogs_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR)
SELECT canadian_kennel_club_toy_dogs_group FROM table_name_49 WHERE australian_national_kennel_council_toy_dogs_group = "australian silky terrier"
### Context: CREATE TABLE table_name_49 (canadian_kennel_club_toy_dogs_group VARCHAR, australian_national_kennel_council_toy_dogs_group VARCHAR) ### Question: What is the Canadian Kennel Club Toy Dogs Group with the australian silky terrier as the Australian National Kennel Council Toy Dogs Group breed? ### Answer: SELECT canadian_kennel_club_toy_dogs_group FROM table_name_49 WHERE australian_national_kennel_council_toy_dogs_group = "australian silky terrier"
What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed?
CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_kennel_club_toy_group VARCHAR)
SELECT the_kennel_club__uk__toy_group FROM table_name_65 WHERE american_kennel_club_toy_group = "shih-tzu"
### Context: CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_kennel_club_toy_group VARCHAR) ### Question: What is the Kennel Club (UK) Toy Group with the shih-tzu as the American Kennel Club Toy Group breed? ### Answer: SELECT the_kennel_club__uk__toy_group FROM table_name_65 WHERE american_kennel_club_toy_group = "shih-tzu"
What prize amount was awarded at the event with 453 entrants?
CREATE TABLE table_name_31 (prize VARCHAR, entrants VARCHAR)
SELECT prize FROM table_name_31 WHERE entrants = 453
### Context: CREATE TABLE table_name_31 (prize VARCHAR, entrants VARCHAR) ### Question: What prize amount was awarded at the event with 453 entrants? ### Answer: SELECT prize FROM table_name_31 WHERE entrants = 453
What were the overall event results when Michael Demichele was runner-up?
CREATE TABLE table_name_78 (results VARCHAR, runner_up VARCHAR)
SELECT results FROM table_name_78 WHERE runner_up = "michael demichele"
### Context: CREATE TABLE table_name_78 (results VARCHAR, runner_up VARCHAR) ### Question: What were the overall event results when Michael Demichele was runner-up? ### Answer: SELECT results FROM table_name_78 WHERE runner_up = "michael demichele"
What was the fewest entrants in an event won by Grant Hinkle?
CREATE TABLE table_name_90 (entrants INTEGER, winner VARCHAR)
SELECT MIN(entrants) FROM table_name_90 WHERE winner = "grant hinkle"
### Context: CREATE TABLE table_name_90 (entrants INTEGER, winner VARCHAR) ### Question: What was the fewest entrants in an event won by Grant Hinkle? ### Answer: SELECT MIN(entrants) FROM table_name_90 WHERE winner = "grant hinkle"
How many entrants did the events won by Frank Gary average?
CREATE TABLE table_name_21 (entrants INTEGER, winner VARCHAR)
SELECT AVG(entrants) FROM table_name_21 WHERE winner = "frank gary"
### Context: CREATE TABLE table_name_21 (entrants INTEGER, winner VARCHAR) ### Question: How many entrants did the events won by Frank Gary average? ### Answer: SELECT AVG(entrants) FROM table_name_21 WHERE winner = "frank gary"
What medal was won in the 1996 Atlanta games in wrestling?
CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR)
SELECT medal FROM table_name_60 WHERE games = "1996 atlanta" AND sport = "wrestling"
### Context: CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR) ### Question: What medal was won in the 1996 Atlanta games in wrestling? ### Answer: SELECT medal FROM table_name_60 WHERE games = "1996 atlanta" AND sport = "wrestling"
Who won a medal at the 2008 Beijing Olympics?
CREATE TABLE table_name_33 (name VARCHAR, games VARCHAR)
SELECT name FROM table_name_33 WHERE games = "2008 beijing"
### Context: CREATE TABLE table_name_33 (name VARCHAR, games VARCHAR) ### Question: Who won a medal at the 2008 Beijing Olympics? ### Answer: SELECT name FROM table_name_33 WHERE games = "2008 beijing"