training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_81 (away_team VARCHAR, venue VARCHAR) ###human: Who was the away team at junction oval? ###assistant: SELECT away_team FROM table_name_81 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_17 (home_team VARCHAR, venue VARCHAR) ###human: What was the home team's score at junction oval? ###assistant: SELECT home_team AS score FROM table_name_17 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_20 (venue VARCHAR, away_team VARCHAR) ###human: What venue was essendon the away team? ###assistant: SELECT venue FROM table_name_20 WHERE away_team = "essendon"
###context:CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR) ###human: Who is the home team at kardinia park? ###assistant: SELECT home_team FROM table_name_16 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_30 (storage_stability INTEGER, field_stability VARCHAR, toxicity_as_blood_agent VARCHAR, agent VARCHAR) ###human: What is the storage stability of Arsine with a toxicity of 8, and field stability less than 5? ###assistant: SELECT MIN(storage_stability) FROM table_name_30 WHERE toxicity_as_blood_agent > 8 AND agent = "arsine" AND field_stability < 5
###context:CREATE TABLE table_name_5 (field_stability VARCHAR, agent VARCHAR, effectiveness_as_blood_agent VARCHAR) ###human: What is the field stability of Cyanogen Bromide that has an effectiveness of 9? ###assistant: SELECT COUNT(field_stability) FROM table_name_5 WHERE agent = "cyanogen bromide" AND effectiveness_as_blood_agent > 9
###context:CREATE TABLE table_name_47 (home_team VARCHAR, venue VARCHAR) ###human: When the Venue is mcg what is the Home team? ###assistant: SELECT home_team FROM table_name_47 WHERE venue = "mcg"
###context:CREATE TABLE table_name_84 (home_team VARCHAR, away_team VARCHAR) ###human: When the Away team was hawthorn, what's the Home team? ###assistant: SELECT home_team FROM table_name_84 WHERE away_team = "hawthorn"
###context:CREATE TABLE table_name_49 (total__kg_ VARCHAR, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ###human: What is the total associated with a Clean & jerk of 135, and a Snatch of 115? ###assistant: SELECT total__kg_ FROM table_name_49 WHERE clean_ & _jerk = 135 AND snatch = 115
###context:CREATE TABLE table_name_37 (bodyweight INTEGER, total__kg_ VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ###human: What is the highest Bodyweight associated with a Clean & jerk larger than 120, and a Total (kg) of 245? ###assistant: SELECT MAX(bodyweight) FROM table_name_37 WHERE clean_ & _jerk > 120 AND total__kg_ = 245
###context:CREATE TABLE table_name_26 (total__kg_ INTEGER, snatch VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ###human: What is the sum Total (kg) associated with a Snatch less than 110, and a Clean & jerk larger than 120? ###assistant: SELECT SUM(total__kg_) FROM table_name_26 WHERE snatch < 110 AND clean_ & _jerk > 120
###context:CREATE TABLE table_name_48 (snatch VARCHAR, total__kg_ VARCHAR, bodyweight VARCHAR, clean_ VARCHAR, _jerk VARCHAR) ###human: How many people have a Clean & jerk smaller than 142.5, a Bodyweight smaller than 55.58, and a Total (kg) larger than 210? ###assistant: SELECT COUNT(snatch) FROM table_name_48 WHERE clean_ & _jerk < 142.5 AND bodyweight < 55.58 AND total__kg_ > 210
###context:CREATE TABLE table_name_28 (object_type VARCHAR, apparent_magnitude VARCHAR, declination___j2000__ VARCHAR) ###human: Tell me the object type which has an apparent magnitude more than 10.6 and declination of °44′07″ ###assistant: SELECT object_type FROM table_name_28 WHERE apparent_magnitude > 10.6 AND declination___j2000__ = "°44′07″"
###context:CREATE TABLE table_name_12 (declination___j2000__ VARCHAR, apparent_magnitude VARCHAR, ngc_number VARCHAR) ###human: Tell me the declination with apparent magnitude more than 10.4 and NGC number of 5112 ###assistant: SELECT declination___j2000__ FROM table_name_12 WHERE apparent_magnitude > 10.4 AND ngc_number = 5112
###context:CREATE TABLE table_name_33 (event VARCHAR, method VARCHAR, opponent VARCHAR) ###human: Which event has a Method of submission (triangle choke), and an Opponent of thiago tavares? ###assistant: SELECT event FROM table_name_33 WHERE method = "submission (triangle choke)" AND opponent = "thiago tavares"
###context:CREATE TABLE table_name_32 (res VARCHAR, round VARCHAR, opponent VARCHAR) ###human: What is the result with a Round of 3, and an Opponent of keith wisniewski? ###assistant: SELECT res FROM table_name_32 WHERE round = "3" AND opponent = "keith wisniewski"
###context:CREATE TABLE table_name_11 (time VARCHAR, opponent VARCHAR) ###human: Which time has eddie miller as opponent? ###assistant: SELECT time FROM table_name_11 WHERE opponent = "eddie miller"
###context:CREATE TABLE table_name_2 (rd__number INTEGER, player VARCHAR, pick__number VARCHAR) ###human: What's the average Rd number for dane jackson with a pick number over 44? ###assistant: SELECT AVG(rd__number) FROM table_name_2 WHERE player = "dane jackson" AND pick__number > 44
###context:CREATE TABLE table_name_34 (pick__number INTEGER, player VARCHAR, rd__number VARCHAR) ###human: What's the largest pick number for corrie d'alessio with a rd number over 6? ###assistant: SELECT MAX(pick__number) FROM table_name_34 WHERE player = "corrie d'alessio" AND rd__number > 6
###context:CREATE TABLE table_name_29 (visitor VARCHAR, score VARCHAR) ###human: Who was the visiting team at the Cavaliers game that had a score of 121–85? ###assistant: SELECT visitor FROM table_name_29 WHERE score = "121–85"
###context:CREATE TABLE table_name_45 (date VARCHAR, home_team VARCHAR) ###human: On what date did Melbourne play as the home team? ###assistant: SELECT date FROM table_name_45 WHERE home_team = "melbourne"
###context:CREATE TABLE table_name_52 (home_team VARCHAR, venue VARCHAR) ###human: What team owns the Venue of western oval? ###assistant: SELECT home_team FROM table_name_52 WHERE venue = "western oval"
###context:CREATE TABLE table_name_1 (home_team VARCHAR, venue VARCHAR) ###human: What did the Victoria park home team score? ###assistant: SELECT home_team AS score FROM table_name_1 WHERE venue = "victoria park"
###context:CREATE TABLE table_name_98 (crowd VARCHAR, home_team VARCHAR) ###human: What was the crowd size when geelong played home? ###assistant: SELECT COUNT(crowd) FROM table_name_98 WHERE home_team = "geelong"
###context:CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, series VARCHAR) ###human: Name the most that attendend when the venue was td banknorth garden and the series of montreal leads 3-1 ###assistant: SELECT MAX(attendance) FROM table_name_99 WHERE venue = "td banknorth garden" AND series = "montreal leads 3-1"
###context:CREATE TABLE table_name_14 (decision VARCHAR, visitor VARCHAR) ###human: Name the decision for boston bruins visitor ###assistant: SELECT decision FROM table_name_14 WHERE visitor = "boston bruins"
###context:CREATE TABLE table_name_67 (total INTEGER, nation VARCHAR, gold VARCHAR) ###human: What is the average total medals Egypt, who has less than 2 gold, has? ###assistant: SELECT AVG(total) FROM table_name_67 WHERE nation = "egypt" AND gold < 2
###context:CREATE TABLE table_name_49 (gold VARCHAR, nation VARCHAR, silver VARCHAR) ###human: What is the total number of gold medals Egypt, who has less than 0 silver, has? ###assistant: SELECT COUNT(gold) FROM table_name_49 WHERE nation = "egypt" AND silver < 0
###context:CREATE TABLE table_name_76 (gold INTEGER, silver VARCHAR, bronze VARCHAR) ###human: What is the highest gold a team with less than 3 silver and more than 5 bronze medals has? ###assistant: SELECT MAX(gold) FROM table_name_76 WHERE silver < 3 AND bronze > 5
###context:CREATE TABLE table_name_2 (rank VARCHAR, bronze VARCHAR, gold VARCHAR) ###human: What is the rank of the team with 1 bronze and 0 gold medals? ###assistant: SELECT rank FROM table_name_2 WHERE bronze = 1 AND gold = 0
###context:CREATE TABLE table_name_17 (_percentage_of_pop INTEGER, country__or_dependent_territory_ VARCHAR, average_relative_annual_growth___percentage_ VARCHAR) ###human: What is the average % of population Tunisia, which has an average relative annual growth smaller than 1.03? ###assistant: SELECT AVG(_percentage_of_pop) FROM table_name_17 WHERE country__or_dependent_territory_ = "tunisia" AND average_relative_annual_growth___percentage_ < 1.03
###context:CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR) ###human: Who was the home team at Kardinia Park? ###assistant: SELECT home_team FROM table_name_45 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_15 (home_team VARCHAR) ###human: What was Footscray's score as the home team? ###assistant: SELECT home_team AS score FROM table_name_15 WHERE home_team = "footscray"
###context:CREATE TABLE table_name_17 (date VARCHAR, home VARCHAR) ###human: On what date was there a competition in which the home team was the Suns? ###assistant: SELECT date FROM table_name_17 WHERE home = "suns"
###context:CREATE TABLE table_name_41 (leading_scorer VARCHAR, visitor VARCHAR) ###human: In the competition in which the visiting team was the Suns, who was the leading scorer? ###assistant: SELECT leading_scorer FROM table_name_41 WHERE visitor = "suns"
###context:CREATE TABLE table_name_11 (record VARCHAR, home VARCHAR) ###human: What was the record in the competition in which the home team was the Mavericks? ###assistant: SELECT record FROM table_name_11 WHERE home = "mavericks"
###context:CREATE TABLE table_name_33 (year INTEGER, movie VARCHAR) ###human: What's the average year a Rangam movie came out? ###assistant: SELECT AVG(year) FROM table_name_33 WHERE movie = "rangam"
###context:CREATE TABLE table_name_84 (song_title VARCHAR, movie VARCHAR) ###human: What was the name of the song in Amma Cheppindi? ###assistant: SELECT song_title FROM table_name_84 WHERE movie = "amma cheppindi"
###context:CREATE TABLE table_name_12 (year INTEGER, movie VARCHAR) ###human: What was the average year that Thuppakki movies came out? ###assistant: SELECT AVG(year) FROM table_name_12 WHERE movie = "thuppakki"
###context:CREATE TABLE table_name_89 (games_played INTEGER, goals_scored VARCHAR) ###human: How many games had 2 goals scored? ###assistant: SELECT SUM(games_played) FROM table_name_89 WHERE goals_scored = "2"
###context:CREATE TABLE table_name_74 (result VARCHAR, week VARCHAR) ###human: What was the result week 11? ###assistant: SELECT result FROM table_name_74 WHERE week = 11
###context:CREATE TABLE table_name_21 (democratic_votes VARCHAR, other_votes VARCHAR, _percentage_of_r_votes VARCHAR) ###human: Name the total number of democratic votes when the other votes are less than 18 and the percentage of R votes are 52.63% and votes since 1856 less than 38 ###assistant: SELECT COUNT(democratic_votes) FROM table_name_21 WHERE other_votes < 18 AND _percentage_of_r_votes = "52.63% ANd_votes_since_1856 < 38"
###context:CREATE TABLE table_name_14 (date VARCHAR, opponent VARCHAR) ###human: On what Date was the Opponent Panathinaikos? ###assistant: SELECT date FROM table_name_14 WHERE opponent = "panathinaikos"
###context:CREATE TABLE table_name_57 (crowd INTEGER, home_team VARCHAR) ###human: How many people attended games with st kilda as the home side? ###assistant: SELECT SUM(crowd) FROM table_name_57 WHERE home_team = "st kilda"
###context:CREATE TABLE table_name_32 (home_team VARCHAR, crowd INTEGER) ###human: Who is the home team when the crowd is over 32,485? ###assistant: SELECT home_team FROM table_name_32 WHERE crowd > 32 OFFSET 485
###context:CREATE TABLE table_name_40 (floors INTEGER, city VARCHAR, rank VARCHAR) ###human: What is the average number of floors for buildings in mecca ranked above 12? ###assistant: SELECT AVG(floors) FROM table_name_40 WHERE city = "mecca" AND rank < 12
###context:CREATE TABLE table_name_87 (city VARCHAR, rank VARCHAR, name VARCHAR) ###human: What city is the lamar tower 1, ranked above 5? ###assistant: SELECT city FROM table_name_87 WHERE rank < 5 AND name = "lamar tower 1"
###context:CREATE TABLE table_name_33 (city VARCHAR, floors INTEGER) ###human: What city has a building with over 57 floors? ###assistant: SELECT city FROM table_name_33 WHERE floors > 57
###context:CREATE TABLE table_name_32 (laps VARCHAR, driver VARCHAR) ###human: How many laps did antônio pizzonia do? ###assistant: SELECT COUNT(laps) FROM table_name_32 WHERE driver = "antônio pizzonia"
###context:CREATE TABLE table_name_99 (constructor VARCHAR, time_retired VARCHAR) ###human: What is the constructor for time/retired of handling? ###assistant: SELECT constructor FROM table_name_99 WHERE time_retired = "handling"
###context:CREATE TABLE table_name_71 (away_team VARCHAR, venue VARCHAR) ###human: What was the away team's score at windy hill? ###assistant: SELECT away_team AS score FROM table_name_71 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_59 (round INTEGER, nationality VARCHAR, position VARCHAR) ###human: What is the highest round of a player from Sweden who plays right wing? ###assistant: SELECT MAX(round) FROM table_name_59 WHERE nationality = "sweden" AND position = "right wing"
###context:CREATE TABLE table_name_81 (position VARCHAR, round VARCHAR, overall VARCHAR) ###human: What is the position of a player from a round less than 4 and an overall of 17? ###assistant: SELECT position FROM table_name_81 WHERE round < 4 AND overall = "17"
###context:CREATE TABLE table_name_23 (round INTEGER, overall VARCHAR) ###human: What is the average round of a player with an overall of 138? ###assistant: SELECT AVG(round) FROM table_name_23 WHERE overall = "138"
###context:CREATE TABLE table_name_77 (player VARCHAR, nationality VARCHAR, round VARCHAR) ###human: Who is the player from Sweden from a round after 3? ###assistant: SELECT player FROM table_name_77 WHERE nationality = "sweden" AND round > 3
###context:CREATE TABLE table_name_52 (nationality VARCHAR, club_team VARCHAR) ###human: What is the nationality of a player from linköpings hc (se)? ###assistant: SELECT nationality FROM table_name_52 WHERE club_team = "linköpings hc (se)"
###context:CREATE TABLE table_name_17 (crowd VARCHAR, home_team VARCHAR) ###human: What is the crowd size for st kilda as the home team? ###assistant: SELECT crowd FROM table_name_17 WHERE home_team = "st kilda"
###context:CREATE TABLE table_name_36 (pages INTEGER, translated_title VARCHAR) ###human: I want the sum of pages for thistle among roses ###assistant: SELECT SUM(pages) FROM table_name_36 WHERE translated_title = "thistle among roses"
###context:CREATE TABLE table_name_3 (manager VARCHAR, fund VARCHAR) ###human: Who is the manager for FMC Corporation pension fund? ###assistant: SELECT manager FROM table_name_3 WHERE fund = "fmc corporation pension fund"
###context:CREATE TABLE table_name_28 (position VARCHAR, character VARCHAR) ###human: What was the position of Frank Tripp? ###assistant: SELECT position FROM table_name_28 WHERE character = "frank tripp"
###context:CREATE TABLE table_name_72 (final_episode VARCHAR, episodes_credited VARCHAR) ###human: What was the final episode credited of 187? ###assistant: SELECT final_episode FROM table_name_72 WHERE episodes_credited = 187
###context:CREATE TABLE table_name_66 (class VARCHAR, no_built VARCHAR) ###human: Which class at 55 built? ###assistant: SELECT class FROM table_name_66 WHERE no_built = 55
###context:CREATE TABLE table_name_80 (loco_nos VARCHAR, class VARCHAR) ###human: What is the Loco Nos of the e3 class? ###assistant: SELECT loco_nos FROM table_name_80 WHERE class = "e3"
###context:CREATE TABLE table_name_17 (crowd INTEGER, venue VARCHAR) ###human: How many people attended Junction Oval? ###assistant: SELECT SUM(crowd) FROM table_name_17 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_97 (home_team VARCHAR, away_team VARCHAR) ###human: What was the score of the team that played against Fitzroy? ###assistant: SELECT home_team AS score FROM table_name_97 WHERE away_team = "fitzroy"
###context:CREATE TABLE table_name_7 (stadium VARCHAR, city VARCHAR) ###human: What is the name of the stadium for the city of melfi? ###assistant: SELECT stadium FROM table_name_7 WHERE city = "melfi"
###context:CREATE TABLE table_name_96 (capacity INTEGER, stadium VARCHAR) ###human: What is the total capacity for the stadium of pasquale ianniello? ###assistant: SELECT SUM(capacity) FROM table_name_96 WHERE stadium = "pasquale ianniello"
###context:CREATE TABLE table_name_25 (city VARCHAR, airport VARCHAR) ###human: What city is Jaffna Airport in? ###assistant: SELECT city FROM table_name_25 WHERE airport = "jaffna airport"
###context:CREATE TABLE table_name_84 (city VARCHAR, icao VARCHAR) ###human: Which city has an ICAO of TBA? ###assistant: SELECT city FROM table_name_84 WHERE icao = "tba"
###context:CREATE TABLE table_name_99 (player VARCHAR, college VARCHAR) ###human: Which player went to the College of Wyoming? ###assistant: SELECT player FROM table_name_99 WHERE college = "wyoming"
###context:CREATE TABLE table_name_6 (crowd INTEGER, away_team VARCHAR) ###human: What was the smallest crowd at a game when Richmond was the away team? ###assistant: SELECT MIN(crowd) FROM table_name_6 WHERE away_team = "richmond"
###context:CREATE TABLE table_name_80 (home_team VARCHAR, crowd INTEGER) ###human: Who was the home team at the game that had a crowd of over 24,520? ###assistant: SELECT home_team FROM table_name_80 WHERE crowd > 24 OFFSET 520
###context:CREATE TABLE table_name_24 (since VARCHAR, name VARCHAR) ###human: Name the total number of since for belletti ###assistant: SELECT COUNT(since) FROM table_name_24 WHERE name = "belletti"
###context:CREATE TABLE table_name_7 (goals INTEGER, nat VARCHAR, transfer_fee VARCHAR) ###human: Name the highest goals for youth system and ita ###assistant: SELECT MAX(goals) FROM table_name_7 WHERE nat = "ita" AND transfer_fee = "youth system"
###context:CREATE TABLE table_name_84 (time_retired VARCHAR, grid VARCHAR, driver VARCHAR) ###human: What is the time/retired for eddie irvine with a grid of greater than 3? ###assistant: SELECT time_retired FROM table_name_84 WHERE grid > 3 AND driver = "eddie irvine"
###context:CREATE TABLE table_name_99 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ###human: How many laps had a grid of greater than 17 and retired due to collision? ###assistant: SELECT SUM(laps) FROM table_name_99 WHERE grid > 17 AND time_retired = "collision"
###context:CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR, gold VARCHAR) ###human: How many silvers for south korea with under 1 gold medal? ###assistant: SELECT MAX(silver) FROM table_name_15 WHERE nation = "south korea" AND gold < 1
###context:CREATE TABLE table_name_25 (gold INTEGER, nation VARCHAR, total VARCHAR) ###human: How many golds for uganda with under 3 total medals? ###assistant: SELECT MAX(gold) FROM table_name_25 WHERE nation = "uganda" AND total < 3
###context:CREATE TABLE table_name_78 (bronze VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR) ###human: How many bronzes for nations ranked above 7, under 3 golds, and under 10 total medals? ###assistant: SELECT COUNT(bronze) FROM table_name_78 WHERE rank < 7 AND gold < 3 AND total < 10
###context:CREATE TABLE table_name_82 (week VARCHAR, result VARCHAR) ###human: Which week has a result showing L 24-10? ###assistant: SELECT week FROM table_name_82 WHERE result = "l 24-10"
###context:CREATE TABLE table_name_85 (week VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR) ###human: Which week has a Kickoff time of 1:00 with a record of 4-5-1? ###assistant: SELECT week FROM table_name_85 WHERE kickoff_[a_] = "1:00" AND record = "4-5-1"
###context:CREATE TABLE table_name_58 (week VARCHAR, record VARCHAR) ###human: Which week has a record of 5-7-1? ###assistant: SELECT week FROM table_name_58 WHERE record = "5-7-1"
###context:CREATE TABLE table_name_79 (opponent VARCHAR, game_site VARCHAR) ###human: Who is the opponent on the game that will be played at metropolitan stadium? ###assistant: SELECT opponent FROM table_name_79 WHERE game_site = "metropolitan stadium"
###context:CREATE TABLE table_name_85 (away_team VARCHAR, venue VARCHAR) ###human: What did the away team score at Kardinia Park? ###assistant: SELECT away_team AS score FROM table_name_85 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_38 (away_team VARCHAR, venue VARCHAR) ###human: What was the away team's score in Junction Oval? ###assistant: SELECT away_team AS score FROM table_name_38 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) ###human: What did the away team score at Moorabbin Oval? ###assistant: SELECT away_team AS score FROM table_name_24 WHERE venue = "moorabbin oval"
###context:CREATE TABLE table_name_56 (constructor VARCHAR, time_retired VARCHAR, laps VARCHAR) ###human: Who constructed the car that has a Time/Retired of engine, and over 50 laps? ###assistant: SELECT constructor FROM table_name_56 WHERE time_retired = "engine" AND laps > 50
###context:CREATE TABLE table_name_30 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR) ###human: What is the time/retired for ronnie peterson with under 75 laps and a grid under 15? ###assistant: SELECT time_retired FROM table_name_30 WHERE laps < 75 AND grid < 15 AND driver = "ronnie peterson"
###context:CREATE TABLE table_name_74 (location VARCHAR, owgr_points VARCHAR, winner VARCHAR) ###human: What is the location of the tournament with more than 6 OWGR points and Ryu Hyun-Woo as the winner? ###assistant: SELECT location FROM table_name_74 WHERE owgr_points > 6 AND winner = "ryu hyun-woo"
###context:CREATE TABLE table_name_24 (away_team VARCHAR, venue VARCHAR) ###human: Who was the away team at Arden Street Oval? ###assistant: SELECT away_team FROM table_name_24 WHERE venue = "arden street oval"
###context:CREATE TABLE table_name_10 (team VARCHAR, assists VARCHAR, rank VARCHAR) ###human: I want the team with assists greater than 118 and rank less than 2 ###assistant: SELECT team FROM table_name_10 WHERE assists > 118 AND rank < 2
###context:CREATE TABLE table_name_25 (region VARCHAR, rank VARCHAR) ###human: What region has a 5 rank? ###assistant: SELECT region FROM table_name_25 WHERE rank = 5
###context:CREATE TABLE table_name_29 (mountain_peak VARCHAR, mountain_range VARCHAR) ###human: Which mountain peak has spanish peaks? ###assistant: SELECT mountain_peak FROM table_name_29 WHERE mountain_range = "spanish peaks"
###context:CREATE TABLE table_name_83 (date VARCHAR, home_team VARCHAR) ###human: What date did Essendon play as the home team? ###assistant: SELECT date FROM table_name_83 WHERE home_team = "essendon"
###context:CREATE TABLE table_name_27 (crowd INTEGER, venue VARCHAR) ###human: What was the attendance at Windy Hill? ###assistant: SELECT MAX(crowd) FROM table_name_27 WHERE venue = "windy hill"
###context:CREATE TABLE table_name_83 (crowd INTEGER, venue VARCHAR) ###human: What was the smallest crowd of vfl park? ###assistant: SELECT MIN(crowd) FROM table_name_83 WHERE venue = "vfl park"
###context:CREATE TABLE table_name_40 (away_team VARCHAR, venue VARCHAR) ###human: What was the away team score at kardinia park? ###assistant: SELECT away_team AS score FROM table_name_40 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_63 (away_team VARCHAR, home_team VARCHAR) ###human: Who was the away team at the home game of north melbourne? ###assistant: SELECT away_team FROM table_name_63 WHERE home_team = "north melbourne"
###context:CREATE TABLE table_name_27 (yards__red_tees_ INTEGER, hole VARCHAR, par__white_tees_ VARCHAR) ###human: What is the average number of yards on a red tee that has a hole of 1 and a par above 4? ###assistant: SELECT AVG(yards__red_tees_) FROM table_name_27 WHERE hole = "1" AND par__white_tees_ > 4
###context:CREATE TABLE table_name_9 (bronze VARCHAR, nation VARCHAR) ###human: How many bronzes did netherlands win? ###assistant: SELECT bronze FROM table_name_9 WHERE nation = "netherlands"