question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the Guest Host for the episode on 8 june 2008?
CREATE TABLE table_name_2 (guest_host VARCHAR, air_date VARCHAR)
SELECT guest_host FROM table_name_2 WHERE air_date = "8 june 2008"
### Context: CREATE TABLE table_name_2 (guest_host VARCHAR, air_date VARCHAR) ### Question: What is the Guest Host for the episode on 8 june 2008? ### Answer: SELECT guest_host FROM table_name_2 WHERE air_date = "8 june 2008"
What is the Musical Guest (Song performed) for the episode aired on 13 july 2008?
CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR, air_date VARCHAR)
SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008"
### Context: CREATE TABLE table_name_2 (musical_guest__song_performed_ VARCHAR, air_date VARCHAR) ### Question: What is the Musical Guest (Song performed) for the episode aired on 13 july 2008? ### Answer: SELECT musical_guest__song_performed_ FROM table_name_2 WHERE air_date = "13 july 2008"
What was the score for the 2014 FIFA World Cup Qualification (UEFA)?
CREATE TABLE table_name_64 (score VARCHAR, competition VARCHAR)
SELECT score FROM table_name_64 WHERE competition = "2014 fifa world cup qualification (uefa)"
### Context: CREATE TABLE table_name_64 (score VARCHAR, competition VARCHAR) ### Question: What was the score for the 2014 FIFA World Cup Qualification (UEFA)? ### Answer: SELECT score FROM table_name_64 WHERE competition = "2014 fifa world cup qualification (uefa)"
What was the kickoff time for week 11's game?
CREATE TABLE table_name_64 (kickoff_time VARCHAR, week VARCHAR)
SELECT kickoff_time FROM table_name_64 WHERE week = 11
### Context: CREATE TABLE table_name_64 (kickoff_time VARCHAR, week VARCHAR) ### Question: What was the kickoff time for week 11's game? ### Answer: SELECT kickoff_time FROM table_name_64 WHERE week = 11
When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition?
CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR)
SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = "mark o'meara"
### Context: CREATE TABLE table_name_14 (the_tradition VARCHAR, year VARCHAR, senior_players_championship VARCHAR) ### Question: When Mark O'meara was the senior player champion in a year greater than 1998, who was the tradition? ### Answer: SELECT the_tradition FROM table_name_14 WHERE year > 1998 AND senior_players_championship = "mark o'meara"
Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987?
CREATE TABLE table_name_83 (the_tradition VARCHAR, senior_british_open VARCHAR, us_senior_open VARCHAR)
SELECT the_tradition FROM table_name_83 WHERE senior_british_open = "founded in 1987" AND us_senior_open = "roberto devicenzo"
### Context: CREATE TABLE table_name_83 (the_tradition VARCHAR, senior_british_open VARCHAR, us_senior_open VARCHAR) ### Question: Who was the tradition when Roberto Devicenzo won the U.S. Senior Open and the Senior British Open was founded in 1987? ### Answer: SELECT the_tradition FROM table_name_83 WHERE senior_british_open = "founded in 1987" AND us_senior_open = "roberto devicenzo"
Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship?
CREATE TABLE table_name_57 (senior_british_open VARCHAR, senior_pga_championship VARCHAR)
SELECT senior_british_open FROM table_name_57 WHERE senior_pga_championship = "hale irwin (3/7)"
### Context: CREATE TABLE table_name_57 (senior_british_open VARCHAR, senior_pga_championship VARCHAR) ### Question: Who won the Senior British Open when Hale Irwin (3/7) won the Senior PGA Championship? ### Answer: SELECT senior_british_open FROM table_name_57 WHERE senior_pga_championship = "hale irwin (3/7)"
When Tom Watson (5/6) won the Senior British Open who won the Senior PGA Championship?
CREATE TABLE table_name_41 (senior_pga_championship VARCHAR, senior_british_open VARCHAR)
SELECT senior_pga_championship FROM table_name_41 WHERE senior_british_open = "tom watson (5/6)"
### Context: CREATE TABLE table_name_41 (senior_pga_championship VARCHAR, senior_british_open VARCHAR) ### Question: When Tom Watson (5/6) won the Senior British Open who won the Senior PGA Championship? ### Answer: SELECT senior_pga_championship FROM table_name_41 WHERE senior_british_open = "tom watson (5/6)"
Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7?
CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR)
SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = "philadelphia eagles" AND points_against > 7
### Context: CREATE TABLE table_name_17 (week INTEGER, points_against VARCHAR, points_for VARCHAR, opponent VARCHAR) ### Question: Which Week has Points For larger than 19, and an Opponent of philadelphia eagles, and Points Against larger than 7? ### Answer: SELECT MAX(week) FROM table_name_17 WHERE points_for > 19 AND opponent = "philadelphia eagles" AND points_against > 7
Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28?
CREATE TABLE table_name_98 (attendance INTEGER, points_for VARCHAR, first_downs VARCHAR, opponent VARCHAR)
SELECT SUM(attendance) FROM table_name_98 WHERE first_downs < 26 AND opponent = "los angeles rams" AND points_for > 28
### Context: CREATE TABLE table_name_98 (attendance INTEGER, points_for VARCHAR, first_downs VARCHAR, opponent VARCHAR) ### Question: Which Attendance has a First Downs smaller than 26, an Opponent of los angeles rams, and Points For larger than 28? ### Answer: SELECT SUM(attendance) FROM table_name_98 WHERE first_downs < 26 AND opponent = "los angeles rams" AND points_for > 28
Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16?
CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR)
SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = "boston united" AND league < 16
### Context: CREATE TABLE table_name_18 (league INTEGER, fa_cup VARCHAR, club VARCHAR) ### Question: Which League Cup has a FA Cup of 5, and a Club of boston united, and a League smaller than 16? ### Answer: SELECT MAX(league) AS Cup FROM table_name_18 WHERE fa_cup = 5 AND club = "boston united" AND league < 16
How many Total that has a FA Trophy of 0 and a Player of charlie butler?
CREATE TABLE table_name_99 (total VARCHAR, fa_trophy VARCHAR, player VARCHAR)
SELECT COUNT(total) FROM table_name_99 WHERE fa_trophy = 0 AND player = "charlie butler"
### Context: CREATE TABLE table_name_99 (total VARCHAR, fa_trophy VARCHAR, player VARCHAR) ### Question: How many Total that has a FA Trophy of 0 and a Player of charlie butler? ### Answer: SELECT COUNT(total) FROM table_name_99 WHERE fa_trophy = 0 AND player = "charlie butler"
How many FA Trophy has a Player of mario walsh and a League larger than 17?
CREATE TABLE table_name_52 (fa_trophy INTEGER, player VARCHAR, league VARCHAR)
SELECT AVG(fa_trophy) FROM table_name_52 WHERE player = "mario walsh" AND league > 17
### Context: CREATE TABLE table_name_52 (fa_trophy INTEGER, player VARCHAR, league VARCHAR) ### Question: How many FA Trophy has a Player of mario walsh and a League larger than 17? ### Answer: SELECT AVG(fa_trophy) FROM table_name_52 WHERE player = "mario walsh" AND league > 17
What was the score of the winning match on Oct 28, 1962?
CREATE TABLE table_name_64 (winning_score VARCHAR, date VARCHAR)
SELECT winning_score FROM table_name_64 WHERE date = "oct 28, 1962"
### Context: CREATE TABLE table_name_64 (winning_score VARCHAR, date VARCHAR) ### Question: What was the score of the winning match on Oct 28, 1962? ### Answer: SELECT winning_score FROM table_name_64 WHERE date = "oct 28, 1962"
By how many strokes did Lema beat Jack Nicklaus?
CREATE TABLE table_name_16 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_16 WHERE runner_s__up = "jack nicklaus"
### Context: CREATE TABLE table_name_16 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: By how many strokes did Lema beat Jack Nicklaus? ### Answer: SELECT margin_of_victory FROM table_name_16 WHERE runner_s__up = "jack nicklaus"
Who was the runner-up on Jan 19, 1964?
CREATE TABLE table_name_89 (runner_s__up VARCHAR, date VARCHAR)
SELECT runner_s__up FROM table_name_89 WHERE date = "jan 19, 1964"
### Context: CREATE TABLE table_name_89 (runner_s__up VARCHAR, date VARCHAR) ### Question: Who was the runner-up on Jan 19, 1964? ### Answer: SELECT runner_s__up FROM table_name_89 WHERE date = "jan 19, 1964"
How many Rebounds did Maccabi Tel Aviv Team get after Game 6?
CREATE TABLE table_name_10 (rebounds VARCHAR, team VARCHAR, games VARCHAR)
SELECT COUNT(rebounds) FROM table_name_10 WHERE team = "maccabi tel aviv" AND games > 6
### Context: CREATE TABLE table_name_10 (rebounds VARCHAR, team VARCHAR, games VARCHAR) ### Question: How many Rebounds did Maccabi Tel Aviv Team get after Game 6? ### Answer: SELECT COUNT(rebounds) FROM table_name_10 WHERE team = "maccabi tel aviv" AND games > 6
How many Games for the player with Rebounds from Efes Pilsen?
CREATE TABLE table_name_3 (games VARCHAR, team VARCHAR)
SELECT games FROM table_name_3 WHERE team = "efes pilsen"
### Context: CREATE TABLE table_name_3 (games VARCHAR, team VARCHAR) ### Question: How many Games for the player with Rebounds from Efes Pilsen? ### Answer: SELECT games FROM table_name_3 WHERE team = "efes pilsen"
How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds?
CREATE TABLE table_name_68 (games INTEGER, team VARCHAR, rebounds VARCHAR)
SELECT SUM(games) FROM table_name_68 WHERE team = "lietuvos rytas vilnius" AND rebounds < 43
### Context: CREATE TABLE table_name_68 (games INTEGER, team VARCHAR, rebounds VARCHAR) ### Question: How many Games for the Player from Lietuvos Rytas Vilnius with less the 43 Rebounds? ### Answer: SELECT SUM(games) FROM table_name_68 WHERE team = "lietuvos rytas vilnius" AND rebounds < 43
Who is The Author of zhou clarke zhang?
CREATE TABLE table_name_56 (name VARCHAR, authors VARCHAR)
SELECT name FROM table_name_56 WHERE authors = "zhou clarke zhang"
### Context: CREATE TABLE table_name_56 (name VARCHAR, authors VARCHAR) ### Question: Who is The Author of zhou clarke zhang? ### Answer: SELECT name FROM table_name_56 WHERE authors = "zhou clarke zhang"
What is the Status of primitive confuciusornithid .?
CREATE TABLE table_name_21 (status VARCHAR, notes VARCHAR)
SELECT status FROM table_name_21 WHERE notes = "primitive confuciusornithid ."
### Context: CREATE TABLE table_name_21 (status VARCHAR, notes VARCHAR) ### Question: What is the Status of primitive confuciusornithid .? ### Answer: SELECT status FROM table_name_21 WHERE notes = "primitive confuciusornithid ."
What is the name of gao chiappe meng o'connor wang cheng liu?
CREATE TABLE table_name_99 (name VARCHAR, authors VARCHAR)
SELECT name FROM table_name_99 WHERE authors = "gao chiappe meng o'connor wang cheng liu"
### Context: CREATE TABLE table_name_99 (name VARCHAR, authors VARCHAR) ### Question: What is the name of gao chiappe meng o'connor wang cheng liu? ### Answer: SELECT name FROM table_name_99 WHERE authors = "gao chiappe meng o'connor wang cheng liu"
Where has a Name of zhongornis?
CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR)
SELECT location FROM table_name_84 WHERE name = "zhongornis"
### Context: CREATE TABLE table_name_84 (location VARCHAR, name VARCHAR) ### Question: Where has a Name of zhongornis? ### Answer: SELECT location FROM table_name_84 WHERE name = "zhongornis"
Which Notes has Authors of zhou clarke zhang?
CREATE TABLE table_name_40 (notes VARCHAR, authors VARCHAR)
SELECT notes FROM table_name_40 WHERE authors = "zhou clarke zhang"
### Context: CREATE TABLE table_name_40 (notes VARCHAR, authors VARCHAR) ### Question: Which Notes has Authors of zhou clarke zhang? ### Answer: SELECT notes FROM table_name_40 WHERE authors = "zhou clarke zhang"
What was the ranking of Beirasar Rosalía, the year they played 32 games?
CREATE TABLE table_name_6 (rank INTEGER, team VARCHAR, games VARCHAR)
SELECT MAX(rank) FROM table_name_6 WHERE team = "beirasar rosalía" AND games < 32
### Context: CREATE TABLE table_name_6 (rank INTEGER, team VARCHAR, games VARCHAR) ### Question: What was the ranking of Beirasar Rosalía, the year they played 32 games? ### Answer: SELECT MAX(rank) FROM table_name_6 WHERE team = "beirasar rosalía" AND games < 32
How many points did Antwain Barbour score in the year he played 39 games?
CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, games VARCHAR)
SELECT SUM(points) FROM table_name_12 WHERE name = "antwain barbour" AND games < 39
### Context: CREATE TABLE table_name_12 (points INTEGER, name VARCHAR, games VARCHAR) ### Question: How many points did Antwain Barbour score in the year he played 39 games? ### Answer: SELECT SUM(points) FROM table_name_12 WHERE name = "antwain barbour" AND games < 39
What team was Paolo Quinteros on?
CREATE TABLE table_name_59 (team VARCHAR, name VARCHAR)
SELECT team FROM table_name_59 WHERE name = "paolo quinteros"
### Context: CREATE TABLE table_name_59 (team VARCHAR, name VARCHAR) ### Question: What team was Paolo Quinteros on? ### Answer: SELECT team FROM table_name_59 WHERE name = "paolo quinteros"
Was the record of 8-1 (1) a win or a loss?
CREATE TABLE table_name_10 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_10 WHERE record = "8-1 (1)"
### Context: CREATE TABLE table_name_10 (res VARCHAR, record VARCHAR) ### Question: Was the record of 8-1 (1) a win or a loss? ### Answer: SELECT res FROM table_name_10 WHERE record = "8-1 (1)"
In what event was the technical decision (split) method used?
CREATE TABLE table_name_8 (event VARCHAR, method VARCHAR)
SELECT event FROM table_name_8 WHERE method = "technical decision (split)"
### Context: CREATE TABLE table_name_8 (event VARCHAR, method VARCHAR) ### Question: In what event was the technical decision (split) method used? ### Answer: SELECT event FROM table_name_8 WHERE method = "technical decision (split)"
What are the average play-offs that have an FA Cup greater than 3?
CREATE TABLE table_name_9 (play_offs INTEGER, fa_cup INTEGER)
SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 3
### Context: CREATE TABLE table_name_9 (play_offs INTEGER, fa_cup INTEGER) ### Question: What are the average play-offs that have an FA Cup greater than 3? ### Answer: SELECT AVG(play_offs) FROM table_name_9 WHERE fa_cup > 3
How many totals have a play-off less than 0?
CREATE TABLE table_name_47 (total VARCHAR, play_offs INTEGER)
SELECT COUNT(total) FROM table_name_47 WHERE play_offs < 0
### Context: CREATE TABLE table_name_47 (total VARCHAR, play_offs INTEGER) ### Question: How many totals have a play-off less than 0? ### Answer: SELECT COUNT(total) FROM table_name_47 WHERE play_offs < 0
Which league has an FA cup greater than 0, with a total greater than 21?
CREATE TABLE table_name_76 (league VARCHAR, fa_cup VARCHAR, total VARCHAR)
SELECT league FROM table_name_76 WHERE fa_cup > 0 AND total > 21
### Context: CREATE TABLE table_name_76 (league VARCHAR, fa_cup VARCHAR, total VARCHAR) ### Question: Which league has an FA cup greater than 0, with a total greater than 21? ### Answer: SELECT league FROM table_name_76 WHERE fa_cup > 0 AND total > 21
What is the highest play-offs that have stevenage borough as the club, and a total greater than 21?
CREATE TABLE table_name_64 (play_offs INTEGER, club VARCHAR, total VARCHAR)
SELECT MAX(play_offs) FROM table_name_64 WHERE club = "stevenage borough" AND total > 21
### Context: CREATE TABLE table_name_64 (play_offs INTEGER, club VARCHAR, total VARCHAR) ### Question: What is the highest play-offs that have stevenage borough as the club, and a total greater than 21? ### Answer: SELECT MAX(play_offs) FROM table_name_64 WHERE club = "stevenage borough" AND total > 21
What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon?
CREATE TABLE table_name_6 (tournament VARCHAR)
SELECT 2012 FROM table_name_6 WHERE 2003 = "2r" AND tournament = "wimbledon"
### Context: CREATE TABLE table_name_6 (tournament VARCHAR) ### Question: What is the tournament in 2012 results that has a 2003 results of 2r and played at Wimbledon? ### Answer: SELECT 2012 FROM table_name_6 WHERE 2003 = "2r" AND tournament = "wimbledon"
What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?
CREATE TABLE table_name_65 (tournament VARCHAR)
SELECT 2012 FROM table_name_65 WHERE 2013 = "2r" AND tournament = "wimbledon"
### Context: CREATE TABLE table_name_65 (tournament VARCHAR) ### Question: What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon? ### Answer: SELECT 2012 FROM table_name_65 WHERE 2013 = "2r" AND tournament = "wimbledon"
What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open?
CREATE TABLE table_name_67 (tournament VARCHAR)
SELECT 2003 FROM table_name_67 WHERE 2012 = "1r" AND 2004 = "2r" AND tournament = "australian open"
### Context: CREATE TABLE table_name_67 (tournament VARCHAR) ### Question: What is the results from 2003 that has a 2012 result of 1r and a 2004 result of 2r and from the Australian Open? ### Answer: SELECT 2003 FROM table_name_67 WHERE 2012 = "1r" AND 2004 = "2r" AND tournament = "australian open"
What is the name of the tournament that has the results of 2003 2r and 2004 1r?
CREATE TABLE table_name_25 (tournament VARCHAR)
SELECT tournament FROM table_name_25 WHERE 2003 = "2r" AND 2004 = "1r"
### Context: CREATE TABLE table_name_25 (tournament VARCHAR) ### Question: What is the name of the tournament that has the results of 2003 2r and 2004 1r? ### Answer: SELECT tournament FROM table_name_25 WHERE 2003 = "2r" AND 2004 = "1r"
What is the results in 2004 that has a 2013 result of 2r?
CREATE TABLE table_name_72 (Id VARCHAR)
SELECT 2004 FROM table_name_72 WHERE 2013 = "2r"
### Context: CREATE TABLE table_name_72 (Id VARCHAR) ### Question: What is the results in 2004 that has a 2013 result of 2r? ### Answer: SELECT 2004 FROM table_name_72 WHERE 2013 = "2r"
What is the result from 2003 from the US Open?
CREATE TABLE table_name_80 (tournament VARCHAR)
SELECT 2003 FROM table_name_80 WHERE tournament = "us open"
### Context: CREATE TABLE table_name_80 (tournament VARCHAR) ### Question: What is the result from 2003 from the US Open? ### Answer: SELECT 2003 FROM table_name_80 WHERE tournament = "us open"
What is the height of the player born on June 24, 1964, with a weight over 84 kg?
CREATE TABLE table_name_21 (height__cm_ INTEGER, weight__kg_ VARCHAR, birthdate VARCHAR)
SELECT AVG(height__cm_) FROM table_name_21 WHERE weight__kg_ > 84 AND birthdate = "june 24, 1964"
### Context: CREATE TABLE table_name_21 (height__cm_ INTEGER, weight__kg_ VARCHAR, birthdate VARCHAR) ### Question: What is the height of the player born on June 24, 1964, with a weight over 84 kg? ### Answer: SELECT AVG(height__cm_) FROM table_name_21 WHERE weight__kg_ > 84 AND birthdate = "june 24, 1964"
On what date was the player from Melrose, Massachusetts born?
CREATE TABLE table_name_54 (birthdate VARCHAR, birthplace VARCHAR)
SELECT birthdate FROM table_name_54 WHERE birthplace = "melrose, massachusetts"
### Context: CREATE TABLE table_name_54 (birthdate VARCHAR, birthplace VARCHAR) ### Question: On what date was the player from Melrose, Massachusetts born? ### Answer: SELECT birthdate FROM table_name_54 WHERE birthplace = "melrose, massachusetts"
What is Date, when Event is Billabong Pro?
CREATE TABLE table_name_34 (date VARCHAR, event VARCHAR)
SELECT date FROM table_name_34 WHERE event = "billabong pro"
### Context: CREATE TABLE table_name_34 (date VARCHAR, event VARCHAR) ### Question: What is Date, when Event is Billabong Pro? ### Answer: SELECT date FROM table_name_34 WHERE event = "billabong pro"
What is Location, when Date is December 8-December 20?
CREATE TABLE table_name_74 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_74 WHERE date = "december 8-december 20"
### Context: CREATE TABLE table_name_74 (location VARCHAR, date VARCHAR) ### Question: What is Location, when Date is December 8-December 20? ### Answer: SELECT location FROM table_name_74 WHERE date = "december 8-december 20"
What is Runner-up, when Event is Mancora Peru Classic?
CREATE TABLE table_name_87 (runner_up VARCHAR, event VARCHAR)
SELECT runner_up FROM table_name_87 WHERE event = "mancora peru classic"
### Context: CREATE TABLE table_name_87 (runner_up VARCHAR, event VARCHAR) ### Question: What is Runner-up, when Event is Mancora Peru Classic? ### Answer: SELECT runner_up FROM table_name_87 WHERE event = "mancora peru classic"
What is Event, when Date is August 20-August 27?
CREATE TABLE table_name_72 (event VARCHAR, date VARCHAR)
SELECT event FROM table_name_72 WHERE date = "august 20-august 27"
### Context: CREATE TABLE table_name_72 (event VARCHAR, date VARCHAR) ### Question: What is Event, when Date is August 20-August 27? ### Answer: SELECT event FROM table_name_72 WHERE date = "august 20-august 27"
What is Date when Runner-up is Sofía Mulánovich ( per )?
CREATE TABLE table_name_92 (date VARCHAR, runner_up VARCHAR)
SELECT date FROM table_name_92 WHERE runner_up = "sofía mulánovich ( per )"
### Context: CREATE TABLE table_name_92 (date VARCHAR, runner_up VARCHAR) ### Question: What is Date when Runner-up is Sofía Mulánovich ( per )? ### Answer: SELECT date FROM table_name_92 WHERE runner_up = "sofía mulánovich ( per )"
What is Country, when Event is Rip Curl Women's Pro?
CREATE TABLE table_name_67 (country VARCHAR, event VARCHAR)
SELECT country FROM table_name_67 WHERE event = "rip curl women's pro"
### Context: CREATE TABLE table_name_67 (country VARCHAR, event VARCHAR) ### Question: What is Country, when Event is Rip Curl Women's Pro? ### Answer: SELECT country FROM table_name_67 WHERE event = "rip curl women's pro"
What is the highest win percentage when there were 23 losses?
CREATE TABLE table_name_18 (win_percentage INTEGER, losses VARCHAR)
SELECT MAX(win_percentage) FROM table_name_18 WHERE losses = 23
### Context: CREATE TABLE table_name_18 (win_percentage INTEGER, losses VARCHAR) ### Question: What is the highest win percentage when there were 23 losses? ### Answer: SELECT MAX(win_percentage) FROM table_name_18 WHERE losses = 23
Which finish had a win percentage that was more than 0.598 and also had less than 53 wins?
CREATE TABLE table_name_41 (finish VARCHAR, win_percentage VARCHAR, wins VARCHAR)
SELECT finish FROM table_name_41 WHERE win_percentage > 0.598 AND wins < 53
### Context: CREATE TABLE table_name_41 (finish VARCHAR, win_percentage VARCHAR, wins VARCHAR) ### Question: Which finish had a win percentage that was more than 0.598 and also had less than 53 wins? ### Answer: SELECT finish FROM table_name_41 WHERE win_percentage > 0.598 AND wins < 53
What is the 2007 Team with player Deshaun Foster?
CREATE TABLE table_name_30 (player VARCHAR)
SELECT 2007 AS _team FROM table_name_30 WHERE player = "deshaun foster"
### Context: CREATE TABLE table_name_30 (player VARCHAR) ### Question: What is the 2007 Team with player Deshaun Foster? ### Answer: SELECT 2007 AS _team FROM table_name_30 WHERE player = "deshaun foster"
What is the Free Agent Type for player bryant johnson?
CREATE TABLE table_name_2 (free_agent_type VARCHAR, player VARCHAR)
SELECT free_agent_type FROM table_name_2 WHERE player = "bryant johnson"
### Context: CREATE TABLE table_name_2 (free_agent_type VARCHAR, player VARCHAR) ### Question: What is the Free Agent Type for player bryant johnson? ### Answer: SELECT free_agent_type FROM table_name_2 WHERE player = "bryant johnson"
What is the High assists with a Date that is march 31?
CREATE TABLE table_name_39 (high_assists VARCHAR, date VARCHAR)
SELECT high_assists FROM table_name_39 WHERE date = "march 31"
### Context: CREATE TABLE table_name_39 (high_assists VARCHAR, date VARCHAR) ### Question: What is the High assists with a Date that is march 31? ### Answer: SELECT high_assists FROM table_name_39 WHERE date = "march 31"
What is the Score with a Date that is march 12?
CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_93 WHERE date = "march 12"
### Context: CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR) ### Question: What is the Score with a Date that is march 12? ### Answer: SELECT score FROM table_name_93 WHERE date = "march 12"
What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2?
CREATE TABLE table_name_73 (silver INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MIN(silver) FROM table_name_73 WHERE bronze > 1 AND gold < 2 AND total < 2
### Context: CREATE TABLE table_name_73 (silver INTEGER, total VARCHAR, bronze VARCHAR, gold VARCHAR) ### Question: What is the lowest silver that has a bronze greater than 1, a gold less than 2, and a total less than 2? ### Answer: SELECT MIN(silver) FROM table_name_73 WHERE bronze > 1 AND gold < 2 AND total < 2
What average rank that has a silver less than 0?
CREATE TABLE table_name_41 (rank INTEGER, silver INTEGER)
SELECT AVG(rank) FROM table_name_41 WHERE silver < 0
### Context: CREATE TABLE table_name_41 (rank INTEGER, silver INTEGER) ### Question: What average rank that has a silver less than 0? ### Answer: SELECT AVG(rank) FROM table_name_41 WHERE silver < 0
How many silver have 4 as the total with a bronze less than 2?
CREATE TABLE table_name_42 (silver VARCHAR, total VARCHAR, bronze VARCHAR)
SELECT COUNT(silver) FROM table_name_42 WHERE total = 4 AND bronze < 2
### Context: CREATE TABLE table_name_42 (silver VARCHAR, total VARCHAR, bronze VARCHAR) ### Question: How many silver have 4 as the total with a bronze less than 2? ### Answer: SELECT COUNT(silver) FROM table_name_42 WHERE total = 4 AND bronze < 2
How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0?
CREATE TABLE table_name_6 (total INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT SUM(total) FROM table_name_6 WHERE rank > 4 AND nation = "czech republic" AND bronze > 0
### Context: CREATE TABLE table_name_6 (total INTEGER, bronze VARCHAR, rank VARCHAR, nation VARCHAR) ### Question: How many totals have a rank greater than 4, czech Republic as the nation, and a bronze greater than 0? ### Answer: SELECT SUM(total) FROM table_name_6 WHERE rank > 4 AND nation = "czech republic" AND bronze > 0
What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2?
CREATE TABLE table_name_9 (total INTEGER, bronze VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT AVG(total) FROM table_name_9 WHERE gold > 0 AND silver > 0 AND bronze > 2
### Context: CREATE TABLE table_name_9 (total INTEGER, bronze VARCHAR, gold VARCHAR, silver VARCHAR) ### Question: What average total has a gold greater than 0, and a silver greater than 0, with a bronze greater than 2? ### Answer: SELECT AVG(total) FROM table_name_9 WHERE gold > 0 AND silver > 0 AND bronze > 2
Which country has an Indigenous mining production 2006 of 0?
CREATE TABLE table_name_26 (country VARCHAR, indigenous_mining_production_2006 VARCHAR)
SELECT country FROM table_name_26 WHERE indigenous_mining_production_2006 = "0"
### Context: CREATE TABLE table_name_26 (country VARCHAR, indigenous_mining_production_2006 VARCHAR) ### Question: Which country has an Indigenous mining production 2006 of 0? ### Answer: SELECT country FROM table_name_26 WHERE indigenous_mining_production_2006 = "0"
What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation?
CREATE TABLE table_name_19 (silver INTEGER, nation VARCHAR, total VARCHAR, rank VARCHAR)
SELECT SUM(silver) FROM table_name_19 WHERE total < "6" AND rank = "6" AND nation = "bulgaria"
### Context: CREATE TABLE table_name_19 (silver INTEGER, nation VARCHAR, total VARCHAR, rank VARCHAR) ### Question: What is the sum of Silver when the total is less than 6, the rank is 6 and the Bulgaria is the nation? ### Answer: SELECT SUM(silver) FROM table_name_19 WHERE total < "6" AND rank = "6" AND nation = "bulgaria"
What nation has a bronze of 2 with a total less than 5 and rank of 6?
CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR)
SELECT nation FROM table_name_84 WHERE bronze = 2 AND total < 5 AND rank = "6"
### Context: CREATE TABLE table_name_84 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR) ### Question: What nation has a bronze of 2 with a total less than 5 and rank of 6? ### Answer: SELECT nation FROM table_name_84 WHERE bronze = 2 AND total < 5 AND rank = "6"
What is the lowest Total for rank 3 with more than 4 gold?
CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_13 WHERE rank = "3" AND gold > 4
### Context: CREATE TABLE table_name_13 (total INTEGER, rank VARCHAR, gold VARCHAR) ### Question: What is the lowest Total for rank 3 with more than 4 gold? ### Answer: SELECT MIN(total) FROM table_name_13 WHERE rank = "3" AND gold > 4
What is the lowest Total for Italy with less than 0 silver?
CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_32 WHERE nation = "italy" AND silver < 0
### Context: CREATE TABLE table_name_32 (total INTEGER, nation VARCHAR, silver VARCHAR) ### Question: What is the lowest Total for Italy with less than 0 silver? ### Answer: SELECT MIN(total) FROM table_name_32 WHERE nation = "italy" AND silver < 0
What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0?
CREATE TABLE table_name_81 (nation VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR)
SELECT nation FROM table_name_81 WHERE silver < 1 AND total = 1 AND bronze = 0
### Context: CREATE TABLE table_name_81 (nation VARCHAR, bronze VARCHAR, silver VARCHAR, total VARCHAR) ### Question: What is the Nation with less than 1 silver, and the total is 1, and bronze is less than 0? ### Answer: SELECT nation FROM table_name_81 WHERE silver < 1 AND total = 1 AND bronze = 0
What number has 2002-2003 as the season?
CREATE TABLE table_name_32 (number VARCHAR, season VARCHAR)
SELECT number FROM table_name_32 WHERE season = "2002-2003"
### Context: CREATE TABLE table_name_32 (number VARCHAR, season VARCHAR) ### Question: What number has 2002-2003 as the season? ### Answer: SELECT number FROM table_name_32 WHERE season = "2002-2003"
What position has 2008 as the season?
CREATE TABLE table_name_11 (position VARCHAR, season VARCHAR)
SELECT position FROM table_name_11 WHERE season = "2008"
### Context: CREATE TABLE table_name_11 (position VARCHAR, season VARCHAR) ### Question: What position has 2008 as the season? ### Answer: SELECT position FROM table_name_11 WHERE season = "2008"
What name has 50 as the number?
CREATE TABLE table_name_54 (name VARCHAR, number VARCHAR)
SELECT name FROM table_name_54 WHERE number = "50"
### Context: CREATE TABLE table_name_54 (name VARCHAR, number VARCHAR) ### Question: What name has 50 as the number? ### Answer: SELECT name FROM table_name_54 WHERE number = "50"
What number has 2008 as the season?
CREATE TABLE table_name_38 (number VARCHAR, season VARCHAR)
SELECT number FROM table_name_38 WHERE season = "2008"
### Context: CREATE TABLE table_name_38 (number VARCHAR, season VARCHAR) ### Question: What number has 2008 as the season? ### Answer: SELECT number FROM table_name_38 WHERE season = "2008"
What name has 8 as the number?
CREATE TABLE table_name_5 (name VARCHAR, number VARCHAR)
SELECT name FROM table_name_5 WHERE number = "8"
### Context: CREATE TABLE table_name_5 (name VARCHAR, number VARCHAR) ### Question: What name has 8 as the number? ### Answer: SELECT name FROM table_name_5 WHERE number = "8"
What position has ronjay buenafe as the name?
CREATE TABLE table_name_16 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_16 WHERE name = "ronjay buenafe"
### Context: CREATE TABLE table_name_16 (position VARCHAR, name VARCHAR) ### Question: What position has ronjay buenafe as the name? ### Answer: SELECT position FROM table_name_16 WHERE name = "ronjay buenafe"
What was the lowest long with 26 yards?
CREATE TABLE table_name_51 (long INTEGER, yards VARCHAR)
SELECT MIN(long) FROM table_name_51 WHERE yards = 26
### Context: CREATE TABLE table_name_51 (long INTEGER, yards VARCHAR) ### Question: What was the lowest long with 26 yards? ### Answer: SELECT MIN(long) FROM table_name_51 WHERE yards = 26
What was the highest average when Fuml was 0?
CREATE TABLE table_name_57 (avg INTEGER, fuml INTEGER)
SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0
### Context: CREATE TABLE table_name_57 (avg INTEGER, fuml INTEGER) ### Question: What was the highest average when Fuml was 0? ### Answer: SELECT MAX(avg) FROM table_name_57 WHERE fuml < 0
What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10?
CREATE TABLE table_name_12 (current_run_since INTEGER, last_title VARCHAR, seasons_in_esiliiga VARCHAR)
SELECT MAX(current_run_since) FROM table_name_12 WHERE last_title = "2010" AND seasons_in_esiliiga > 10
### Context: CREATE TABLE table_name_12 (current_run_since INTEGER, last_title VARCHAR, seasons_in_esiliiga VARCHAR) ### Question: What is the highest run currently since the last title in 2010, and a season in Esiliiga larger than 10? ### Answer: SELECT MAX(current_run_since) FROM table_name_12 WHERE last_title = "2010" AND seasons_in_esiliiga > 10
What is the 2012 season in Esiliiga more than 4, and more than 0 titles?
CREATE TABLE table_name_87 (seasons_in_esiliiga VARCHAR, titles VARCHAR)
SELECT 2012 FROM table_name_87 WHERE seasons_in_esiliiga > 4 AND titles > 0
### Context: CREATE TABLE table_name_87 (seasons_in_esiliiga VARCHAR, titles VARCHAR) ### Question: What is the 2012 season in Esiliiga more than 4, and more than 0 titles? ### Answer: SELECT 2012 FROM table_name_87 WHERE seasons_in_esiliiga > 4 AND titles > 0
What 20-29 was in season 2008?
CREATE TABLE table_name_69 (season VARCHAR)
SELECT 20 AS _29 FROM table_name_69 WHERE season = "2008"
### Context: CREATE TABLE table_name_69 (season VARCHAR) ### Question: What 20-29 was in season 2008? ### Answer: SELECT 20 AS _29 FROM table_name_69 WHERE season = "2008"
What were the lowest amount of points for season 1994?
CREATE TABLE table_name_33 (points INTEGER, season VARCHAR)
SELECT MIN(points) FROM table_name_33 WHERE season = "1994"
### Context: CREATE TABLE table_name_33 (points INTEGER, season VARCHAR) ### Question: What were the lowest amount of points for season 1994? ### Answer: SELECT MIN(points) FROM table_name_33 WHERE season = "1994"
Which 20-29 had a season of 1997?
CREATE TABLE table_name_11 (season VARCHAR)
SELECT 20 AS _29 FROM table_name_11 WHERE season = "1997"
### Context: CREATE TABLE table_name_11 (season VARCHAR) ### Question: Which 20-29 had a season of 1997? ### Answer: SELECT 20 AS _29 FROM table_name_11 WHERE season = "1997"
What is the Postion, when the Name is Rod Paavola?
CREATE TABLE table_name_27 (position VARCHAR, name VARCHAR)
SELECT position FROM table_name_27 WHERE name = "rod paavola"
### Context: CREATE TABLE table_name_27 (position VARCHAR, name VARCHAR) ### Question: What is the Postion, when the Name is Rod Paavola? ### Answer: SELECT position FROM table_name_27 WHERE name = "rod paavola"
What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932?
CREATE TABLE table_name_56 (jersey__number VARCHAR, position VARCHAR, birthdate VARCHAR)
SELECT COUNT(jersey__number) FROM table_name_56 WHERE position = "w" AND birthdate = "17 october 1932"
### Context: CREATE TABLE table_name_56 (jersey__number VARCHAR, position VARCHAR, birthdate VARCHAR) ### Question: What is the total number of Jersey #, when the Position is W, and when the Birthdate is 17 October 1932? ### Answer: SELECT COUNT(jersey__number) FROM table_name_56 WHERE position = "w" AND birthdate = "17 october 1932"
What is the Birthplace, when the Name is Bob Mcvey?
CREATE TABLE table_name_76 (birthplace VARCHAR, name VARCHAR)
SELECT birthplace FROM table_name_76 WHERE name = "bob mcvey"
### Context: CREATE TABLE table_name_76 (birthplace VARCHAR, name VARCHAR) ### Question: What is the Birthplace, when the Name is Bob Mcvey? ### Answer: SELECT birthplace FROM table_name_76 WHERE name = "bob mcvey"
What is the Name, when the Position is W, and when the Jersey # is 11?
CREATE TABLE table_name_73 (name VARCHAR, position VARCHAR, jersey__number VARCHAR)
SELECT name FROM table_name_73 WHERE position = "w" AND jersey__number = 11
### Context: CREATE TABLE table_name_73 (name VARCHAR, position VARCHAR, jersey__number VARCHAR) ### Question: What is the Name, when the Position is W, and when the Jersey # is 11? ### Answer: SELECT name FROM table_name_73 WHERE position = "w" AND jersey__number = 11
What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian?
CREATE TABLE table_name_13 (position VARCHAR, club_team VARCHAR, name VARCHAR)
SELECT position FROM table_name_13 WHERE club_team = "warroad lakers" AND name = "roger christian"
### Context: CREATE TABLE table_name_13 (position VARCHAR, club_team VARCHAR, name VARCHAR) ### Question: What is the Postion, when the Club/Team is Warroad Lakers, and when the Name is Roger Christian? ### Answer: SELECT position FROM table_name_13 WHERE club_team = "warroad lakers" AND name = "roger christian"
What home has 122-28 as the score?
CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_96 WHERE score = "122-28"
### Context: CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR) ### Question: What home has 122-28 as the score? ### Answer: SELECT home FROM table_name_96 WHERE score = "122-28"
What ground has etobicoke kangaroos as the home?
CREATE TABLE table_name_88 (ground VARCHAR, home VARCHAR)
SELECT ground FROM table_name_88 WHERE home = "etobicoke kangaroos"
### Context: CREATE TABLE table_name_88 (ground VARCHAR, home VARCHAR) ### Question: What ground has etobicoke kangaroos as the home? ### Answer: SELECT ground FROM table_name_88 WHERE home = "etobicoke kangaroos"
What time has humber college north as the ground, and toronto downtown dingos as the home?
CREATE TABLE table_name_58 (time VARCHAR, ground VARCHAR, home VARCHAR)
SELECT time FROM table_name_58 WHERE ground = "humber college north" AND home = "toronto downtown dingos"
### Context: CREATE TABLE table_name_58 (time VARCHAR, ground VARCHAR, home VARCHAR) ### Question: What time has humber college north as the ground, and toronto downtown dingos as the home? ### Answer: SELECT time FROM table_name_58 WHERE ground = "humber college north" AND home = "toronto downtown dingos"
What score has Toronto Eagles as the home?
CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_57 WHERE home = "toronto eagles"
### Context: CREATE TABLE table_name_57 (score VARCHAR, home VARCHAR) ### Question: What score has Toronto Eagles as the home? ### Answer: SELECT score FROM table_name_57 WHERE home = "toronto eagles"
What date has high park demons as the away?
CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR)
SELECT date FROM table_name_15 WHERE away = "high park demons"
### Context: CREATE TABLE table_name_15 (date VARCHAR, away VARCHAR) ### Question: What date has high park demons as the away? ### Answer: SELECT date FROM table_name_15 WHERE away = "high park demons"
What away has toronto downtown dingos as the home?
CREATE TABLE table_name_71 (away VARCHAR, home VARCHAR)
SELECT away FROM table_name_71 WHERE home = "toronto downtown dingos"
### Context: CREATE TABLE table_name_71 (away VARCHAR, home VARCHAR) ### Question: What away has toronto downtown dingos as the home? ### Answer: SELECT away FROM table_name_71 WHERE home = "toronto downtown dingos"
Who was the winner from the Rip Curl Pro Search?
CREATE TABLE table_name_71 (winner VARCHAR, event VARCHAR)
SELECT winner FROM table_name_71 WHERE event = "rip curl pro search"
### Context: CREATE TABLE table_name_71 (winner VARCHAR, event VARCHAR) ### Question: Who was the winner from the Rip Curl Pro Search? ### Answer: SELECT winner FROM table_name_71 WHERE event = "rip curl pro search"
What was the location of the tournament held in Spain?
CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR)
SELECT location FROM table_name_56 WHERE country = "spain"
### Context: CREATE TABLE table_name_56 (location VARCHAR, country VARCHAR) ### Question: What was the location of the tournament held in Spain? ### Answer: SELECT location FROM table_name_56 WHERE country = "spain"
What was the date of the tournament held in Indonesia?
CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR)
SELECT date FROM table_name_23 WHERE country = "indonesia"
### Context: CREATE TABLE table_name_23 (date VARCHAR, country VARCHAR) ### Question: What was the date of the tournament held in Indonesia? ### Answer: SELECT date FROM table_name_23 WHERE country = "indonesia"
What is the average Lost when the difference is - 3, and a Played is less than 10?
CREATE TABLE table_name_21 (lost INTEGER, difference VARCHAR, played VARCHAR)
SELECT AVG(lost) FROM table_name_21 WHERE difference = "- 3" AND played < 10
### Context: CREATE TABLE table_name_21 (lost INTEGER, difference VARCHAR, played VARCHAR) ### Question: What is the average Lost when the difference is - 3, and a Played is less than 10? ### Answer: SELECT AVG(lost) FROM table_name_21 WHERE difference = "- 3" AND played < 10
What is the Position when the Drawn is less than 2, with a Difference of 2?
CREATE TABLE table_name_65 (position VARCHAR, drawn VARCHAR, difference VARCHAR)
SELECT position FROM table_name_65 WHERE drawn < "2" AND difference = "2"
### Context: CREATE TABLE table_name_65 (position VARCHAR, drawn VARCHAR, difference VARCHAR) ### Question: What is the Position when the Drawn is less than 2, with a Difference of 2? ### Answer: SELECT position FROM table_name_65 WHERE drawn < "2" AND difference = "2"
What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6.
CREATE TABLE table_name_35 (against INTEGER, lost VARCHAR, drawn VARCHAR, position VARCHAR)
SELECT SUM(against) FROM table_name_35 WHERE drawn < 2 AND position > 8 AND lost > 6
### Context: CREATE TABLE table_name_35 (against INTEGER, lost VARCHAR, drawn VARCHAR, position VARCHAR) ### Question: What is the sum of Against when the drawn is less than 2, the position is more than 8, and the lost is more than 6. ### Answer: SELECT SUM(against) FROM table_name_35 WHERE drawn < 2 AND position > 8 AND lost > 6
What is the Difference with a position of less than 3, and, 17 points.
CREATE TABLE table_name_57 (difference VARCHAR, position VARCHAR, points VARCHAR)
SELECT difference FROM table_name_57 WHERE position < 3 AND points = 17
### Context: CREATE TABLE table_name_57 (difference VARCHAR, position VARCHAR, points VARCHAR) ### Question: What is the Difference with a position of less than 3, and, 17 points. ### Answer: SELECT difference FROM table_name_57 WHERE position < 3 AND points = 17
What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10?
CREATE TABLE table_name_72 (top_5 INTEGER, tournament VARCHAR, cuts_made VARCHAR)
SELECT AVG(top_5) FROM table_name_72 WHERE tournament = "u.s. open" AND cuts_made > 10
### Context: CREATE TABLE table_name_72 (top_5 INTEGER, tournament VARCHAR, cuts_made VARCHAR) ### Question: What is the average Top-5, when Tournament is U.S. Open, and when Cuts Made is greater than 10? ### Answer: SELECT AVG(top_5) FROM table_name_72 WHERE tournament = "u.s. open" AND cuts_made > 10
What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4?
CREATE TABLE table_name_80 (events INTEGER, top_10 VARCHAR, top_5 VARCHAR)
SELECT SUM(events) FROM table_name_80 WHERE top_10 = 7 AND top_5 > 4
### Context: CREATE TABLE table_name_80 (events INTEGER, top_10 VARCHAR, top_5 VARCHAR) ### Question: What is the sum of Events, when Top-10 is 7, and when Top-5 is greater than 4? ### Answer: SELECT SUM(events) FROM table_name_80 WHERE top_10 = 7 AND top_5 > 4
What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86?
CREATE TABLE table_name_68 (top_5 INTEGER, tournament VARCHAR, events VARCHAR)
SELECT SUM(top_5) FROM table_name_68 WHERE tournament = "totals" AND events > 86
### Context: CREATE TABLE table_name_68 (top_5 INTEGER, tournament VARCHAR, events VARCHAR) ### Question: What is the sum of Top-5, when Tournament is Totals, and when Events is greater than 86? ### Answer: SELECT SUM(top_5) FROM table_name_68 WHERE tournament = "totals" AND events > 86
What is the average Top-10, when Wins is less than 0?
CREATE TABLE table_name_37 (top_10 INTEGER, wins INTEGER)
SELECT AVG(top_10) FROM table_name_37 WHERE wins < 0
### Context: CREATE TABLE table_name_37 (top_10 INTEGER, wins INTEGER) ### Question: What is the average Top-10, when Wins is less than 0? ### Answer: SELECT AVG(top_10) FROM table_name_37 WHERE wins < 0
What is the total number of Top-25, when Events is greater than 86?
CREATE TABLE table_name_65 (top_25 VARCHAR, events INTEGER)
SELECT COUNT(top_25) FROM table_name_65 WHERE events > 86
### Context: CREATE TABLE table_name_65 (top_25 VARCHAR, events INTEGER) ### Question: What is the total number of Top-25, when Events is greater than 86? ### Answer: SELECT COUNT(top_25) FROM table_name_65 WHERE events > 86