combined_text
stringlengths
106
1.05k
###question:Which 2007 has a 2010 of A?###answer:SELECT 2007 FROM table_name_92 WHERE 2010 = "a"###context:CREATE TABLE table_name_92 (Id 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###context:CREATE TABLE table_name_40 (adam INTEGER, jade VARCHAR, peter 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"###context:CREATE TABLE table_name_70 (against INTEGER, losses VARCHAR, ntfa_div_2 VARCHAR)
###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###context:CREATE TABLE table_name_54 (losses VARCHAR, byes INTEGER)
###question:Who was the incumbent in the 20th district?###answer:SELECT incumbent FROM table_name_16 WHERE district = "20th"###context:CREATE TABLE table_name_16 (incumbent VARCHAR, district VARCHAR)
###question:Which party has the 6th district?###answer:SELECT party FROM table_name_49 WHERE district = "6th"###context:CREATE TABLE table_name_49 (party VARCHAR, district VARCHAR)
###question:Which party has Ken Cuccinelli as an incumbent?###answer:SELECT party FROM table_name_34 WHERE incumbent = "ken cuccinelli"###context:CREATE TABLE table_name_34 (party 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"###context:CREATE TABLE table_name_47 (party VARCHAR, elected VARCHAR, incumbent VARCHAR)
###question:Which incumbent was in the 24th district?###answer:SELECT incumbent FROM table_name_60 WHERE district = "24th"###context:CREATE TABLE table_name_60 (incumbent VARCHAR, district 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###context:CREATE TABLE table_name_19 (laps INTEGER, team VARCHAR, points 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"###context:CREATE TABLE table_name_74 (points VARCHAR, grid VARCHAR, time_retired 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###context:CREATE TABLE table_name_79 (team VARCHAR, laps VARCHAR, grid VARCHAR)
###question:Name the sum of grid with laps more than 97###answer:SELECT SUM(grid) FROM table_name_82 WHERE laps > 97###context:CREATE TABLE table_name_82 (grid INTEGER, laps INTEGER)
###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###context:CREATE TABLE table_name_11 (wins INTEGER, class VARCHAR, year 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"###context:CREATE TABLE table_name_49 (year INTEGER, rank VARCHAR, points VARCHAR, team 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###context:CREATE TABLE table_name_58 (ends_won INTEGER, stolen_ends VARCHAR, blank_...
###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###context:CREATE TABLE table_name_80 (skip 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###context:CREATE TABLE table_name_83 (stolen_ends VARCHAR, ends_lost VARCHAR, blank_ends 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###context:CREATE TABLE table_name_64 (current_status VARCHAR, make VARCHAR, number_of_seats 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"###context:CREATE TABLE table_name_80 (quantity VARCHAR, number_of_seats VARCHAR, make 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###context:CREATE TABLE table_name_24 (number_of_seats INTEGER, make 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###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 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"###context:CREATE TABLE table_name_93 (number_of_seats INTEGER, current_status VARCHAR, y...
###question:What is Trevard Lindley's height?###answer:SELECT height FROM table_name_42 WHERE name = "trevard lindley"###context:CREATE TABLE table_name_42 (height 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"###context:CREATE TABLE table_name_87 (class VARCHAR, games↑ VARCHAR, name 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###context:CREATE TABLE table_name_2 (games INTEGER, position VARCHAR, number 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###context:CREATE TABLE table_name_33 (quarterback VARCHAR, team_wins VARCHAR, career_wins VARCHAR, teams VARCHAR)
###question:What is Mike Harris' lowest overall?###answer:SELECT MIN(overall) FROM table_name_61 WHERE name = "mike harris"###context:CREATE TABLE table_name_61 (overall INTEGER, name 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###context:CREATE TABLE table_name_81 (pick__number INTEGER, overall VARCHAR, round VARCHAR)
###question:What value has negative infinity?###answer:SELECT value FROM table_name_82 WHERE type = "negative infinity"###context:CREATE TABLE table_name_82 (value VARCHAR, type 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 = "+∞"###context:CREATE TABLE table_name_93 (exponent_field VARCHAR, exp__biased_ VARCHAR, value VARCHAR)
###question:What's the type of 0.0 value?###answer:SELECT type FROM table_name_29 WHERE value = "0.0"###context:CREATE TABLE table_name_29 (type 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"###context:CREATE TABLE table_name_2 (significand__fraction_field_ VARCHAR, value 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###context:CREATE TABLE table_name_19 (round INTEGER, overall VARCHAR, pick__number 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###context:CREATE TABLE table_name_19 (overall INTEGER, pick__number VARCHAR, position...
###question:What is the overall of the running back player?###answer:SELECT overall FROM table_name_91 WHERE position = "running back"###context:CREATE TABLE table_name_91 (overall VARCHAR, position 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"###context:CREATE TABLE table_name_18 (general_classification 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"###context:CREATE TABLE table_name_68 (stage VARCHAR, team_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"###context:CREATE TABLE table_name_59 (stage VARCHAR, malaysian_rider_classification 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###context:CREATE TABLE table_name_53 (drawn VARCHAR, points VARCHAR, lost 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"###context:CREATE TABLE table_name_48 (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"###context:CREATE TABLE table_name_96 (game INTEGER, record 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"###context:CREATE TABLE table_name_3 (erp_w INTEGER, call_sign 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###context:CREATE TABLE table_name_96 (fcc_info VARCHAR, frequency_mhz 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"###context:CREATE TABLE table_name_95 (frequency_mhz VARCHAR, 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"###context:CREATE TABLE table_name_47 (erp_w INTEGER, call_sign VARCHAR)
###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###context:CREATE TABLE table_name_84 (fcc_info VARCHAR, frequency_mhz INTEGER)
###question:What date was Rica head of household?###answer: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 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"###context:CREATE TABLE table_name_16 (task_no INTEGER, head_of_household 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###context:CREATE TABLE table_name_39 (head_of_household VARCHAR, task_no VARCHAR)
###question:Which task had Cathy as the hand grenade user?###answer: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: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)"###context:CREATE TABLE table_name_94 (task_no INTEGER, date_given VARCHAR)
###question:What was the record in the win 7 streak?###answer:SELECT record FROM table_name_86 WHERE streak = "win 7"###context:CREATE TABLE table_name_86 (record VARCHAR, streak VARCHAR)
###question:What was the score when the opponent was Detroit Pistons?###answer:SELECT score FROM table_name_46 WHERE opponent = "detroit pistons"###context:CREATE TABLE table_name_46 (score VARCHAR, opponent VARCHAR)
###question:What is the date when streak was won 8?###answer:SELECT date FROM table_name_50 WHERE streak = "won 8"###context:CREATE TABLE table_name_50 (date VARCHAR, streak 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"###context:CREATE TABLE table_name_47 (total_trips__am_pm_ VARCHAR, operated_by 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###context:CREATE TABLE table_name_4 (week INTEGER, result VARCHAR, attendance VARCHAR)
###question:What was the average attendance on October 30, 1938?###answer:SELECT AVG(attendance) FROM table_name_33 WHERE date = "october 30, 1938"###context:CREATE TABLE table_name_33 (attendance INTEGER, date 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"###context:CREATE TABLE table_name_88 (date VARCHAR, city 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"###context:CREATE TABLE table_name_94 (date VARCHAR, type_of_game VARCHAR)
###question:What city did Yugoslavia play Norway in?###answer:SELECT city FROM table_name_2 WHERE opponent = "norway"###context:CREATE TABLE table_name_2 (city VARCHAR, opponent 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"###context:CREATE TABLE table_name_90 (opponent VARCHAR, results¹ 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"###context:CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)
###question:Which opponent has a time of 1:50?###answer: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 2:35?###answer:SELECT opponent FROM table_name_85 WHERE time = "2:35"###context:CREATE TABLE table_name_85 (opponent VARCHAR, time VARCHAR)
###question:What is the time when the opponent is stephanie palmer?###answer:SELECT time FROM table_name_27 WHERE opponent = "stephanie palmer"###context:CREATE TABLE table_name_27 (time VARCHAR, opponent 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"###context:CREATE TABLE table_name_99 (tournament VARCHAR, opponent_in_the_final VARCHAR)
###question:What date is the zürich, switzerland tournament?###answer:SELECT date FROM table_name_36 WHERE tournament = "zürich, switzerland"###context:CREATE TABLE table_name_36 (date 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"###context:CREATE TABLE table_name_50 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
###question:Which Result has a Date of 4 april 1993?###answer:SELECT result FROM table_name_78 WHERE date = "4 april 1993"###context:CREATE TABLE table_name_78 (result VARCHAR, date 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"###context:CREATE TABLE table_name_53 (venue VARCHAR, result VARCHAR, score VARCHAR)
###question:Which Score has a Result of 5-1?###answer:SELECT score FROM table_name_68 WHERE result = "5-1"###context:CREATE TABLE table_name_68 (score VARCHAR, result 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"###context:CREATE TABLE table_name_72 (venue VARCHAR, result VARCHAR, score VARCHAR)
###question:Which Venue has a Result of 5-0?###answer:SELECT venue FROM table_name_18 WHERE result = "5-0"###context:CREATE TABLE table_name_18 (venue VARCHAR, result VARCHAR)
###question:What did winner Gary Player par?###answer:SELECT to_par FROM table_name_89 WHERE winner = "gary player"###context:CREATE TABLE table_name_89 (to_par VARCHAR, winner 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"###context:CREATE TABLE table_name_38 (pata INTEGER, model 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"###context:CREATE TABLE table_name_11 (pci_express VARCHAR, memory VARCHAR, sound 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"###context:CREATE TABLE table_name_79 (fsb_ht_frequency__mhz_ VARCHAR, sata VARCHAR, memory V...
###question:Which network has model nForce Professional 3400 MCP?###answer:SELECT network FROM table_name_29 WHERE model = "nforce professional 3400 mcp"###context:CREATE TABLE table_name_29 (network VARCHAR, model VARCHAR)
###question:What model has an engine of 1,868 cc?###answer:SELECT model FROM table_name_33 WHERE displacement = "1,868 cc"###context:CREATE TABLE table_name_33 (model VARCHAR, displacement VARCHAR)
###question:What College team has 8 rounds?###answer: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 nationality is Daryn Fersovich?###answer:SELECT nationality FROM table_name_47 WHERE player = "daryn fersovich"###context:CREATE TABLE table_name_47 (nationality VARCHAR, player VARCHAR)
###question:What day was the ground subiaco?###answer:SELECT date FROM table_name_8 WHERE ground = "subiaco"###context:CREATE TABLE table_name_8 (date VARCHAR, ground 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"###context:CREATE TABLE table_name_54 (crowd VARCHAR, home_team 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"###context:CREATE TABLE table_name_7 (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"###context:CREATE TABLE table_name_2 (score VARCHAR, couple VARCHAR, style VARCHAR)
###question:Which music is jive?###answer:SELECT music FROM table_name_20 WHERE style = "jive"###context:CREATE TABLE table_name_20 (music 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"###context:CREATE TABLE table_name_82 (couple 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"###context:CREATE TABLE table_name_18 (score VARCHAR, result 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"###context:CREATE TABLE table_name_22 (music VARCHAR, score VARCHAR, style 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"###context:CREATE TABLE table_name_98 (australian_national_kennel_counci...
###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"###context:CREATE TABLE table_name_26 (new_zeal...
###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"###cont...
###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"###context:CREATE TABLE table_name_65 (the_kennel_club__uk__toy_group VARCHAR, american_ken...
###question:What prize amount was awarded at the event with 453 entrants?###answer:SELECT prize FROM table_name_31 WHERE entrants = 453###context:CREATE TABLE table_name_31 (prize VARCHAR, entrants 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"###context:CREATE TABLE table_name_78 (results VARCHAR, runner_up 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"###context:CREATE TABLE table_name_90 (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"###context:CREATE TABLE table_name_21 (entrants INTEGER, winner 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"###context:CREATE TABLE table_name_60 (medal VARCHAR, games VARCHAR, sport VARCHAR)
###question:Who won a medal at the 2008 Beijing Olympics?###answer:SELECT name FROM table_name_33 WHERE games = "2008 beijing"###context:CREATE TABLE table_name_33 (name VARCHAR, games VARCHAR)