question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55?
CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, tertiary__18_24_years_ VARCHAR)
SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE tertiary__18_24_years_ = "29.55"
### Context: CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, tertiary__18_24_years_ VARCHAR) ### Question: What is the enrollment ratio for preschool in the region where enrollment ratio for tertiary is 29.55? ### Answer: SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE tertiary__18_24_years_ = ...
What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14?
CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)
SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "38.14"
### Context: CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR) ### Question: What is the enrollment ratio in primary in the region where the enrollment ratio in preschool is 38.14? ### Answer: SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "38...
What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43?
CREATE TABLE table_25042332_22 (tertiary__18_24_years_ VARCHAR, secondary__14_17_years_ VARCHAR)
SELECT tertiary__18_24_years_ FROM table_25042332_22 WHERE secondary__14_17_years_ = "71.43"
### Context: CREATE TABLE table_25042332_22 (tertiary__18_24_years_ VARCHAR, secondary__14_17_years_ VARCHAR) ### Question: What is the enrollment ratio in tertiary in the region where the enrollment ration in secondary is 71.43? ### Answer: SELECT tertiary__18_24_years_ FROM table_25042332_22 WHERE secondary__14_17_ye...
What is the enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10?
CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, primary__6_13_years_ VARCHAR)
SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE primary__6_13_years_ = "93.10"
### Context: CREATE TABLE table_25042332_22 (preschool__0_5_years_ VARCHAR, primary__6_13_years_ VARCHAR) ### Question: What is the enrollment ratio in preschool in the region where the enrollment ratio in primary is 93.10? ### Answer: SELECT preschool__0_5_years_ FROM table_25042332_22 WHERE primary__6_13_years_ = "9...
What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23?
CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR)
SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "50.23"
### Context: CREATE TABLE table_25042332_22 (primary__6_13_years_ VARCHAR, preschool__0_5_years_ VARCHAR) ### Question: What is the enrollment ration in primary in the region where the enrollment ratio in preschool is 50.23? ### Answer: SELECT primary__6_13_years_ FROM table_25042332_22 WHERE preschool__0_5_years_ = "...
what is the number of registered female voters where the percentage is 108.6%
CREATE TABLE table_25042332_30 (enrolled_women VARCHAR, e_vap_ratio_women VARCHAR)
SELECT enrolled_women FROM table_25042332_30 WHERE e_vap_ratio_women = "108.6%"
### Context: CREATE TABLE table_25042332_30 (enrolled_women VARCHAR, e_vap_ratio_women VARCHAR) ### Question: what is the number of registered female voters where the percentage is 108.6% ### Answer: SELECT enrolled_women FROM table_25042332_30 WHERE e_vap_ratio_women = "108.6%"
what is the percentage of male voters where the level of maturity is 123726
CREATE TABLE table_25042332_30 (e_vap_ratio_total VARCHAR, men_of_voting_age VARCHAR)
SELECT e_vap_ratio_total FROM table_25042332_30 WHERE men_of_voting_age = 123726
### Context: CREATE TABLE table_25042332_30 (e_vap_ratio_total VARCHAR, men_of_voting_age VARCHAR) ### Question: what is the percentage of male voters where the level of maturity is 123726 ### Answer: SELECT e_vap_ratio_total FROM table_25042332_30 WHERE men_of_voting_age = 123726
How many regions had 153 women prison inmates?
CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, prison_inmates_women VARCHAR)
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153
### Context: CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, prison_inmates_women VARCHAR) ### Question: How many regions had 153 women prison inmates? ### Answer: SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE prison_inmates_women = 153
How many regions had an incarceration rate for females of 63?
CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, incarceration_rate_female VARCHAR)
SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE incarceration_rate_female = 63
### Context: CREATE TABLE table_25042332_31 (incarceration_rate_total VARCHAR, incarceration_rate_female VARCHAR) ### Question: How many regions had an incarceration rate for females of 63? ### Answer: SELECT COUNT(incarceration_rate_total) FROM table_25042332_31 WHERE incarceration_rate_female = 63
What is the male incarceration rate of maule?
CREATE TABLE table_25042332_31 (incarceration_rate_male INTEGER, region VARCHAR)
SELECT MAX(incarceration_rate_male) FROM table_25042332_31 WHERE region = "Maule"
### Context: CREATE TABLE table_25042332_31 (incarceration_rate_male INTEGER, region VARCHAR) ### Question: What is the male incarceration rate of maule? ### Answer: SELECT MAX(incarceration_rate_male) FROM table_25042332_31 WHERE region = "Maule"
Name the region for automatic washing machine being 60.9%
CREATE TABLE table_25042332_27 (region VARCHAR, automatic_washing_machine VARCHAR)
SELECT region FROM table_25042332_27 WHERE automatic_washing_machine = "60.9%"
### Context: CREATE TABLE table_25042332_27 (region VARCHAR, automatic_washing_machine VARCHAR) ### Question: Name the region for automatic washing machine being 60.9% ### Answer: SELECT region FROM table_25042332_27 WHERE automatic_washing_machine = "60.9%"
Name the fixed telephone line for 25.6% vehicle
CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR)
SELECT fixed_telephone_line FROM table_25042332_27 WHERE vehicle = "25.6%"
### Context: CREATE TABLE table_25042332_27 (fixed_telephone_line VARCHAR, vehicle VARCHAR) ### Question: Name the fixed telephone line for 25.6% vehicle ### Answer: SELECT fixed_telephone_line FROM table_25042332_27 WHERE vehicle = "25.6%"
Name the region for 39.2% vehicle
CREATE TABLE table_25042332_27 (region VARCHAR, vehicle VARCHAR)
SELECT region FROM table_25042332_27 WHERE vehicle = "39.2%"
### Context: CREATE TABLE table_25042332_27 (region VARCHAR, vehicle VARCHAR) ### Question: Name the region for 39.2% vehicle ### Answer: SELECT region FROM table_25042332_27 WHERE vehicle = "39.2%"
What region has 0.3% solar panel?
CREATE TABLE table_25042332_26 (region VARCHAR, solar_panel VARCHAR)
SELECT region FROM table_25042332_26 WHERE solar_panel = "0.3%"
### Context: CREATE TABLE table_25042332_26 (region VARCHAR, solar_panel VARCHAR) ### Question: What region has 0.3% solar panel? ### Answer: SELECT region FROM table_25042332_26 WHERE solar_panel = "0.3%"
What is atacama's percentage of solar panels?
CREATE TABLE table_25042332_26 (solar_panel VARCHAR, region VARCHAR)
SELECT solar_panel FROM table_25042332_26 WHERE region = "Atacama"
### Context: CREATE TABLE table_25042332_26 (solar_panel VARCHAR, region VARCHAR) ### Question: What is atacama's percentage of solar panels? ### Answer: SELECT solar_panel FROM table_25042332_26 WHERE region = "Atacama"
Which region has 0.6% none?
CREATE TABLE table_25042332_26 (region VARCHAR, none VARCHAR)
SELECT region FROM table_25042332_26 WHERE none = "0.6%"
### Context: CREATE TABLE table_25042332_26 (region VARCHAR, none VARCHAR) ### Question: Which region has 0.6% none? ### Answer: SELECT region FROM table_25042332_26 WHERE none = "0.6%"
What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule?
CREATE TABLE table_25042332_26 (public_network VARCHAR, region VARCHAR, other_source VARCHAR, solar_panel VARCHAR)
SELECT public_network FROM table_25042332_26 WHERE other_source = "0.1%" AND solar_panel = "0.0%" AND region = "Maule"
### Context: CREATE TABLE table_25042332_26 (public_network VARCHAR, region VARCHAR, other_source VARCHAR, solar_panel VARCHAR) ### Question: What is the percentage of public network in the region that has 0.1% other sources, 0.0% solar, and is named maule? ### Answer: SELECT public_network FROM table_25042332_26 WHERE...
How many regions have 0.5% solar panels?
CREATE TABLE table_25042332_26 (public_network VARCHAR, solar_panel VARCHAR)
SELECT COUNT(public_network) FROM table_25042332_26 WHERE solar_panel = "0.5%"
### Context: CREATE TABLE table_25042332_26 (public_network VARCHAR, solar_panel VARCHAR) ### Question: How many regions have 0.5% solar panels? ### Answer: SELECT COUNT(public_network) FROM table_25042332_26 WHERE solar_panel = "0.5%"
What is the production number of 3-04?
CREATE TABLE table_25046766_3 (prod_no INTEGER, episode_no VARCHAR)
SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no = "3-04"
### Context: CREATE TABLE table_25046766_3 (prod_no INTEGER, episode_no VARCHAR) ### Question: What is the production number of 3-04? ### Answer: SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no = "3-04"
What was the title of the episode that aired on October 7, 1965?
CREATE TABLE table_25046766_3 (title VARCHAR, original_airdate_uk VARCHAR)
SELECT title FROM table_25046766_3 WHERE original_airdate_uk = "October 7, 1965"
### Context: CREATE TABLE table_25046766_3 (title VARCHAR, original_airdate_uk VARCHAR) ### Question: What was the title of the episode that aired on October 7, 1965? ### Answer: SELECT title FROM table_25046766_3 WHERE original_airdate_uk = "October 7, 1965"
When don inglis and ralph smart are the writers how many episode numbers are there?
CREATE TABLE table_25046766_1 (episode_no VARCHAR, written_by VARCHAR)
SELECT COUNT(episode_no) FROM table_25046766_1 WHERE written_by = "Don Inglis and Ralph Smart"
### Context: CREATE TABLE table_25046766_1 (episode_no VARCHAR, written_by VARCHAR) ### Question: When don inglis and ralph smart are the writers how many episode numbers are there? ### Answer: SELECT COUNT(episode_no) FROM table_25046766_1 WHERE written_by = "Don Inglis and Ralph Smart"
Name the most 2012/13 for university of cambridge
CREATE TABLE table_25057928_1 (institute VARCHAR)
SELECT MAX(2012 AS _13) FROM table_25057928_1 WHERE institute = "University of Cambridge"
### Context: CREATE TABLE table_25057928_1 (institute VARCHAR) ### Question: Name the most 2012/13 for university of cambridge ### Answer: SELECT MAX(2012 AS _13) FROM table_25057928_1 WHERE institute = "University of Cambridge"
Name the birth date for taavi sadam
CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR)
SELECT birth_date FROM table_25058562_2 WHERE player = "Taavi Sadam"
### Context: CREATE TABLE table_25058562_2 (birth_date VARCHAR, player VARCHAR) ### Question: Name the birth date for taavi sadam ### Answer: SELECT birth_date FROM table_25058562_2 WHERE player = "Taavi Sadam"
Name the height for asko esna
CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR)
SELECT height FROM table_25058562_2 WHERE player = "Asko Esna"
### Context: CREATE TABLE table_25058562_2 (height VARCHAR, player VARCHAR) ### Question: Name the height for asko esna ### Answer: SELECT height FROM table_25058562_2 WHERE player = "Asko Esna"
Name the birth date for estonia for spiker and height of 189
CREATE TABLE table_25058562_2 (birth_date VARCHAR, height VARCHAR, nationality VARCHAR, position VARCHAR)
SELECT birth_date FROM table_25058562_2 WHERE nationality = "Estonia" AND position = "Spiker" AND height = 189
### Context: CREATE TABLE table_25058562_2 (birth_date VARCHAR, height VARCHAR, nationality VARCHAR, position VARCHAR) ### Question: Name the birth date for estonia for spiker and height of 189 ### Answer: SELECT birth_date FROM table_25058562_2 WHERE nationality = "Estonia" AND position = "Spiker" AND height = 189
Name the player for 199 height
CREATE TABLE table_25058562_2 (player VARCHAR, height VARCHAR)
SELECT player FROM table_25058562_2 WHERE height = 199
### Context: CREATE TABLE table_25058562_2 (player VARCHAR, height VARCHAR) ### Question: Name the player for 199 height ### Answer: SELECT player FROM table_25058562_2 WHERE height = 199
if the 2.09 million US viewers watched this episode, who was it written by
CREATE TABLE table_25084227_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT written_by FROM table_25084227_1 WHERE us_viewers__in_millions_ = "2.09"
### Context: CREATE TABLE table_25084227_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: if the 2.09 million US viewers watched this episode, who was it written by ### Answer: SELECT written_by FROM table_25084227_1 WHERE us_viewers__in_millions_ = "2.09"
If the episode was directed by Michael Offer, what was the episode number?
CREATE TABLE table_25084227_1 (no INTEGER, directed_by VARCHAR)
SELECT MIN(no) FROM table_25084227_1 WHERE directed_by = "Michael Offer"
### Context: CREATE TABLE table_25084227_1 (no INTEGER, directed_by VARCHAR) ### Question: If the episode was directed by Michael Offer, what was the episode number? ### Answer: SELECT MIN(no) FROM table_25084227_1 WHERE directed_by = "Michael Offer"
If the episode was directed by Michael Offer, how many US Viewers watched it?
CREATE TABLE table_25084227_1 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__in_millions_ FROM table_25084227_1 WHERE directed_by = "Michael Offer"
### Context: CREATE TABLE table_25084227_1 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR) ### Question: If the episode was directed by Michael Offer, how many US Viewers watched it? ### Answer: SELECT us_viewers__in_millions_ FROM table_25084227_1 WHERE directed_by = "Michael Offer"
What draft pick number was the player with the position DL?
CREATE TABLE table_25085059_3 (pick__number VARCHAR, position VARCHAR)
SELECT pick__number FROM table_25085059_3 WHERE position = "DL"
### Context: CREATE TABLE table_25085059_3 (pick__number VARCHAR, position VARCHAR) ### Question: What draft pick number was the player with the position DL? ### Answer: SELECT pick__number FROM table_25085059_3 WHERE position = "DL"
How many draft picks were for Winnipeg blue bombers?
CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR)
SELECT COUNT(pick__number) FROM table_25085059_3 WHERE cfl_team = "Winnipeg Blue Bombers"
### Context: CREATE TABLE table_25085059_3 (pick__number VARCHAR, cfl_team VARCHAR) ### Question: How many draft picks were for Winnipeg blue bombers? ### Answer: SELECT COUNT(pick__number) FROM table_25085059_3 WHERE cfl_team = "Winnipeg Blue Bombers"
How many colleges provided players with positions LB?
CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)
SELECT COUNT(college) FROM table_25085059_3 WHERE position = "LB"
### Context: CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR) ### Question: How many colleges provided players with positions LB? ### Answer: SELECT COUNT(college) FROM table_25085059_3 WHERE position = "LB"
What college did the player come from whose position is DL?
CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR)
SELECT college FROM table_25085059_3 WHERE position = "DL"
### Context: CREATE TABLE table_25085059_3 (college VARCHAR, position VARCHAR) ### Question: What college did the player come from whose position is DL? ### Answer: SELECT college FROM table_25085059_3 WHERE position = "DL"
What team got a draft pick player from McGill?
CREATE TABLE table_25085059_3 (cfl_team VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_25085059_3 WHERE college = "McGill"
### Context: CREATE TABLE table_25085059_3 (cfl_team VARCHAR, college VARCHAR) ### Question: What team got a draft pick player from McGill? ### Answer: SELECT cfl_team FROM table_25085059_3 WHERE college = "McGill"
What number draft pick was Oklahoma State's Greg Hill in 1983?
CREATE TABLE table_2508633_4 (pick__number VARCHAR, college VARCHAR, player VARCHAR)
SELECT pick__number FROM table_2508633_4 WHERE college = "Oklahoma State" AND player = "Greg Hill"
### Context: CREATE TABLE table_2508633_4 (pick__number VARCHAR, college VARCHAR, player VARCHAR) ### Question: What number draft pick was Oklahoma State's Greg Hill in 1983? ### Answer: SELECT pick__number FROM table_2508633_4 WHERE college = "Oklahoma State" AND player = "Greg Hill"
What number pick was Danny Walters in the 1983 NFL draft?
CREATE TABLE table_2508633_4 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_2508633_4 WHERE player = "Danny Walters"
### Context: CREATE TABLE table_2508633_4 (pick__number VARCHAR, player VARCHAR) ### Question: What number pick was Danny Walters in the 1983 NFL draft? ### Answer: SELECT COUNT(pick__number) FROM table_2508633_4 WHERE player = "Danny Walters"
What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft?
CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR)
SELECT position FROM table_2508633_4 WHERE nfl_team = "New Orleans Saints"
### Context: CREATE TABLE table_2508633_4 (position VARCHAR, nfl_team VARCHAR) ### Question: What were the pick numbers of the defensive tackles chosen by the New Orleans Saints in the 1983 draft? ### Answer: SELECT position FROM table_2508633_4 WHERE nfl_team = "New Orleans Saints"
What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft?
CREATE TABLE table_2508633_4 (position VARCHAR, player VARCHAR)
SELECT position FROM table_2508633_4 WHERE player = "Steve Maidlow"
### Context: CREATE TABLE table_2508633_4 (position VARCHAR, player VARCHAR) ### Question: What number draft pick was linebacker Steve Maidlow in the 1983 NFL Draft? ### Answer: SELECT position FROM table_2508633_4 WHERE player = "Steve Maidlow"
In which colleges is the NFL Team New York Giants and with the position defensive back?
CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)
SELECT college FROM table_2508633_11 WHERE nfl_team = "New York Giants" AND position = "Defensive back"
### Context: CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR, position VARCHAR) ### Question: In which colleges is the NFL Team New York Giants and with the position defensive back? ### Answer: SELECT college FROM table_2508633_11 WHERE nfl_team = "New York Giants" AND position = "Defensive back"
What NFL Team has the player Danny Triplett with the position linebacker?
CREATE TABLE table_2508633_11 (nfl_team VARCHAR, position VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_2508633_11 WHERE position = "Linebacker" AND player = "Danny Triplett"
### Context: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, position VARCHAR, player VARCHAR) ### Question: What NFL Team has the player Danny Triplett with the position linebacker? ### Answer: SELECT nfl_team FROM table_2508633_11 WHERE position = "Linebacker" AND player = "Danny Triplett"
What are the NFL Teams in College North Texas State?
CREATE TABLE table_2508633_11 (nfl_team VARCHAR, college VARCHAR)
SELECT nfl_team FROM table_2508633_11 WHERE college = "North Texas State"
### Context: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, college VARCHAR) ### Question: What are the NFL Teams in College North Texas State? ### Answer: SELECT nfl_team FROM table_2508633_11 WHERE college = "North Texas State"
How many colleges have the NFL Team Buffalo Bills?
CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR)
SELECT COUNT(college) FROM table_2508633_11 WHERE nfl_team = "Buffalo Bills"
### Context: CREATE TABLE table_2508633_11 (college VARCHAR, nfl_team VARCHAR) ### Question: How many colleges have the NFL Team Buffalo Bills? ### Answer: SELECT COUNT(college) FROM table_2508633_11 WHERE nfl_team = "Buffalo Bills"
Who are the all the players whose position is guard in college Clemson?
CREATE TABLE table_2508633_11 (player VARCHAR, college VARCHAR, position VARCHAR)
SELECT player FROM table_2508633_11 WHERE college = "Clemson" AND position = "Guard"
### Context: CREATE TABLE table_2508633_11 (player VARCHAR, college VARCHAR, position VARCHAR) ### Question: Who are the all the players whose position is guard in college Clemson? ### Answer: SELECT player FROM table_2508633_11 WHERE college = "Clemson" AND position = "Guard"
What NFL Teams have the player Aaron Williams?
CREATE TABLE table_2508633_11 (nfl_team VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_2508633_11 WHERE player = "Aaron Williams"
### Context: CREATE TABLE table_2508633_11 (nfl_team VARCHAR, player VARCHAR) ### Question: What NFL Teams have the player Aaron Williams? ### Answer: SELECT nfl_team FROM table_2508633_11 WHERE player = "Aaron Williams"
Name the least pick number for the denver broncos
CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR)
SELECT MIN(pick__number) FROM table_2508633_2 WHERE nfl_team = "Denver Broncos"
### Context: CREATE TABLE table_2508633_2 (pick__number INTEGER, nfl_team VARCHAR) ### Question: Name the least pick number for the denver broncos ### Answer: SELECT MIN(pick__number) FROM table_2508633_2 WHERE nfl_team = "Denver Broncos"
Name the position for pick number 39
CREATE TABLE table_2508633_2 (position VARCHAR, pick__number VARCHAR)
SELECT position FROM table_2508633_2 WHERE pick__number = 39
### Context: CREATE TABLE table_2508633_2 (position VARCHAR, pick__number VARCHAR) ### Question: Name the position for pick number 39 ### Answer: SELECT position FROM table_2508633_2 WHERE pick__number = 39
Name the total number of pick number being henry ellard
CREATE TABLE table_2508633_2 (pick__number VARCHAR, player VARCHAR)
SELECT COUNT(pick__number) FROM table_2508633_2 WHERE player = "Henry Ellard"
### Context: CREATE TABLE table_2508633_2 (pick__number VARCHAR, player VARCHAR) ### Question: Name the total number of pick number being henry ellard ### Answer: SELECT COUNT(pick__number) FROM table_2508633_2 WHERE player = "Henry Ellard"
Name the player for new orleans saints
CREATE TABLE table_2508633_2 (player VARCHAR, nfl_team VARCHAR)
SELECT player FROM table_2508633_2 WHERE nfl_team = "New Orleans Saints"
### Context: CREATE TABLE table_2508633_2 (player VARCHAR, nfl_team VARCHAR) ### Question: Name the player for new orleans saints ### Answer: SELECT player FROM table_2508633_2 WHERE nfl_team = "New Orleans Saints"
Name the number of players for georgia tech
CREATE TABLE table_2508633_2 (player VARCHAR, college VARCHAR)
SELECT COUNT(player) FROM table_2508633_2 WHERE college = "Georgia Tech"
### Context: CREATE TABLE table_2508633_2 (player VARCHAR, college VARCHAR) ### Question: Name the number of players for georgia tech ### Answer: SELECT COUNT(player) FROM table_2508633_2 WHERE college = "Georgia Tech"
Name the most pick number for guard and kansas city chiefs
CREATE TABLE table_2508633_2 (pick__number INTEGER, position VARCHAR, nfl_team VARCHAR)
SELECT MAX(pick__number) FROM table_2508633_2 WHERE position = "Guard" AND nfl_team = "Kansas City Chiefs"
### Context: CREATE TABLE table_2508633_2 (pick__number INTEGER, position VARCHAR, nfl_team VARCHAR) ### Question: Name the most pick number for guard and kansas city chiefs ### Answer: SELECT MAX(pick__number) FROM table_2508633_2 WHERE position = "Guard" AND nfl_team = "Kansas City Chiefs"
Name the nfl team for pick number 151
CREATE TABLE table_2508633_6 (nfl_team VARCHAR, pick__number VARCHAR)
SELECT nfl_team FROM table_2508633_6 WHERE pick__number = 151
### Context: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, pick__number VARCHAR) ### Question: Name the nfl team for pick number 151 ### Answer: SELECT nfl_team FROM table_2508633_6 WHERE pick__number = 151
Name the college for houston oilers
CREATE TABLE table_2508633_6 (college VARCHAR, nfl_team VARCHAR)
SELECT college FROM table_2508633_6 WHERE nfl_team = "Houston Oilers"
### Context: CREATE TABLE table_2508633_6 (college VARCHAR, nfl_team VARCHAR) ### Question: Name the college for houston oilers ### Answer: SELECT college FROM table_2508633_6 WHERE nfl_team = "Houston Oilers"
Name the most pick number for illinois
CREATE TABLE table_2508633_6 (pick__number INTEGER, college VARCHAR)
SELECT MAX(pick__number) FROM table_2508633_6 WHERE college = "Illinois"
### Context: CREATE TABLE table_2508633_6 (pick__number INTEGER, college VARCHAR) ### Question: Name the most pick number for illinois ### Answer: SELECT MAX(pick__number) FROM table_2508633_6 WHERE college = "Illinois"
Name the total number for nfl team for ellis gardner
CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)
SELECT COUNT(nfl_team) FROM table_2508633_6 WHERE player = "Ellis Gardner"
### Context: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR) ### Question: Name the total number for nfl team for ellis gardner ### Answer: SELECT COUNT(nfl_team) FROM table_2508633_6 WHERE player = "Ellis Gardner"
Name the position for delaware
CREATE TABLE table_2508633_6 (position VARCHAR, college VARCHAR)
SELECT position FROM table_2508633_6 WHERE college = "Delaware"
### Context: CREATE TABLE table_2508633_6 (position VARCHAR, college VARCHAR) ### Question: Name the position for delaware ### Answer: SELECT position FROM table_2508633_6 WHERE college = "Delaware"
Name the nfl team for eric williams
CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR)
SELECT nfl_team FROM table_2508633_6 WHERE player = "Eric Williams"
### Context: CREATE TABLE table_2508633_6 (nfl_team VARCHAR, player VARCHAR) ### Question: Name the nfl team for eric williams ### Answer: SELECT nfl_team FROM table_2508633_6 WHERE player = "Eric Williams"
What NFL team picked a player from Jackson State?
CREATE TABLE table_2508633_9 (nfl_team VARCHAR, college VARCHAR)
SELECT nfl_team FROM table_2508633_9 WHERE college = "Jackson State"
### Context: CREATE TABLE table_2508633_9 (nfl_team VARCHAR, college VARCHAR) ### Question: What NFL team picked a player from Jackson State? ### Answer: SELECT nfl_team FROM table_2508633_9 WHERE college = "Jackson State"
What position was the draft pick that came from Langston?
CREATE TABLE table_2508633_9 (position VARCHAR, college VARCHAR)
SELECT position FROM table_2508633_9 WHERE college = "Langston"
### Context: CREATE TABLE table_2508633_9 (position VARCHAR, college VARCHAR) ### Question: What position was the draft pick that came from Langston? ### Answer: SELECT position FROM table_2508633_9 WHERE college = "Langston"
How many players were the running back draft pick for the New England Patriots?
CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR, position VARCHAR)
SELECT COUNT(player) FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Running back"
### Context: CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR, position VARCHAR) ### Question: How many players were the running back draft pick for the New England Patriots? ### Answer: SELECT COUNT(player) FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Running back"
Who was the draft pick for Kansas City Chiefs?
CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR)
SELECT player FROM table_2508633_9 WHERE nfl_team = "Kansas City Chiefs"
### Context: CREATE TABLE table_2508633_9 (player VARCHAR, nfl_team VARCHAR) ### Question: Who was the draft pick for Kansas City Chiefs? ### Answer: SELECT player FROM table_2508633_9 WHERE nfl_team = "Kansas City Chiefs"
What college did the tight end draft pick for New England Patriots come from?
CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR)
SELECT college FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Tight end"
### Context: CREATE TABLE table_2508633_9 (college VARCHAR, nfl_team VARCHAR, position VARCHAR) ### Question: What college did the tight end draft pick for New England Patriots come from? ### Answer: SELECT college FROM table_2508633_9 WHERE nfl_team = "New England Patriots" AND position = "Tight end"
What is the Cuchumela Municipality minimum?
CREATE TABLE table_2509112_3 (cuchumuela_municipality INTEGER)
SELECT MIN(cuchumuela_municipality) FROM table_2509112_3
### Context: CREATE TABLE table_2509112_3 (cuchumuela_municipality INTEGER) ### Question: What is the Cuchumela Municipality minimum? ### Answer: SELECT MIN(cuchumuela_municipality) FROM table_2509112_3
If Villa Rivero Municipality if 7, what is the language?
CREATE TABLE table_2509112_3 (language VARCHAR, villa_rivero_municipality VARCHAR)
SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7
### Context: CREATE TABLE table_2509112_3 (language VARCHAR, villa_rivero_municipality VARCHAR) ### Question: If Villa Rivero Municipality if 7, what is the language? ### Answer: SELECT language FROM table_2509112_3 WHERE villa_rivero_municipality = 7
What is the language total number if the Tacachi Municipality is 3?
CREATE TABLE table_2509112_3 (language VARCHAR, tacachi_municipality VARCHAR)
SELECT COUNT(language) FROM table_2509112_3 WHERE tacachi_municipality = 3
### Context: CREATE TABLE table_2509112_3 (language VARCHAR, tacachi_municipality VARCHAR) ### Question: What is the language total number if the Tacachi Municipality is 3? ### Answer: SELECT COUNT(language) FROM table_2509112_3 WHERE tacachi_municipality = 3
If the language is another native, what is the San Benito Municipality total number?
CREATE TABLE table_2509112_3 (san_benito_municipality VARCHAR, language VARCHAR)
SELECT COUNT(san_benito_municipality) FROM table_2509112_3 WHERE language = "Another native"
### Context: CREATE TABLE table_2509112_3 (san_benito_municipality VARCHAR, language VARCHAR) ### Question: If the language is another native, what is the San Benito Municipality total number? ### Answer: SELECT COUNT(san_benito_municipality) FROM table_2509112_3 WHERE language = "Another native"
If the language is Spanish, what is the Vinto Municipality minimum?
CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Spanish"
### Context: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR) ### Question: If the language is Spanish, what is the Vinto Municipality minimum? ### Answer: SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Spanish"
If the Vinto Municipality is 18630, what is the Quillacollo Municipality?
CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER, vinto_municipality VARCHAR)
SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630
### Context: CREATE TABLE table_2509113_2 (quillacollo_municipality INTEGER, vinto_municipality VARCHAR) ### Question: If the Vinto Municipality is 18630, what is the Quillacollo Municipality? ### Answer: SELECT MAX(quillacollo_municipality) FROM table_2509113_2 WHERE vinto_municipality = 18630
What is the Sipe Sipe Municipality minimum if the language is Quechua?
CREATE TABLE table_2509113_2 (sipe_sipe_municipality INTEGER, language VARCHAR)
SELECT MIN(sipe_sipe_municipality) FROM table_2509113_2 WHERE language = "Quechua"
### Context: CREATE TABLE table_2509113_2 (sipe_sipe_municipality INTEGER, language VARCHAR) ### Question: What is the Sipe Sipe Municipality minimum if the language is Quechua? ### Answer: SELECT MIN(sipe_sipe_municipality) FROM table_2509113_2 WHERE language = "Quechua"
If the language is Native and Spanish, what is the Vinto Municipality minimum?
CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR)
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Native and Spanish"
### Context: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, language VARCHAR) ### Question: If the language is Native and Spanish, what is the Vinto Municipality minimum? ### Answer: SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE language = "Native and Spanish"
If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum?
CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR)
SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE quillacollo_municipality = 93131
### Context: CREATE TABLE table_2509113_2 (vinto_municipality INTEGER, quillacollo_municipality VARCHAR) ### Question: If the Quillacollo Municipality is 93131, what is the Vinto Municipality minimum? ### Answer: SELECT MIN(vinto_municipality) FROM table_2509113_2 WHERE quillacollo_municipality = 93131
Name the language for villa 1167
CREATE TABLE table_2509350_3 (language VARCHAR, villa_alcalá_municipality VARCHAR)
SELECT language FROM table_2509350_3 WHERE villa_alcalá_municipality = 1167
### Context: CREATE TABLE table_2509350_3 (language VARCHAR, villa_alcalá_municipality VARCHAR) ### Question: Name the language for villa 1167 ### Answer: SELECT language FROM table_2509350_3 WHERE villa_alcalá_municipality = 1167
Name the most padilla municipality for quechua
CREATE TABLE table_2509350_3 (padilla_municipality INTEGER, language VARCHAR)
SELECT MAX(padilla_municipality) FROM table_2509350_3 WHERE language = "Quechua"
### Context: CREATE TABLE table_2509350_3 (padilla_municipality INTEGER, language VARCHAR) ### Question: Name the most padilla municipality for quechua ### Answer: SELECT MAX(padilla_municipality) FROM table_2509350_3 WHERE language = "Quechua"
Name the language for sopachuy 10
CREATE TABLE table_2509350_3 (language VARCHAR, sopachuy_municipality VARCHAR)
SELECT language FROM table_2509350_3 WHERE sopachuy_municipality = 10
### Context: CREATE TABLE table_2509350_3 (language VARCHAR, sopachuy_municipality VARCHAR) ### Question: Name the language for sopachuy 10 ### Answer: SELECT language FROM table_2509350_3 WHERE sopachuy_municipality = 10
Name the number of tomina for villa alcala for 176
CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR)
SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176
### Context: CREATE TABLE table_2509350_3 (tomina_municipality VARCHAR, villa_alcalá_municipality VARCHAR) ### Question: Name the number of tomina for villa alcala for 176 ### Answer: SELECT COUNT(tomina_municipality) FROM table_2509350_3 WHERE villa_alcalá_municipality = 176
Name the least tomina for el villar being 4
CREATE TABLE table_2509350_3 (tomina_municipality INTEGER, el_villar_municipality VARCHAR)
SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4
### Context: CREATE TABLE table_2509350_3 (tomina_municipality INTEGER, el_villar_municipality VARCHAR) ### Question: Name the least tomina for el villar being 4 ### Answer: SELECT MIN(tomina_municipality) FROM table_2509350_3 WHERE el_villar_municipality = 4
Name the language for el villar 1264
CREATE TABLE table_2509350_3 (language VARCHAR, el_villar_municipality VARCHAR)
SELECT language FROM table_2509350_3 WHERE el_villar_municipality = 1264
### Context: CREATE TABLE table_2509350_3 (language VARCHAR, el_villar_municipality VARCHAR) ### Question: Name the language for el villar 1264 ### Answer: SELECT language FROM table_2509350_3 WHERE el_villar_municipality = 1264
Name the total number of games for goals against being 352
CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR)
SELECT COUNT(games) FROM table_2509505_1 WHERE goals_against = 352
### Context: CREATE TABLE table_2509505_1 (games VARCHAR, goals_against VARCHAR) ### Question: Name the total number of games for goals against being 352 ### Answer: SELECT COUNT(games) FROM table_2509505_1 WHERE goals_against = 352
Name the total number of games for lost being 41
CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR)
SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41
### Context: CREATE TABLE table_2509505_1 (games VARCHAR, lost VARCHAR) ### Question: Name the total number of games for lost being 41 ### Answer: SELECT COUNT(games) FROM table_2509505_1 WHERE lost = 41
Name the most goals for 56 points
CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR)
SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56
### Context: CREATE TABLE table_2509505_1 (goals_for INTEGER, points VARCHAR) ### Question: Name the most goals for 56 points ### Answer: SELECT MAX(goals_for) FROM table_2509505_1 WHERE points = 56
Name the number of won for goals for being 274
CREATE TABLE table_2509505_1 (won VARCHAR, goals_for VARCHAR)
SELECT COUNT(won) FROM table_2509505_1 WHERE goals_for = 274
### Context: CREATE TABLE table_2509505_1 (won VARCHAR, goals_for VARCHAR) ### Question: Name the number of won for goals for being 274 ### Answer: SELECT COUNT(won) FROM table_2509505_1 WHERE goals_for = 274
When the quiabaya municipality is 2 what is the combaya municipality?
CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)
SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "2"
### Context: CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR) ### Question: When the quiabaya municipality is 2 what is the combaya municipality? ### Answer: SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "2"
What is the guanay municipality when the tacacoma municipality is 4.321?
CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, tacacoma_municipality VARCHAR)
SELECT guanay_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "4.321"
### Context: CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, tacacoma_municipality VARCHAR) ### Question: What is the guanay municipality when the tacacoma municipality is 4.321? ### Answer: SELECT guanay_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "4.321"
How many people in the sorata municipality when the quiabaya municipality has 33?
CREATE TABLE table_2509202_2 (sorata_municipality VARCHAR, quiabaya_municipality VARCHAR)
SELECT sorata_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
### Context: CREATE TABLE table_2509202_2 (sorata_municipality VARCHAR, quiabaya_municipality VARCHAR) ### Question: How many people in the sorata municipality when the quiabaya municipality has 33? ### Answer: SELECT sorata_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
What is the number for combaya municipality when quiabaya municipality is 33?
CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)
SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
### Context: CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR) ### Question: What is the number for combaya municipality when quiabaya municipality is 33? ### Answer: SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "33"
tipuani municipality when tacacoma municipality is 6?
CREATE TABLE table_2509202_2 (tipuani_municipality VARCHAR, tacacoma_municipality VARCHAR)
SELECT tipuani_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "6"
### Context: CREATE TABLE table_2509202_2 (tipuani_municipality VARCHAR, tacacoma_municipality VARCHAR) ### Question: tipuani municipality when tacacoma municipality is 6? ### Answer: SELECT tipuani_municipality FROM table_2509202_2 WHERE tacacoma_municipality = "6"
What is the number for the guanay municipality when combaya municipality is 0?
CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, combaya_municipality VARCHAR)
SELECT guanay_municipality FROM table_2509202_2 WHERE combaya_municipality = "0"
### Context: CREATE TABLE table_2509202_2 (guanay_municipality VARCHAR, combaya_municipality VARCHAR) ### Question: What is the number for the guanay municipality when combaya municipality is 0? ### Answer: SELECT guanay_municipality FROM table_2509202_2 WHERE combaya_municipality = "0"
What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?
CREATE TABLE table_251272_4 (year INTEGER, location VARCHAR)
SELECT MIN(year) FROM table_251272_4 WHERE location = "Martyrs' Mausoleum, Rangoon, Burma"
### Context: CREATE TABLE table_251272_4 (year INTEGER, location VARCHAR) ### Question: What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma? ### Answer: SELECT MIN(year) FROM table_251272_4 WHERE location = "Martyrs' Mausoleum, Rangoon, Burma"
Where was the attempt on the Prime Minister of Sri Lanka's life made?
CREATE TABLE table_251272_4 (location VARCHAR, title_at_the_time VARCHAR)
SELECT location FROM table_251272_4 WHERE title_at_the_time = "Prime Minister of Sri Lanka"
### Context: CREATE TABLE table_251272_4 (location VARCHAR, title_at_the_time VARCHAR) ### Question: Where was the attempt on the Prime Minister of Sri Lanka's life made? ### Answer: SELECT location FROM table_251272_4 WHERE title_at_the_time = "Prime Minister of Sri Lanka"
What is every original language for book series Little House on the Prairie?
CREATE TABLE table_2512935_8 (original_language VARCHAR, book_series VARCHAR)
SELECT original_language FROM table_2512935_8 WHERE book_series = "Little House on the Prairie"
### Context: CREATE TABLE table_2512935_8 (original_language VARCHAR, book_series VARCHAR) ### Question: What is every original language for book series Little House on the Prairie? ### Answer: SELECT original_language FROM table_2512935_8 WHERE book_series = "Little House on the Prairie"
What are all approximate sales for the author Laura Ingalls Wilder?
CREATE TABLE table_2512935_8 (approximate_sales VARCHAR, author VARCHAR)
SELECT approximate_sales FROM table_2512935_8 WHERE author = "Laura Ingalls Wilder"
### Context: CREATE TABLE table_2512935_8 (approximate_sales VARCHAR, author VARCHAR) ### Question: What are all approximate sales for the author Laura Ingalls Wilder? ### Answer: SELECT approximate_sales FROM table_2512935_8 WHERE author = "Laura Ingalls Wilder"
Name the most number for notre dame prep
CREATE TABLE table_25118909_3 (_number INTEGER, former_school VARCHAR)
SELECT MAX(_number) FROM table_25118909_3 WHERE former_school = "Notre Dame Prep"
### Context: CREATE TABLE table_25118909_3 (_number INTEGER, former_school VARCHAR) ### Question: Name the most number for notre dame prep ### Answer: SELECT MAX(_number) FROM table_25118909_3 WHERE former_school = "Notre Dame Prep"
Name the ends won for blank ends for 0
CREATE TABLE table_25107064_2 (Ends VARCHAR, blank_ends VARCHAR)
SELECT Ends AS won FROM table_25107064_2 WHERE blank_ends = 0
### Context: CREATE TABLE table_25107064_2 (Ends VARCHAR, blank_ends VARCHAR) ### Question: Name the ends won for blank ends for 0 ### Answer: SELECT Ends AS won FROM table_25107064_2 WHERE blank_ends = 0
Name the stolen ends for germany
CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR)
SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany
### Context: CREATE TABLE table_25107064_2 (stolen_ends INTEGER, country VARCHAR, Germany VARCHAR) ### Question: Name the stolen ends for germany ### Answer: SELECT MIN(stolen_ends) FROM table_25107064_2 WHERE country = Germany
Name the least ends won for pf being 78
CREATE TABLE table_25107064_2 (Ends INTEGER, pf VARCHAR)
SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf = 78
### Context: CREATE TABLE table_25107064_2 (Ends INTEGER, pf VARCHAR) ### Question: Name the least ends won for pf being 78 ### Answer: SELECT MIN(Ends) AS won FROM table_25107064_2 WHERE pf = 78
What is the stadium in Kuopio?
CREATE TABLE table_25129482_1 (stadium VARCHAR, location VARCHAR)
SELECT stadium FROM table_25129482_1 WHERE location = "Kuopio"
### Context: CREATE TABLE table_25129482_1 (stadium VARCHAR, location VARCHAR) ### Question: What is the stadium in Kuopio? ### Answer: SELECT stadium FROM table_25129482_1 WHERE location = "Kuopio"
Who is the kitmaker for TPS?
CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR)
SELECT kitmaker FROM table_25129482_1 WHERE club = "TPS"
### Context: CREATE TABLE table_25129482_1 (kitmaker VARCHAR, club VARCHAR) ### Question: Who is the kitmaker for TPS? ### Answer: SELECT kitmaker FROM table_25129482_1 WHERE club = "TPS"
What is the largest capacity for a stadium?
CREATE TABLE table_25129482_1 (capacity INTEGER)
SELECT MAX(capacity) FROM table_25129482_1
### Context: CREATE TABLE table_25129482_1 (capacity INTEGER) ### Question: What is the largest capacity for a stadium? ### Answer: SELECT MAX(capacity) FROM table_25129482_1
Which stadium is managed by Kari Martonen?
CREATE TABLE table_25129482_1 (stadium VARCHAR, manager VARCHAR)
SELECT stadium FROM table_25129482_1 WHERE manager = "Kari Martonen"
### Context: CREATE TABLE table_25129482_1 (stadium VARCHAR, manager VARCHAR) ### Question: Which stadium is managed by Kari Martonen? ### Answer: SELECT stadium FROM table_25129482_1 WHERE manager = "Kari Martonen"
How many capacities are given for FF Jaro club?
CREATE TABLE table_25129482_1 (capacity VARCHAR, club VARCHAR)
SELECT COUNT(capacity) FROM table_25129482_1 WHERE club = "FF Jaro"
### Context: CREATE TABLE table_25129482_1 (capacity VARCHAR, club VARCHAR) ### Question: How many capacities are given for FF Jaro club? ### Answer: SELECT COUNT(capacity) FROM table_25129482_1 WHERE club = "FF Jaro"
How many managers for club in Turku where kitmaker is Puma?
CREATE TABLE table_25129482_1 (manager VARCHAR, kitmaker VARCHAR, location VARCHAR)
SELECT COUNT(manager) FROM table_25129482_1 WHERE kitmaker = "Puma" AND location = "Turku"
### Context: CREATE TABLE table_25129482_1 (manager VARCHAR, kitmaker VARCHAR, location VARCHAR) ### Question: How many managers for club in Turku where kitmaker is Puma? ### Answer: SELECT COUNT(manager) FROM table_25129482_1 WHERE kitmaker = "Puma" AND location = "Turku"