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