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