question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
How many solar eclipse during June 10-11 and march 27-29 is 149?
CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
SELECT june_10_11 FROM table_25287007_2 WHERE march_27_29 = "149"
### Context: CREATE TABLE table_25287007_2 (june_10_11 VARCHAR, march_27_29 VARCHAR) ### Question: How many solar eclipse during June 10-11 and march 27-29 is 149? ### Answer: SELECT june_10_11 FROM table_25287007_2 WHERE march_27_29 = "149"
How many solar eclipse during august 21-22 and January 15-16 is 141?
CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, january_15_16 VARCHAR)
SELECT august_21_22 FROM table_25287007_2 WHERE january_15_16 = "141"
### Context: CREATE TABLE table_25287007_2 (august_21_22 VARCHAR, january_15_16 VARCHAR) ### Question: How many solar eclipse during august 21-22 and January 15-16 is 141? ### Answer: SELECT august_21_22 FROM table_25287007_2 WHERE january_15_16 = "141"
How many solar eclipse during January 15-16 and august 21-22 on august 21, 2017?
CREATE TABLE table_25287007_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
SELECT january_15_16 FROM table_25287007_2 WHERE august_21_22 = "August 21, 2017"
### Context: CREATE TABLE table_25287007_2 (january_15_16 VARCHAR, august_21_22 VARCHAR) ### Question: How many solar eclipse during January 15-16 and august 21-22 on august 21, 2017? ### Answer: SELECT january_15_16 FROM table_25287007_2 WHERE august_21_22 = "August 21, 2017"
Name the fastest lap for round 14
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = "14"
### Context: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR) ### Question: Name the fastest lap for round 14 ### Answer: SELECT COUNT(fastest_lap) FROM table_25322130_3 WHERE round = "14"
Name the winning driver for 20 april
CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR)
SELECT winning_driver FROM table_25322130_3 WHERE date = "20 April"
### Context: CREATE TABLE table_25322130_3 (winning_driver VARCHAR, date VARCHAR) ### Question: Name the winning driver for 20 april ### Answer: SELECT winning_driver FROM table_25322130_3 WHERE date = "20 April"
Name the circuit for 13 july
CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR)
SELECT circuit FROM table_25322130_3 WHERE date = "13 July"
### Context: CREATE TABLE table_25322130_3 (circuit VARCHAR, date VARCHAR) ### Question: Name the circuit for 13 july ### Answer: SELECT circuit FROM table_25322130_3 WHERE date = "13 July"
Name the fastest lap for round 3
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR)
SELECT fastest_lap FROM table_25322130_3 WHERE round = "3"
### Context: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, round VARCHAR) ### Question: Name the fastest lap for round 3 ### Answer: SELECT fastest_lap FROM table_25322130_3 WHERE round = "3"
Name the fastest lap for piquet sports and silverstone
CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR)
SELECT fastest_lap FROM table_25322130_3 WHERE winning_team = "Piquet Sports" AND circuit = "Silverstone"
### Context: CREATE TABLE table_25322130_3 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) ### Question: Name the fastest lap for piquet sports and silverstone ### Answer: SELECT fastest_lap FROM table_25322130_3 WHERE winning_team = "Piquet Sports" AND circuit = "Silverstone"
How many laps where the position is 10th and the races is smaller than 9.0?
CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR)
SELECT COUNT(f_laps) FROM table_25318033_1 WHERE position = "10th" AND races < 9.0
### Context: CREATE TABLE table_25318033_1 (f_laps VARCHAR, position VARCHAR, races VARCHAR) ### Question: How many laps where the position is 10th and the races is smaller than 9.0? ### Answer: SELECT COUNT(f_laps) FROM table_25318033_1 WHERE position = "10th" AND races < 9.0
What is the lowest amount of races?
CREATE TABLE table_25318033_1 (races INTEGER)
SELECT MIN(races) FROM table_25318033_1
### Context: CREATE TABLE table_25318033_1 (races INTEGER) ### Question: What is the lowest amount of races? ### Answer: SELECT MIN(races) FROM table_25318033_1
Which races have 137 points?
CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR)
SELECT races FROM table_25318033_1 WHERE points = "137"
### Context: CREATE TABLE table_25318033_1 (races VARCHAR, points VARCHAR) ### Question: Which races have 137 points? ### Answer: SELECT races FROM table_25318033_1 WHERE points = "137"
What team has 137 points?
CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR)
SELECT team FROM table_25318033_1 WHERE points = "137"
### Context: CREATE TABLE table_25318033_1 (team VARCHAR, points VARCHAR) ### Question: What team has 137 points? ### Answer: SELECT team FROM table_25318033_1 WHERE points = "137"
How many points were scored when the podiums is 0 and position is 10th?
CREATE TABLE table_25318033_1 (points VARCHAR, podiums VARCHAR, position VARCHAR)
SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = "10th"
### Context: CREATE TABLE table_25318033_1 (points VARCHAR, podiums VARCHAR, position VARCHAR) ### Question: How many points were scored when the podiums is 0 and position is 10th? ### Answer: SELECT points FROM table_25318033_1 WHERE podiums = 0 AND position = "10th"
What is the rate limit when the desired rate change (%) is +40.4?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR)
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.4"
### Context: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate_change___percentage_ VARCHAR) ### Question: What is the rate limit when the desired rate change (%) is +40.4? ### Answer: SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.4"
What is the rate limit when budget plans (£m) is limit agreed?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__£m_ VARCHAR)
SELECT rate_limit__p_ FROM table_25316812_1 WHERE budget_plans__£m_ = "limit agreed"
### Context: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, budget_plans__£m_ VARCHAR) ### Question: What is the rate limit when budget plans (£m) is limit agreed? ### Answer: SELECT rate_limit__p_ FROM table_25316812_1 WHERE budget_plans__£m_ = "limit agreed"
What is the rate limit when the desired rate (p) is 162?
CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate__p_ VARCHAR)
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = "162"
### Context: CREATE TABLE table_25316812_1 (rate_limit__p_ VARCHAR, desired_rate__p_ VARCHAR) ### Question: What is the rate limit when the desired rate (p) is 162? ### Answer: SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate__p_ = "162"
What is the rate change % when the rate limit is 82.86?
CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR)
SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = "82.86"
### Context: CREATE TABLE table_25316812_1 (rate_change___percentage_ VARCHAR, rate_limit__p_ VARCHAR) ### Question: What is the rate change % when the rate limit is 82.86? ### Answer: SELECT rate_change___percentage_ FROM table_25316812_1 WHERE rate_limit__p_ = "82.86"
What is the desired rate when the rate limit (p) is 50.33?
CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR)
SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = "50.33"
### Context: CREATE TABLE table_25316812_1 (desired_rate__p_ VARCHAR, rate_limit__p_ VARCHAR) ### Question: What is the desired rate when the rate limit (p) is 50.33? ### Answer: SELECT desired_rate__p_ FROM table_25316812_1 WHERE rate_limit__p_ = "50.33"
What is the authority who set the budget limit (£m) at 900?
CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR)
SELECT authority FROM table_25316812_1 WHERE budget_limit__£m_ = "900"
### Context: CREATE TABLE table_25316812_1 (authority VARCHAR, budget_limit__£m_ VARCHAR) ### Question: What is the authority who set the budget limit (£m) at 900? ### Answer: SELECT authority FROM table_25316812_1 WHERE budget_limit__£m_ = "900"
What was the highest share?
CREATE TABLE table_25304789_1 (share INTEGER)
SELECT MAX(share) FROM table_25304789_1
### Context: CREATE TABLE table_25304789_1 (share INTEGER) ### Question: What was the highest share? ### Answer: SELECT MAX(share) FROM table_25304789_1
What was the final score of the game with 7523 in attendance?
CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR)
SELECT final_score FROM table_25331766_3 WHERE attendance = 7523
### Context: CREATE TABLE table_25331766_3 (final_score VARCHAR, attendance VARCHAR) ### Question: What was the final score of the game with 7523 in attendance? ### Answer: SELECT final_score FROM table_25331766_3 WHERE attendance = 7523
What is the lowest attendance?
CREATE TABLE table_25331766_3 (attendance INTEGER)
SELECT MIN(attendance) FROM table_25331766_3
### Context: CREATE TABLE table_25331766_3 (attendance INTEGER) ### Question: What is the lowest attendance? ### Answer: SELECT MIN(attendance) FROM table_25331766_3
If the rebounds are at 87, what are the amount of steals?
CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR)
SELECT steals FROM table_25342713_5 WHERE rebounds = 87
### Context: CREATE TABLE table_25342713_5 (steals VARCHAR, rebounds VARCHAR) ### Question: If the rebounds are at 87, what are the amount of steals? ### Answer: SELECT steals FROM table_25342713_5 WHERE rebounds = 87
How many players 89 points?
CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR)
SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89
### Context: CREATE TABLE table_25342713_5 (blocks VARCHAR, points VARCHAR) ### Question: How many players 89 points? ### Answer: SELECT COUNT(blocks) FROM table_25342713_5 WHERE points = 89
If the Steals are 20, what are the blocks?
CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR)
SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20
### Context: CREATE TABLE table_25342713_5 (blocks INTEGER, steals VARCHAR) ### Question: If the Steals are 20, what are the blocks? ### Answer: SELECT MAX(blocks) FROM table_25342713_5 WHERE steals = 20
How many millions of viewers did the episode directed by Jeffrey Blitz have?
CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = "Jeffrey Blitz"
### Context: CREATE TABLE table_25341765_1 (us_viewers__million_ VARCHAR, directed_by VARCHAR) ### Question: How many millions of viewers did the episode directed by Jeffrey Blitz have? ### Answer: SELECT us_viewers__million_ FROM table_25341765_1 WHERE directed_by = "Jeffrey Blitz"
Who directed the episode that had 5.92 million viewers?
CREATE TABLE table_25341765_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ = "5.92"
### Context: CREATE TABLE table_25341765_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed the episode that had 5.92 million viewers? ### Answer: SELECT directed_by FROM table_25341765_1 WHERE us_viewers__million_ = "5.92"
What was the name of the episode Alan Yang wrote?
CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_25341765_1 WHERE written_by = "Alan Yang"
### Context: CREATE TABLE table_25341765_1 (title VARCHAR, written_by VARCHAR) ### Question: What was the name of the episode Alan Yang wrote? ### Answer: SELECT title FROM table_25341765_1 WHERE written_by = "Alan Yang"
How many episodes were directed by Michael McCullers?
CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = "Michael McCullers"
### Context: CREATE TABLE table_25341765_1 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: How many episodes were directed by Michael McCullers? ### Answer: SELECT COUNT(original_air_date) FROM table_25341765_1 WHERE directed_by = "Michael McCullers"
When 3rd is the position what is the lowest amount of points?
CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR)
SELECT MIN(points) FROM table_25352318_1 WHERE position = "3rd"
### Context: CREATE TABLE table_25352318_1 (points INTEGER, position VARCHAR) ### Question: When 3rd is the position what is the lowest amount of points? ### Answer: SELECT MIN(points) FROM table_25352318_1 WHERE position = "3rd"
When art grand prix is the team and 2010 is the season how many wins are there?
CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR)
SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = "ART Grand Prix"
### Context: CREATE TABLE table_25352318_1 (wins VARCHAR, season VARCHAR, team VARCHAR) ### Question: When art grand prix is the team and 2010 is the season how many wins are there? ### Answer: SELECT COUNT(wins) FROM table_25352318_1 WHERE season = 2010 AND team = "ART Grand Prix"
When 7th is the position and 15 is the race who is the team?
CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR)
SELECT team FROM table_25352318_1 WHERE races = 15 AND position = "7th"
### Context: CREATE TABLE table_25352318_1 (team VARCHAR, races VARCHAR, position VARCHAR) ### Question: When 7th is the position and 15 is the race who is the team? ### Answer: SELECT team FROM table_25352318_1 WHERE races = 15 AND position = "7th"
What is the lowest overall amount of poles?
CREATE TABLE table_25352318_1 (poles INTEGER)
SELECT MIN(poles) FROM table_25352318_1
### Context: CREATE TABLE table_25352318_1 (poles INTEGER) ### Question: What is the lowest overall amount of poles? ### Answer: SELECT MIN(poles) FROM table_25352318_1
When racing engineering is the team and 2012 is the team what is the position?
CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR)
SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = "Racing Engineering"
### Context: CREATE TABLE table_25352318_1 (position VARCHAR, season VARCHAR, team VARCHAR) ### Question: When racing engineering is the team and 2012 is the team what is the position? ### Answer: SELECT position FROM table_25352318_1 WHERE season = 2012 AND team = "Racing Engineering"
Is the facility opened in 1968 a major facility?
CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR)
SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = "1968"
### Context: CREATE TABLE table_25346763_1 (Major VARCHAR, year_opened VARCHAR) ### Question: Is the facility opened in 1968 a major facility? ### Answer: SELECT Major AS facility FROM table_25346763_1 WHERE year_opened = "1968"
What is the custody level of the facility in Shelton?
CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR)
SELECT custody_level_s_ FROM table_25346763_1 WHERE location = "Shelton"
### Context: CREATE TABLE table_25346763_1 (custody_level_s_ VARCHAR, location VARCHAR) ### Question: What is the custody level of the facility in Shelton? ### Answer: SELECT custody_level_s_ FROM table_25346763_1 WHERE location = "Shelton"
Is the Washington Corrections Center for Women (WCCW) a major facility?
CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR)
SELECT Major AS facility FROM table_25346763_1 WHERE facility = "Washington Corrections Center for Women (WCCW)"
### Context: CREATE TABLE table_25346763_1 (Major VARCHAR, facility VARCHAR) ### Question: Is the Washington Corrections Center for Women (WCCW) a major facility? ### Answer: SELECT Major AS facility FROM table_25346763_1 WHERE facility = "Washington Corrections Center for Women (WCCW)"
What is the capacity for a facility opened in 1956?
CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR)
SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = "1956"
### Context: CREATE TABLE table_25346763_1 (capacity VARCHAR, year_opened VARCHAR) ### Question: What is the capacity for a facility opened in 1956? ### Answer: SELECT COUNT(capacity) FROM table_25346763_1 WHERE year_opened = "1956"
What facility opening in 1954?
CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR)
SELECT facility FROM table_25346763_1 WHERE year_opened = "1954"
### Context: CREATE TABLE table_25346763_1 (facility VARCHAR, year_opened VARCHAR) ### Question: What facility opening in 1954? ### Answer: SELECT facility FROM table_25346763_1 WHERE year_opened = "1954"
Which player had 6 assists?
CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR)
SELECT player FROM table_25353861_5 WHERE assists = 6
### Context: CREATE TABLE table_25353861_5 (player VARCHAR, assists VARCHAR) ### Question: Which player had 6 assists? ### Answer: SELECT player FROM table_25353861_5 WHERE assists = 6
What is the fewest steals any player had?
CREATE TABLE table_25353861_5 (steals INTEGER)
SELECT MIN(steals) FROM table_25353861_5
### Context: CREATE TABLE table_25353861_5 (steals INTEGER) ### Question: What is the fewest steals any player had? ### Answer: SELECT MIN(steals) FROM table_25353861_5
How many steals did Kelly Miller have?
CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR)
SELECT MIN(steals) FROM table_25353861_5 WHERE player = "Kelly Miller"
### Context: CREATE TABLE table_25353861_5 (steals INTEGER, player VARCHAR) ### Question: How many steals did Kelly Miller have? ### Answer: SELECT MIN(steals) FROM table_25353861_5 WHERE player = "Kelly Miller"
Which player had 9 blocks?
CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR)
SELECT player FROM table_25353861_5 WHERE blocks = 9
### Context: CREATE TABLE table_25353861_5 (player VARCHAR, blocks VARCHAR) ### Question: Which player had 9 blocks? ### Answer: SELECT player FROM table_25353861_5 WHERE blocks = 9
How many rebounds did Tammy Sutton-Brown have?
CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR)
SELECT rebounds FROM table_25353861_5 WHERE player = "Tammy Sutton-Brown"
### Context: CREATE TABLE table_25353861_5 (rebounds VARCHAR, player VARCHAR) ### Question: How many rebounds did Tammy Sutton-Brown have? ### Answer: SELECT rebounds FROM table_25353861_5 WHERE player = "Tammy Sutton-Brown"
What was the science score in the year there was a social studies score of 93.56?
CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR)
SELECT science FROM table_2534578_1 WHERE social_studies = "93.56"
### Context: CREATE TABLE table_2534578_1 (science VARCHAR, social_studies VARCHAR) ### Question: What was the science score in the year there was a social studies score of 93.56? ### Answer: SELECT science FROM table_2534578_1 WHERE social_studies = "93.56"
How many years did the school have a mathetmatics score of 98.02?
CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR)
SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = "98.02"
### Context: CREATE TABLE table_2534578_1 (science VARCHAR, mathematics VARCHAR) ### Question: How many years did the school have a mathetmatics score of 98.02? ### Answer: SELECT COUNT(science) FROM table_2534578_1 WHERE mathematics = "98.02"
What was the reading score in the year the science score was 96.13?
CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR)
SELECT reading FROM table_2534578_1 WHERE science = "96.13"
### Context: CREATE TABLE table_2534578_1 (reading VARCHAR, science VARCHAR) ### Question: What was the reading score in the year the science score was 96.13? ### Answer: SELECT reading FROM table_2534578_1 WHERE science = "96.13"
What was the language score when the reading score was 94.47?
CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR)
SELECT language FROM table_2534578_1 WHERE reading = "94.47"
### Context: CREATE TABLE table_2534578_1 (language VARCHAR, reading VARCHAR) ### Question: What was the language score when the reading score was 94.47? ### Answer: SELECT language FROM table_2534578_1 WHERE reading = "94.47"
How many values for points have Sophia Witherspoon as the player?
CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR)
SELECT COUNT(points) FROM table_25352324_5 WHERE player = "Sophia Witherspoon"
### Context: CREATE TABLE table_25352324_5 (points VARCHAR, player VARCHAR) ### Question: How many values for points have Sophia Witherspoon as the player? ### Answer: SELECT COUNT(points) FROM table_25352324_5 WHERE player = "Sophia Witherspoon"
What is the highest value for points?
CREATE TABLE table_25352324_5 (points INTEGER)
SELECT MAX(points) FROM table_25352324_5
### Context: CREATE TABLE table_25352324_5 (points INTEGER) ### Question: What is the highest value for points? ### Answer: SELECT MAX(points) FROM table_25352324_5
What is every value for rebounds when steals is 19?
CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR)
SELECT rebounds FROM table_25352324_5 WHERE steals = 19
### Context: CREATE TABLE table_25352324_5 (rebounds VARCHAR, steals VARCHAR) ### Question: What is every value for rebounds when steals is 19? ### Answer: SELECT rebounds FROM table_25352324_5 WHERE steals = 19
What is every value for points if rebounds is 6 and blocks is 0?
CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR)
SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0
### Context: CREATE TABLE table_25352324_5 (points VARCHAR, rebounds VARCHAR, blocks VARCHAR) ### Question: What is every value for points if rebounds is 6 and blocks is 0? ### Answer: SELECT points FROM table_25352324_5 WHERE rebounds = 6 AND blocks = 0
What is every entry for assists if the player is Lynn Pride?
CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR)
SELECT assists FROM table_25352324_5 WHERE player = "Lynn Pride"
### Context: CREATE TABLE table_25352324_5 (assists VARCHAR, player VARCHAR) ### Question: What is every entry for assists if the player is Lynn Pride? ### Answer: SELECT assists FROM table_25352324_5 WHERE player = "Lynn Pride"
What is the air date of the episode written by Itamar Moses?
CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_25356350_3 WHERE written_by = "Itamar Moses"
### Context: CREATE TABLE table_25356350_3 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the air date of the episode written by Itamar Moses? ### Answer: SELECT original_air_date FROM table_25356350_3 WHERE written_by = "Itamar Moses"
What is the june 10-11 when august 21-22 is august 21, 2017?
CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR)
SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = "August 21, 2017"
### Context: CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, august_21_22 VARCHAR) ### Question: What is the june 10-11 when august 21-22 is august 21, 2017? ### Answer: SELECT june_10_11 FROM table_25355392_2 WHERE august_21_22 = "August 21, 2017"
how many times is march 27-29 is 129?
CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR)
SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = "129"
### Context: CREATE TABLE table_25355392_2 (november_3 VARCHAR, march_27_29 VARCHAR) ### Question: how many times is march 27-29 is 129? ### Answer: SELECT COUNT(november_3) FROM table_25355392_2 WHERE march_27_29 = "129"
what is june 10-11 when march 27-29 is 149?
CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, march_27_29 VARCHAR)
SELECT june_10_11 FROM table_25355392_2 WHERE march_27_29 = "149"
### Context: CREATE TABLE table_25355392_2 (june_10_11 VARCHAR, march_27_29 VARCHAR) ### Question: what is june 10-11 when march 27-29 is 149? ### Answer: SELECT june_10_11 FROM table_25355392_2 WHERE march_27_29 = "149"
what is november 3 when june 10-11 is june 10, 1964?
CREATE TABLE table_25355392_2 (november_3 VARCHAR, june_10_11 VARCHAR)
SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = "June 10, 1964"
### Context: CREATE TABLE table_25355392_2 (november_3 VARCHAR, june_10_11 VARCHAR) ### Question: what is november 3 when june 10-11 is june 10, 1964? ### Answer: SELECT november_3 FROM table_25355392_2 WHERE june_10_11 = "June 10, 1964"
what is march 27-29 when november 3 is 133?
CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR)
SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = "133"
### Context: CREATE TABLE table_25355392_2 (march_27_29 VARCHAR, november_3 VARCHAR) ### Question: what is march 27-29 when november 3 is 133? ### Answer: SELECT march_27_29 FROM table_25355392_2 WHERE november_3 = "133"
What is january 15-16 when november 3 is 153?
CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR)
SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = "153"
### Context: CREATE TABLE table_25355392_2 (january_15_16 VARCHAR, november_3 VARCHAR) ### Question: What is january 15-16 when november 3 is 153? ### Answer: SELECT january_15_16 FROM table_25355392_2 WHERE november_3 = "153"
january 15-16 when august 21-22 is august 22, 1979?
CREATE TABLE table_25355501_2 (january_15_16 VARCHAR, august_21_22 VARCHAR)
SELECT january_15_16 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1979"
### Context: CREATE TABLE table_25355501_2 (january_15_16 VARCHAR, august_21_22 VARCHAR) ### Question: january 15-16 when august 21-22 is august 22, 1979? ### Answer: SELECT january_15_16 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1979"
How many entries are shown for november 3 when january 15-16 is 141?
CREATE TABLE table_25355501_2 (november_3 VARCHAR, january_15_16 VARCHAR)
SELECT COUNT(november_3) FROM table_25355501_2 WHERE january_15_16 = "141"
### Context: CREATE TABLE table_25355501_2 (november_3 VARCHAR, january_15_16 VARCHAR) ### Question: How many entries are shown for november 3 when january 15-16 is 141? ### Answer: SELECT COUNT(november_3) FROM table_25355501_2 WHERE january_15_16 = "141"
march 27-29 where june 10-11 is 127?
CREATE TABLE table_25355501_2 (march_27_29 VARCHAR, june_10_11 VARCHAR)
SELECT march_27_29 FROM table_25355501_2 WHERE june_10_11 = "127"
### Context: CREATE TABLE table_25355501_2 (march_27_29 VARCHAR, june_10_11 VARCHAR) ### Question: march 27-29 where june 10-11 is 127? ### Answer: SELECT march_27_29 FROM table_25355501_2 WHERE june_10_11 = "127"
june 10-11 when november 3 is 133?
CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR)
SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = "133"
### Context: CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, november_3 VARCHAR) ### Question: june 10-11 when november 3 is 133? ### Answer: SELECT june_10_11 FROM table_25355501_2 WHERE november_3 = "133"
june 10-11 when january 15-16 is january 15, 1991?
CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR)
SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = "January 15, 1991"
### Context: CREATE TABLE table_25355501_2 (june_10_11 VARCHAR, january_15_16 VARCHAR) ### Question: june 10-11 when january 15-16 is january 15, 1991? ### Answer: SELECT june_10_11 FROM table_25355501_2 WHERE january_15_16 = "January 15, 1991"
What is shown for november 3 when august 21-22 is august 22, 1998?
CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR)
SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1998"
### Context: CREATE TABLE table_25355501_2 (november_3 VARCHAR, august_21_22 VARCHAR) ### Question: What is shown for november 3 when august 21-22 is august 22, 1998? ### Answer: SELECT november_3 FROM table_25355501_2 WHERE august_21_22 = "August 22, 1998"
Name the number of teams for 11th position september 10
CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR)
SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = "11th" AND date_of_appointment = "September 10"
### Context: CREATE TABLE table_25361570_2 (team VARCHAR, position_in_table VARCHAR, date_of_appointment VARCHAR) ### Question: Name the number of teams for 11th position september 10 ### Answer: SELECT COUNT(team) FROM table_25361570_2 WHERE position_in_table = "11th" AND date_of_appointment = "September 10"
Name the replaced by for august 9
CREATE TABLE table_25361570_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR, date_of_appointment VARCHAR)
SELECT replaced_by FROM table_25361570_2 WHERE date_of_vacancy = "August 9" AND date_of_appointment = "August 9"
### Context: CREATE TABLE table_25361570_2 (replaced_by VARCHAR, date_of_vacancy VARCHAR, date_of_appointment VARCHAR) ### Question: Name the replaced by for august 9 ### Answer: SELECT replaced_by FROM table_25361570_2 WHERE date_of_vacancy = "August 9" AND date_of_appointment = "August 9"
Name the most number for charvez davis
CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR)
SELECT MAX(_number) FROM table_25360865_1 WHERE name = "Charvez Davis"
### Context: CREATE TABLE table_25360865_1 (_number INTEGER, name VARCHAR) ### Question: Name the most number for charvez davis ### Answer: SELECT MAX(_number) FROM table_25360865_1 WHERE name = "Charvez Davis"
Name the most height
CREATE TABLE table_25360865_1 (weight INTEGER)
SELECT MAX(weight) FROM table_25360865_1
### Context: CREATE TABLE table_25360865_1 (weight INTEGER) ### Question: Name the most height ### Answer: SELECT MAX(weight) FROM table_25360865_1
Name the number of home town for number being 32
CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR)
SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32
### Context: CREATE TABLE table_25360865_1 (home_town VARCHAR, _number VARCHAR) ### Question: Name the number of home town for number being 32 ### Answer: SELECT COUNT(home_town) FROM table_25360865_1 WHERE _number = 32
Name the total number of height for number 32
CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR)
SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32
### Context: CREATE TABLE table_25360865_1 (height VARCHAR, _number VARCHAR) ### Question: Name the total number of height for number 32 ### Answer: SELECT COUNT(height) FROM table_25360865_1 WHERE _number = 32
Name the number for florida air academy
CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR)
SELECT _number FROM table_25360865_1 WHERE last_school = "Florida Air Academy"
### Context: CREATE TABLE table_25360865_1 (_number VARCHAR, last_school VARCHAR) ### Question: Name the number for florida air academy ### Answer: SELECT _number FROM table_25360865_1 WHERE last_school = "Florida Air Academy"
Name the height for demetrius jemison
CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR)
SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison"
### Context: CREATE TABLE table_25360865_1 (height VARCHAR, name VARCHAR) ### Question: Name the height for demetrius jemison ### Answer: SELECT height FROM table_25360865_1 WHERE name = "Demetrius Jemison"
How many wins did Canterbury Wizards have?
CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR)
SELECT MAX(won) FROM table_25368177_1 WHERE team = "Canterbury Wizards"
### Context: CREATE TABLE table_25368177_1 (won INTEGER, team VARCHAR) ### Question: How many wins did Canterbury Wizards have? ### Answer: SELECT MAX(won) FROM table_25368177_1 WHERE team = "Canterbury Wizards"
What team had a net run rate of 0.134?
CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR)
SELECT team FROM table_25368177_1 WHERE net_run_rate = "0.134"
### Context: CREATE TABLE table_25368177_1 (team VARCHAR, net_run_rate VARCHAR) ### Question: What team had a net run rate of 0.134? ### Answer: SELECT team FROM table_25368177_1 WHERE net_run_rate = "0.134"
What's the largest number of abandoned games by any of the teams?
CREATE TABLE table_25368177_1 (abandoned INTEGER)
SELECT MAX(abandoned) FROM table_25368177_1
### Context: CREATE TABLE table_25368177_1 (abandoned INTEGER) ### Question: What's the largest number of abandoned games by any of the teams? ### Answer: SELECT MAX(abandoned) FROM table_25368177_1
How many different net run rates did the team with 19 total points have?
CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR)
SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19
### Context: CREATE TABLE table_25368177_1 (net_run_rate VARCHAR, total_points VARCHAR) ### Question: How many different net run rates did the team with 19 total points have? ### Answer: SELECT COUNT(net_run_rate) FROM table_25368177_1 WHERE total_points = 19
What was the team that scored 56 points?Qh
CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR)
SELECT team FROM table_25369796_1 WHERE points = "56"
### Context: CREATE TABLE table_25369796_1 (team VARCHAR, points VARCHAR) ### Question: What was the team that scored 56 points?Qh ### Answer: SELECT team FROM table_25369796_1 WHERE points = "56"
What was the earliest season where a team got a 29th position?
CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)
SELECT MIN(season) FROM table_25369796_1 WHERE position = "29th"
### Context: CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR) ### Question: What was the earliest season where a team got a 29th position? ### Answer: SELECT MIN(season) FROM table_25369796_1 WHERE position = "29th"
What was the recorded flaps of HBR Motorsport team?
CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR)
SELECT f_laps FROM table_25369796_1 WHERE team = "HBR Motorsport"
### Context: CREATE TABLE table_25369796_1 (f_laps VARCHAR, team VARCHAR) ### Question: What was the recorded flaps of HBR Motorsport team? ### Answer: SELECT f_laps FROM table_25369796_1 WHERE team = "HBR Motorsport"
What was the series where a team scored 56 points?
CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR)
SELECT series FROM table_25369796_1 WHERE points = "56"
### Context: CREATE TABLE table_25369796_1 (series VARCHAR, points VARCHAR) ### Question: What was the series where a team scored 56 points? ### Answer: SELECT series FROM table_25369796_1 WHERE points = "56"
How many team position scored 56 points?
CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR)
SELECT COUNT(position) FROM table_25369796_1 WHERE points = "56"
### Context: CREATE TABLE table_25369796_1 (position VARCHAR, points VARCHAR) ### Question: How many team position scored 56 points? ### Answer: SELECT COUNT(position) FROM table_25369796_1 WHERE points = "56"
On what dates was the final score of the game L 14–24?
CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR)
SELECT date FROM table_25380472_2 WHERE final_score = "L 14–24"
### Context: CREATE TABLE table_25380472_2 (date VARCHAR, final_score VARCHAR) ### Question: On what dates was the final score of the game L 14–24? ### Answer: SELECT date FROM table_25380472_2 WHERE final_score = "L 14–24"
How many game sites are there where the team record is 1–7?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = "1–7"
### Context: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) ### Question: How many game sites are there where the team record is 1–7? ### Answer: SELECT COUNT(game_site) FROM table_25380472_2 WHERE team_record = "1–7"
On week 7, what were the opponents?
CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_25380472_2 WHERE week = 7
### Context: CREATE TABLE table_25380472_2 (opponent VARCHAR, week VARCHAR) ### Question: On week 7, what were the opponents? ### Answer: SELECT opponent FROM table_25380472_2 WHERE week = 7
On what game sites are there where the team record is 0–5?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
SELECT game_site FROM table_25380472_2 WHERE team_record = "0–5"
### Context: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) ### Question: On what game sites are there where the team record is 0–5? ### Answer: SELECT game_site FROM table_25380472_2 WHERE team_record = "0–5"
What game sites are where the team record is 1–6?
CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR)
SELECT game_site FROM table_25380472_2 WHERE team_record = "1–6"
### Context: CREATE TABLE table_25380472_2 (game_site VARCHAR, team_record VARCHAR) ### Question: What game sites are where the team record is 1–6? ### Answer: SELECT game_site FROM table_25380472_2 WHERE team_record = "1–6"
In game site AOL Arena, who are all the opponents?
CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR)
SELECT opponent FROM table_25380472_2 WHERE game_site = "AOL Arena"
### Context: CREATE TABLE table_25380472_2 (opponent VARCHAR, game_site VARCHAR) ### Question: In game site AOL Arena, who are all the opponents? ### Answer: SELECT opponent FROM table_25380472_2 WHERE game_site = "AOL Arena"
What organization had the founding date of 1998-11-08?
CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR)
SELECT organization FROM table_2538117_12 WHERE founding_date = "1998-11-08"
### Context: CREATE TABLE table_2538117_12 (organization VARCHAR, founding_date VARCHAR) ### Question: What organization had the founding date of 1998-11-08? ### Answer: SELECT organization FROM table_2538117_12 WHERE founding_date = "1998-11-08"
How many letters were given to the organization with a founding date of 1997-12-12?
CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR)
SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = "1997-12-12"
### Context: CREATE TABLE table_2538117_12 (letters VARCHAR, founding_date VARCHAR) ### Question: How many letters were given to the organization with a founding date of 1997-12-12? ### Answer: SELECT COUNT(letters) FROM table_2538117_12 WHERE founding_date = "1997-12-12"
What is the song choice where the original artist is Gino Paoli?
CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR)
SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = "Gino Paoli"
### Context: CREATE TABLE table_25374338_1 (song_choice VARCHAR, original_artist VARCHAR) ### Question: What is the song choice where the original artist is Gino Paoli? ### Answer: SELECT COUNT(song_choice) FROM table_25374338_1 WHERE original_artist = "Gino Paoli"
What is the theme where the original artist is Noemi feat. Fiorella Mannoia?
CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia"
### Context: CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR) ### Question: What is the theme where the original artist is Noemi feat. Fiorella Mannoia? ### Answer: SELECT theme FROM table_25374338_1 WHERE original_artist = "Noemi feat. Fiorella Mannoia"
What is the song choice where the episode is Live Show 1?
CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR)
SELECT song_choice FROM table_25374338_1 WHERE episode = "Live Show 1"
### Context: CREATE TABLE table_25374338_1 (song_choice VARCHAR, episode VARCHAR) ### Question: What is the song choice where the episode is Live Show 1? ### Answer: SELECT song_choice FROM table_25374338_1 WHERE episode = "Live Show 1"
What is the result where the original artist is Prince and the Revolution?
CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR)
SELECT result FROM table_25374338_1 WHERE original_artist = "Prince and The Revolution"
### Context: CREATE TABLE table_25374338_1 (result VARCHAR, original_artist VARCHAR) ### Question: What is the result where the original artist is Prince and the Revolution? ### Answer: SELECT result FROM table_25374338_1 WHERE original_artist = "Prince and The Revolution"
What is the theme where the original artist is AC/DC?
CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR)
SELECT theme FROM table_25374338_1 WHERE original_artist = "AC/DC"
### Context: CREATE TABLE table_25374338_1 (theme VARCHAR, original_artist VARCHAR) ### Question: What is the theme where the original artist is AC/DC? ### Answer: SELECT theme FROM table_25374338_1 WHERE original_artist = "AC/DC"
what type of organization is sigma phi omega?
CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR)
SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega"
### Context: CREATE TABLE table_2538117_2 (type VARCHAR, organization VARCHAR) ### Question: what type of organization is sigma phi omega? ### Answer: SELECT type FROM table_2538117_2 WHERE organization = "Sigma Phi Omega"
how many types of organization were founded in san diego state university?
CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR)
SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University"
### Context: CREATE TABLE table_2538117_2 (type VARCHAR, founding_university VARCHAR) ### Question: how many types of organization were founded in san diego state university? ### Answer: SELECT COUNT(type) FROM table_2538117_2 WHERE founding_university = "San Diego State University"
Name the season for position 4th
CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR)
SELECT COUNT(season) FROM table_25375093_1 WHERE position = "4th"
### Context: CREATE TABLE table_25375093_1 (season VARCHAR, position VARCHAR) ### Question: Name the season for position 4th ### Answer: SELECT COUNT(season) FROM table_25375093_1 WHERE position = "4th"
Name the least f/laps
CREATE TABLE table_25375093_1 (f_laps INTEGER)
SELECT MIN(f_laps) FROM table_25375093_1
### Context: CREATE TABLE table_25375093_1 (f_laps INTEGER) ### Question: Name the least f/laps ### Answer: SELECT MIN(f_laps) FROM table_25375093_1