training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_75 (attendance INTEGER, date VARCHAR) ###human: Name the most attendance for october 11 ###assistant: SELECT MAX(attendance) FROM table_name_75 WHERE date = "october 11"
###context:CREATE TABLE table_name_52 (visitor VARCHAR, date VARCHAR) ###human: Name the visitor for october 19 ###assistant: SELECT visitor FROM table_name_52 WHERE date = "october 19"
###context:CREATE TABLE table_name_12 (year INTEGER, series_title VARCHAR) ###human: The highest year for the series titled dragon laws ii: kidnapped is what? ###assistant: SELECT MAX(year) FROM table_name_12 WHERE series_title = "dragon laws ii: kidnapped"
###context:CREATE TABLE table_name_73 (role VARCHAR, series_title VARCHAR) ###human: The series titled dragon laws i: the undercover has what role? ###assistant: SELECT role FROM table_name_73 WHERE series_title = "dragon laws i: the undercover"
###context:CREATE TABLE table_name_7 (athlete VARCHAR, fastest_time__s_ VARCHAR) ###human: Which athlete has the fastest time of 15.82? ###assistant: SELECT athlete FROM table_name_7 WHERE fastest_time__s_ = 15.82
###context:CREATE TABLE table_name_87 (year VARCHAR, points INTEGER) ###human: What is the total number of years that an entrant had more than 0 points? ###assistant: SELECT COUNT(year) FROM table_name_87 WHERE points > 0
###context:CREATE TABLE table_name_65 (year VARCHAR, engine VARCHAR) ###human: Name the total number of years for brm straight-4 ###assistant: SELECT COUNT(year) FROM table_name_65 WHERE engine = "brm straight-4"
###context:CREATE TABLE table_name_2 (points VARCHAR, chassis VARCHAR) ###human: Name the total number of points for chassis of bmw t269 (f2) ###assistant: SELECT COUNT(points) FROM table_name_2 WHERE chassis = "bmw t269 (f2)"
###context:CREATE TABLE table_name_43 (promotions INTEGER, team VARCHAR, relegations VARCHAR) ###human: Whats the highest Promotions that has a Team of Pallacanestro Messina, along with Relegations larger than 0? ###assistant: SELECT MAX(promotions) FROM table_name_43 WHERE team = "pallacanestro messina" AND relegations > 0
###context:CREATE TABLE table_name_32 (points INTEGER, chassis VARCHAR, year VARCHAR) ###human: What are the lowest points with a Chassis of zakspeed 841, and a Year smaller than 1985? ###assistant: SELECT MIN(points) FROM table_name_32 WHERE chassis = "zakspeed 841" AND year < 1985
###context:CREATE TABLE table_name_32 (year INTEGER, tyres VARCHAR, points VARCHAR) ###human: What is the lowest year with tyres in g and less than 0 points? ###assistant: SELECT MIN(year) FROM table_name_32 WHERE tyres = "g" AND points < 0
###context:CREATE TABLE table_name_6 (year VARCHAR, engine_s_ VARCHAR) ###human: Which year has an Engine(s) of yamaha v8? ###assistant: SELECT year FROM table_name_6 WHERE engine_s_ = "yamaha v8"
###context:CREATE TABLE table_name_40 (points INTEGER, chassis VARCHAR) ###human: What are the average points with a Chassis of zakspeed 881? ###assistant: SELECT AVG(points) FROM table_name_40 WHERE chassis = "zakspeed 881"
###context:CREATE TABLE table_name_95 (league VARCHAR, venue VARCHAR) ###human: Which League has a Venue of martin luther king, jr. recreation center? ###assistant: SELECT league FROM table_name_95 WHERE venue = "martin luther king, jr. recreation center"
###context:CREATE TABLE table_name_96 (championships__years_ VARCHAR, league VARCHAR, venue VARCHAR) ###human: Which Championships (Years) have a League of milb, florida state league, and a Venue of ed smith stadium? ###assistant: SELECT championships__years_ FROM table_name_96 WHERE league = "milb, florida state league" AND venue = "ed smith stadium"
###context:CREATE TABLE table_name_11 (sport VARCHAR, league VARCHAR, venue VARCHAR) ###human: Which Sport has a League of continental basketball league, and a Venue of avalon middle school? ###assistant: SELECT sport FROM table_name_11 WHERE league = "continental basketball league" AND venue = "avalon middle school"
###context:CREATE TABLE table_name_38 (venue VARCHAR, club VARCHAR, league VARCHAR, sport VARCHAR, championships__years_ VARCHAR) ###human: Which Venue has a Sport of baseball, Championships (Years) of 0, a League of milb, florida state league, and a Club of jupiter hammerheads? ###assistant: SELECT venue FROM table_name_38 WHERE sport = "baseball" AND championships__years_ = "0" AND league = "milb, florida state league" AND club = "jupiter hammerheads"
###context:CREATE TABLE table_name_86 (club VARCHAR, league VARCHAR, venue VARCHAR) ###human: Which club has a League of american basketball association, and a Venue of tba? ###assistant: SELECT club FROM table_name_86 WHERE league = "american basketball association" AND venue = "tba"
###context:CREATE TABLE table_name_71 (area VARCHAR, name VARCHAR, years VARCHAR, decile VARCHAR) ###human: Which area has Years of 1–8, a Decile smaller than 7, and a Name of waikari school? ###assistant: SELECT area FROM table_name_71 WHERE years = "1–8" AND decile < 7 AND name = "waikari school"
###context:CREATE TABLE table_name_98 (decile INTEGER, years VARCHAR, area VARCHAR) ###human: What is the average decile with Years of 1–8, and an Area of waipara? ###assistant: SELECT AVG(decile) FROM table_name_98 WHERE years = "1–8" AND area = "waipara"
###context:CREATE TABLE table_name_9 (area VARCHAR, years VARCHAR, name VARCHAR) ###human: Which area has Years of 1–8, and a Name of broomfield school? ###assistant: SELECT area FROM table_name_9 WHERE years = "1–8" AND name = "broomfield school"
###context:CREATE TABLE table_name_40 (roll INTEGER, decile VARCHAR, name VARCHAR) ###human: What is the smallest roll with a Decile larger than 6, and a Name of broomfield school? ###assistant: SELECT MIN(roll) FROM table_name_40 WHERE decile > 6 AND name = "broomfield school"
###context:CREATE TABLE table_name_97 (name VARCHAR, roll VARCHAR) ###human: Which name has a Roll of 270? ###assistant: SELECT name FROM table_name_97 WHERE roll = 270
###context:CREATE TABLE table_name_52 (directed_by VARCHAR, written_by VARCHAR, original_airdate VARCHAR) ###human: Who directed the episode written by Dan Serafin and aired on July 23, 2008? ###assistant: SELECT directed_by FROM table_name_52 WHERE written_by = "dan serafin" AND original_airdate = "july 23, 2008"
###context:CREATE TABLE table_name_65 (title VARCHAR, original_airdate VARCHAR) ###human: What is the title of the episode originally aired on February 2, 2008? ###assistant: SELECT title FROM table_name_65 WHERE original_airdate = "february 2, 2008"
###context:CREATE TABLE table_name_2 (money_requested__Β£_ VARCHAR, entrepreneur_s_ VARCHAR) ###human: How much money did James Seddon request? ###assistant: SELECT money_requested__Β£_ FROM table_name_2 WHERE entrepreneur_s_ = "james seddon"
###context:CREATE TABLE table_name_28 (entrepreneur_s_ VARCHAR, first_aired VARCHAR) ###human: Which Entrepreneur(s) first aired on 24 August 2006? ###assistant: SELECT entrepreneur_s_ FROM table_name_28 WHERE first_aired = "24 august 2006"
###context:CREATE TABLE table_name_69 (entrepreneur_s_ VARCHAR, company_or_product_name VARCHAR) ###human: Which Entrepreneur(s) have mixalbum? ###assistant: SELECT entrepreneur_s_ FROM table_name_69 WHERE company_or_product_name = "mixalbum"
###context:CREATE TABLE table_name_78 (money_requested__Β£_ VARCHAR, entrepreneur_s_ VARCHAR) ###human: How much money did Ian Chamings request? ###assistant: SELECT money_requested__Β£_ FROM table_name_78 WHERE entrepreneur_s_ = "ian chamings"
###context:CREATE TABLE table_name_74 (investing_dragon_s_ VARCHAR, money_requested__Β£_ VARCHAR, company_or_product_name VARCHAR) ###human: Which Investing Dragon(s) requested 100,000 in money and has autosafe? ###assistant: SELECT investing_dragon_s_ FROM table_name_74 WHERE money_requested__Β£_ = "100,000" AND company_or_product_name = "autosafe"
###context:CREATE TABLE table_name_8 (height_of_bridge_structure VARCHAR, opened VARCHAR, name VARCHAR) ###human: How tall is the Anqing Bridge which opened prior to 2011? ###assistant: SELECT height_of_bridge_structure FROM table_name_8 WHERE opened < 2011 AND name = "anqing bridge"
###context:CREATE TABLE table_name_18 (location VARCHAR, name VARCHAR, type VARCHAR, opened VARCHAR) ###human: Where did the cable-stayed Badong Bridge open in 2005? ###assistant: SELECT location FROM table_name_18 WHERE type = "cable-stayed" AND opened = 2005 AND name = "badong bridge"
###context:CREATE TABLE table_name_53 (year INTEGER, performing_arts VARCHAR) ###human: Name the average year for janaprakal chandruang ###assistant: SELECT AVG(year) FROM table_name_53 WHERE performing_arts = "janaprakal chandruang"
###context:CREATE TABLE table_name_72 (literature VARCHAR, performing_arts VARCHAR) ###human: Name the literature for pradit prasarttong ###assistant: SELECT literature FROM table_name_72 WHERE performing_arts = "pradit prasarttong"
###context:CREATE TABLE table_name_43 (year INTEGER, runner_up VARCHAR) ###human: What was the first year Fabrice Soulier was a runner-up? ###assistant: SELECT MIN(year) FROM table_name_43 WHERE runner_up = "fabrice soulier"
###context:CREATE TABLE table_name_21 (entrants VARCHAR, year VARCHAR) ###human: How many entrants were there in 2011? ###assistant: SELECT COUNT(entrants) FROM table_name_21 WHERE year = 2011
###context:CREATE TABLE table_name_95 (rank VARCHAR, laps VARCHAR) ###human: What was the rank of Bobby Grim when he finished 1059 laps? ###assistant: SELECT rank FROM table_name_95 WHERE laps = 1059
###context:CREATE TABLE table_name_43 (rd VARCHAR, _time VARCHAR, opponent VARCHAR, res VARCHAR, type VARCHAR) ###human: What is the rd., time of the match with a win result, a tko type, and Carlos Molina as the opponent? ###assistant: SELECT rd, _time FROM table_name_43 WHERE res = "win" AND type = "tko" AND opponent = "carlos molina"
###context:CREATE TABLE table_name_21 (record VARCHAR, date VARCHAR) ###human: What is the record of the match on 2009-07-18? ###assistant: SELECT record FROM table_name_21 WHERE date = "2009-07-18"
###context:CREATE TABLE table_name_79 (type VARCHAR, res VARCHAR, opponent VARCHAR) ###human: What is the type of the match with a win result and Michael Gomez as the opponent? ###assistant: SELECT type FROM table_name_79 WHERE res = "win" AND opponent = "michael gomez"
###context:CREATE TABLE table_name_66 (goals VARCHAR, caps VARCHAR) ###human: What were the goals when the caps were set at 48? ###assistant: SELECT goals FROM table_name_66 WHERE caps = 48
###context:CREATE TABLE table_name_22 (caps VARCHAR, player VARCHAR) ###human: How many caps did the player Mile Sterjovski have? ###assistant: SELECT caps FROM table_name_22 WHERE player = "mile sterjovski"
###context:CREATE TABLE table_name_59 (goals VARCHAR, player VARCHAR) ###human: What are the goals of Mile Sterjovski as a player? ###assistant: SELECT goals FROM table_name_59 WHERE player = "mile sterjovski"
###context:CREATE TABLE table_name_32 (caps VARCHAR, player VARCHAR) ###human: How many caps did Mitchell Duke have overall? ###assistant: SELECT COUNT(caps) FROM table_name_32 WHERE player = "mitchell duke"
###context:CREATE TABLE table_name_83 (opponent VARCHAR, date VARCHAR) ###human: Which opponent has a Date of 16 february 2003? ###assistant: SELECT opponent FROM table_name_83 WHERE date = "16 february 2003"
###context:CREATE TABLE table_name_61 (date VARCHAR, venue VARCHAR, opponent VARCHAR) ###human: Which date has an A venue with an Opponent of stoke city? ###assistant: SELECT date FROM table_name_61 WHERE venue = "a" AND opponent = "stoke city"
###context:CREATE TABLE table_name_51 (opponent VARCHAR, round VARCHAR) ###human: Which opponent has a Round of r5? ###assistant: SELECT opponent FROM table_name_51 WHERE round = "r5"
###context:CREATE TABLE table_name_41 (scorers VARCHAR, venue VARCHAR, opponent VARCHAR) ###human: Which Scorers have a Venue of A, and an Opponent of arsenal? ###assistant: SELECT scorers FROM table_name_41 WHERE venue = "a" AND opponent = "arsenal"
###context:CREATE TABLE table_name_22 (opponent VARCHAR, round VARCHAR) ###human: Which Opponent has a Round of qf replay? ###assistant: SELECT opponent FROM table_name_22 WHERE round = "qf replay"
###context:CREATE TABLE table_name_84 (loss VARCHAR, date VARCHAR) ###human: Who took the loss on the April 6 game? ###assistant: SELECT loss FROM table_name_84 WHERE date = "april 6"
###context:CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR) ###human: What was the record after the April 15 game? ###assistant: SELECT record FROM table_name_75 WHERE date = "april 15"
###context:CREATE TABLE table_name_38 (opponent VARCHAR, record VARCHAR) ###human: Who was the opponent that led to a 10-13 record? ###assistant: SELECT opponent FROM table_name_38 WHERE record = "10-13"
###context:CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR) ###human: What is the record after the April 6 game? ###assistant: SELECT record FROM table_name_14 WHERE date = "april 6"
###context:CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR) ###human: What was the score for the April 12 game? ###assistant: SELECT score FROM table_name_73 WHERE date = "april 12"
###context:CREATE TABLE table_name_85 (wins INTEGER, goals_for VARCHAR, losses VARCHAR) ###human: What team has the most wins with at least 18 goals and less than 5 losses? ###assistant: SELECT MAX(wins) FROM table_name_85 WHERE goals_for = 18 AND losses < 5
###context:CREATE TABLE table_name_12 (losses VARCHAR, team VARCHAR, goals_for VARCHAR) ###human: How many times has the Cornwall HC team, that has scored more than 18 goals, lost ? ###assistant: SELECT COUNT(losses) FROM table_name_12 WHERE team = "cornwall hc" AND goals_for > 18
###context:CREATE TABLE table_name_19 (number_in_series INTEGER, production_code VARCHAR) ###human: What is the series number that has a production code of 50021–50025? ###assistant: SELECT MAX(number_in_series) FROM table_name_19 WHERE production_code = "50021–50025"
###context:CREATE TABLE table_name_88 (county_team VARCHAR, player VARCHAR) ###human: Which county team has jimmy finn as the player? ###assistant: SELECT county_team FROM table_name_88 WHERE player = "jimmy finn"
###context:CREATE TABLE table_name_93 (team_number VARCHAR, player VARCHAR) ###human: How many team numbers have john keane as the player? ###assistant: SELECT COUNT(team_number) FROM table_name_93 WHERE player = "john keane"
###context:CREATE TABLE table_name_15 (position VARCHAR, player VARCHAR) ###human: Which position has john keane as the player? ###assistant: SELECT position FROM table_name_15 WHERE player = "john keane"
###context:CREATE TABLE table_name_61 (loss VARCHAR, record VARCHAR) ###human: What was the loss of the game when the record was 27-17? ###assistant: SELECT loss FROM table_name_61 WHERE record = "27-17"
###context:CREATE TABLE table_name_48 (goals_against INTEGER, wins VARCHAR, draws VARCHAR) ###human: What are the smallest goals with wins smaller than 16, and a Draws larger than 14? ###assistant: SELECT MIN(goals_against) FROM table_name_48 WHERE wins < 16 AND draws > 14
###context:CREATE TABLE table_name_86 (wins INTEGER, played VARCHAR, points VARCHAR, goals_against VARCHAR) ###human: What are the average wins with a Points of 42-2, and Goals against of 67, and Played smaller than 44? ###assistant: SELECT AVG(wins) FROM table_name_86 WHERE points = "42-2" AND goals_against = 67 AND played < 44
###context:CREATE TABLE table_name_59 (wins INTEGER, club VARCHAR, goals_for VARCHAR) ###human: Which average wins have a Club of barcelona atlètic, and Goals for larger than 56? ###assistant: SELECT AVG(wins) FROM table_name_59 WHERE club = "barcelona atlètic" AND goals_for > 56
###context:CREATE TABLE table_name_63 (position INTEGER, wins VARCHAR, goals_against VARCHAR, points VARCHAR) ###human: Which lowest position has goals against smaller than 78, Points of 42-2, and Wins larger than 15? ###assistant: SELECT MIN(position) FROM table_name_63 WHERE goals_against < 78 AND points = "42-2" AND wins > 15
###context:CREATE TABLE table_name_6 (played INTEGER, position VARCHAR, goals_against VARCHAR) ###human: Which lowest played has a Position of 2, and Goals against larger than 53? ###assistant: SELECT MIN(played) FROM table_name_6 WHERE position = 2 AND goals_against > 53
###context:CREATE TABLE table_name_99 (goal_difference INTEGER, played INTEGER) ###human: How many goal differences have Played larger than 44? ###assistant: SELECT SUM(goal_difference) FROM table_name_99 WHERE played > 44
###context:CREATE TABLE table_name_72 (year INTEGER, venue VARCHAR) ###human: What year was the race in Vienna, Austria? ###assistant: SELECT MIN(year) FROM table_name_72 WHERE venue = "vienna, austria"
###context:CREATE TABLE table_name_80 (extra VARCHAR, year VARCHAR, result VARCHAR) ###human: What event (Extra) in 2002 did the competitor compete in and place 8th? ###assistant: SELECT extra FROM table_name_80 WHERE year = 2002 AND result = "8th"
###context:CREATE TABLE table_name_29 (venue VARCHAR, tournament VARCHAR) ###human: Where was the Olympic Games held? ###assistant: SELECT venue FROM table_name_29 WHERE tournament = "olympic games"
###context:CREATE TABLE table_name_82 (try_bonus VARCHAR, points_for VARCHAR) ###human: That is the value for Try bonus when the value for Points is 418? ###assistant: SELECT try_bonus FROM table_name_82 WHERE points_for = "418"
###context:CREATE TABLE table_name_44 (club VARCHAR, played VARCHAR, tries_for VARCHAR) ###human: What is the Club, when the value for Played is 22, and when the value for Tries is 41? ###assistant: SELECT club FROM table_name_44 WHERE played = "22" AND tries_for = "41"
###context:CREATE TABLE table_name_12 (drawn VARCHAR, losing_bonus VARCHAR) ###human: What is the value for Drawn, when the value for Losing bonus is 6? ###assistant: SELECT drawn FROM table_name_12 WHERE losing_bonus = "6"
###context:CREATE TABLE table_name_35 (lost VARCHAR, try_bonus VARCHAR, losing_bonus VARCHAR) ###human: What is the value for Lost, when the value for Try bonus is 2, and when the value for Losing bonus is 4? ###assistant: SELECT lost FROM table_name_35 WHERE try_bonus = "2" AND losing_bonus = "4"
###context:CREATE TABLE table_name_61 (losing_bonus VARCHAR, points VARCHAR) ###human: What is the Losing bonus, when the value for Points is 43? ###assistant: SELECT losing_bonus FROM table_name_61 WHERE points = "43"
###context:CREATE TABLE table_name_8 (club VARCHAR, lost VARCHAR, tries_for VARCHAR) ###human: What is the Club, when the value for Lost is 9, and when the value for Tries is 55? ###assistant: SELECT club FROM table_name_8 WHERE lost = "9" AND tries_for = "55"
###context:CREATE TABLE table_name_65 (drawn INTEGER, nationality VARCHAR, games VARCHAR) ###human: What is the largest draw with 37 games from England? ###assistant: SELECT MAX(drawn) FROM table_name_65 WHERE nationality = "england" AND games = 37
###context:CREATE TABLE table_name_2 (drawn VARCHAR, cambridge_united_career VARCHAR, lost VARCHAR) ###human: How many draws have a Cambridge United career of 2008–2009 and less than 13 losses? ###assistant: SELECT COUNT(drawn) FROM table_name_2 WHERE cambridge_united_career = "2008–2009" AND lost < 13
###context:CREATE TABLE table_name_66 (record VARCHAR, score VARCHAR) ###human: What was the record at the game when the score was 1–0? ###assistant: SELECT record FROM table_name_66 WHERE score = "1–0"
###context:CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR) ###human: What was the score of the game when the record was 19–13–3? ###assistant: SELECT score FROM table_name_92 WHERE record = "19–13–3"
###context:CREATE TABLE table_name_16 (visitor VARCHAR, score VARCHAR) ###human: Who was the visiting team when the score was 1–3? ###assistant: SELECT visitor FROM table_name_16 WHERE score = "1–3"
###context:CREATE TABLE table_name_52 (home VARCHAR, record VARCHAR) ###human: Who was the home team when there was a record of 20–13–3? ###assistant: SELECT home FROM table_name_52 WHERE record = "20–13–3"
###context:CREATE TABLE table_name_60 (date VARCHAR, record VARCHAR) ###human: What was the date of the game with the record of 18–10–2? ###assistant: SELECT date FROM table_name_60 WHERE record = "18–10–2"
###context:CREATE TABLE table_name_30 (attendance INTEGER, visitor VARCHAR) ###human: Visitor of minnesota has what average attendance? ###assistant: SELECT AVG(attendance) FROM table_name_30 WHERE visitor = "minnesota"
###context:CREATE TABLE table_name_9 (visitor VARCHAR, date VARCHAR) ###human: Date of december 29 has what visitor? ###assistant: SELECT visitor FROM table_name_9 WHERE date = "december 29"
###context:CREATE TABLE table_name_61 (attendance VARCHAR, score VARCHAR) ###human: Score of 2 – 3 has what attendance? ###assistant: SELECT attendance FROM table_name_61 WHERE score = "2 – 3"
###context:CREATE TABLE table_name_35 (attendance INTEGER, record VARCHAR) ###human: With a record of 48-51 for the team, the lowest 2005 attendance was listed as how many? ###assistant: SELECT MIN(attendance) FROM table_name_35 WHERE record = "48-51"
###context:CREATE TABLE table_name_36 (attendance INTEGER, loss VARCHAR) ###human: What would be the lowest Attendance that also showed a loss of Obermueller (1-2)? ###assistant: SELECT MIN(attendance) FROM table_name_36 WHERE loss = "obermueller (1-2)"
###context:CREATE TABLE table_name_61 (stadium VARCHAR, date VARCHAR) ###human: What was the stadium for the game held on October 31? ###assistant: SELECT stadium FROM table_name_61 WHERE date = "october 31"
###context:CREATE TABLE table_name_81 (week VARCHAR, stadium VARCHAR) ###human: How many weeks in total were games played at Cleveland Browns Stadium? ###assistant: SELECT COUNT(week) FROM table_name_81 WHERE stadium = "cleveland browns stadium"
###context:CREATE TABLE table_name_97 (surface VARCHAR, date VARCHAR) ###human: What was the surface on 23 October 2011? ###assistant: SELECT surface FROM table_name_97 WHERE date = "23 october 2011"
###context:CREATE TABLE table_name_27 (coach VARCHAR, losses VARCHAR) ###human: Which Notre Dame coach lost 15 games? ###assistant: SELECT coach FROM table_name_27 WHERE losses = 15
###context:CREATE TABLE table_name_43 (losses INTEGER, years VARCHAR) ###human: How many losses did Notre Dame have in 1904? ###assistant: SELECT AVG(losses) FROM table_name_43 WHERE years = "1904"
###context:CREATE TABLE table_name_86 (pct VARCHAR, years VARCHAR) ###human: What was the winning percent of Notre Dame in 1905? ###assistant: SELECT pct FROM table_name_86 WHERE years = "1905"
###context:CREATE TABLE table_name_22 (home_captain VARCHAR, venue VARCHAR) ###human: Who is the home captain that played at Edgbaston? ###assistant: SELECT home_captain FROM table_name_22 WHERE venue = "edgbaston"
###context:CREATE TABLE table_name_41 (home_captain VARCHAR, venue VARCHAR) ###human: Who is the home captain that played at Edgbaston? ###assistant: SELECT home_captain FROM table_name_41 WHERE venue = "edgbaston"
###context:CREATE TABLE table_name_24 (result VARCHAR, home_captain VARCHAR, date VARCHAR) ###human: For the matches with home captain Graham Gooch played on the dates 3,4,5,6,7 June 1993, what was the result? ###assistant: SELECT result FROM table_name_24 WHERE home_captain = "graham gooch" AND date = "3,4,5,6,7 june 1993"
###context:CREATE TABLE table_name_32 (venue VARCHAR, date VARCHAR) ###human: What was the venue for the matches played on the dates 3,4,5,6,7 June 1993? ###assistant: SELECT venue FROM table_name_32 WHERE date = "3,4,5,6,7 june 1993"
###context:CREATE TABLE table_name_81 (away_captain VARCHAR, venue VARCHAR) ###human: Who was the away captain for matches played at Trent Bridge? ###assistant: SELECT away_captain FROM table_name_81 WHERE venue = "trent bridge"
###context:CREATE TABLE table_name_32 (rank VARCHAR, club_clubs VARCHAR) ###human: Which rank is Hawthorn? ###assistant: SELECT rank FROM table_name_32 WHERE club_clubs = "hawthorn"