question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Who was the director for the episode in season #50? | CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR) | SELECT directed_by FROM table_16471432_4 WHERE series__number = 50 | ### Context: CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR) ### Question: Who was the director for the episode in season #50? ### Answer: SELECT directed_by FROM table_16471432_4 WHERE series__number = 50 |
How many directors were there in total for the episode with series #62? | CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR) | SELECT COUNT(directed_by) FROM table_16471432_4 WHERE series__number = 62 | ### Context: CREATE TABLE table_16471432_4 (directed_by VARCHAR, series__number VARCHAR) ### Question: How many directors were there in total for the episode with series #62? ### Answer: SELECT COUNT(directed_by) FROM table_16471432_4 WHERE series__number = 62 |
What are the nationalities of players who attended duke? | CREATE TABLE table_16494599_10 (nationality VARCHAR, school_club_team VARCHAR) | SELECT COUNT(nationality) FROM table_16494599_10 WHERE school_club_team = "Duke" | ### Context: CREATE TABLE table_16494599_10 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What are the nationalities of players who attended duke? ### Answer: SELECT COUNT(nationality) FROM table_16494599_10 WHERE school_club_team = "Duke" |
How many nationalities does athlete Casey Jacobsen have? | CREATE TABLE table_16494599_10 (nationality VARCHAR, player VARCHAR) | SELECT COUNT(nationality) FROM table_16494599_10 WHERE player = "Casey Jacobsen" | ### Context: CREATE TABLE table_16494599_10 (nationality VARCHAR, player VARCHAR) ### Question: How many nationalities does athlete Casey Jacobsen have? ### Answer: SELECT COUNT(nationality) FROM table_16494599_10 WHERE player = "Casey Jacobsen" |
Who are the players that have attended Stanford? | CREATE TABLE table_16494599_10 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_16494599_10 WHERE school_club_team = "Stanford" | ### Context: CREATE TABLE table_16494599_10 (player VARCHAR, school_club_team VARCHAR) ### Question: Who are the players that have attended Stanford? ### Answer: SELECT player FROM table_16494599_10 WHERE school_club_team = "Stanford" |
How many athletes play the position of guard? | CREATE TABLE table_16494599_10 (player VARCHAR, position VARCHAR) | SELECT COUNT(player) FROM table_16494599_10 WHERE position = "Guard" | ### Context: CREATE TABLE table_16494599_10 (player VARCHAR, position VARCHAR) ### Question: How many athletes play the position of guard? ### Answer: SELECT COUNT(player) FROM table_16494599_10 WHERE position = "Guard" |
During what years did athletes who attended school in Minnesota play for the Grizzlies? | CREATE TABLE table_16494599_10 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) | SELECT years_for_grizzlies FROM table_16494599_10 WHERE school_club_team = "Minnesota" | ### Context: CREATE TABLE table_16494599_10 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) ### Question: During what years did athletes who attended school in Minnesota play for the Grizzlies? ### Answer: SELECT years_for_grizzlies FROM table_16494599_10 WHERE school_club_team = "Minnesota" |
How many players went to depaul? | CREATE TABLE table_16494599_2 (player VARCHAR, school_club_team VARCHAR) | SELECT COUNT(player) FROM table_16494599_2 WHERE school_club_team = "DePaul" | ### Context: CREATE TABLE table_16494599_2 (player VARCHAR, school_club_team VARCHAR) ### Question: How many players went to depaul? ### Answer: SELECT COUNT(player) FROM table_16494599_2 WHERE school_club_team = "DePaul" |
What school did the player who was with the grizzles in 2011 attend? | CREATE TABLE table_16494599_3 (school_club_team VARCHAR, years_for_grizzlies VARCHAR) | SELECT school_club_team FROM table_16494599_3 WHERE years_for_grizzlies = "2011" | ### Context: CREATE TABLE table_16494599_3 (school_club_team VARCHAR, years_for_grizzlies VARCHAR) ### Question: What school did the player who was with the grizzles in 2011 attend? ### Answer: SELECT school_club_team FROM table_16494599_3 WHERE years_for_grizzlies = "2011" |
What players attended missouri? | CREATE TABLE table_16494599_3 (player VARCHAR, school_club_team VARCHAR) | SELECT player FROM table_16494599_3 WHERE school_club_team = "Missouri" | ### Context: CREATE TABLE table_16494599_3 (player VARCHAR, school_club_team VARCHAR) ### Question: What players attended missouri? ### Answer: SELECT player FROM table_16494599_3 WHERE school_club_team = "Missouri" |
What position(s) does the player from seton hall play? | CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_16494599_4 WHERE school_club_team = "Seton Hall" | ### Context: CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR) ### Question: What position(s) does the player from seton hall play? ### Answer: SELECT position FROM table_16494599_4 WHERE school_club_team = "Seton Hall" |
What number does the player who was with the grizzles in 1999 wear? | CREATE TABLE table_16494599_4 (no INTEGER, years_for_grizzlies VARCHAR) | SELECT MIN(no) FROM table_16494599_4 WHERE years_for_grizzlies = "1999" | ### Context: CREATE TABLE table_16494599_4 (no INTEGER, years_for_grizzlies VARCHAR) ### Question: What number does the player who was with the grizzles in 1999 wear? ### Answer: SELECT MIN(no) FROM table_16494599_4 WHERE years_for_grizzlies = "1999" |
What players play guard? | CREATE TABLE table_16494599_4 (player VARCHAR, position VARCHAR) | SELECT player FROM table_16494599_4 WHERE position = "Guard" | ### Context: CREATE TABLE table_16494599_4 (player VARCHAR, position VARCHAR) ### Question: What players play guard? ### Answer: SELECT player FROM table_16494599_4 WHERE position = "Guard" |
What position(s) do players from bowling green play? | CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_16494599_4 WHERE school_club_team = "Bowling Green" | ### Context: CREATE TABLE table_16494599_4 (position VARCHAR, school_club_team VARCHAR) ### Question: What position(s) do players from bowling green play? ### Answer: SELECT position FROM table_16494599_4 WHERE school_club_team = "Bowling Green" |
Name the most losses for leslie mann | CREATE TABLE table_16512618_1 (losses INTEGER, manager VARCHAR) | SELECT MAX(losses) FROM table_16512618_1 WHERE manager = "Leslie Mann" | ### Context: CREATE TABLE table_16512618_1 (losses INTEGER, manager VARCHAR) ### Question: Name the most losses for leslie mann ### Answer: SELECT MAX(losses) FROM table_16512618_1 WHERE manager = "Leslie Mann" |
who is the vacator whre the district is new jersey 2nd? | CREATE TABLE table_1651764_3 (vacator VARCHAR, district VARCHAR) | SELECT vacator FROM table_1651764_3 WHERE district = "New Jersey 2nd" | ### Context: CREATE TABLE table_1651764_3 (vacator VARCHAR, district VARCHAR) ### Question: who is the vacator whre the district is new jersey 2nd? ### Answer: SELECT vacator FROM table_1651764_3 WHERE district = "New Jersey 2nd" |
what is the date the successor seated because the person died august 17, 1954? | CREATE TABLE table_1652224_5 (date_successor_seated VARCHAR, reason_for_change VARCHAR) | SELECT date_successor_seated FROM table_1652224_5 WHERE reason_for_change = "Died August 17, 1954" | ### Context: CREATE TABLE table_1652224_5 (date_successor_seated VARCHAR, reason_for_change VARCHAR) ### Question: what is the date the successor seated because the person died august 17, 1954? ### Answer: SELECT date_successor_seated FROM table_1652224_5 WHERE reason_for_change = "Died August 17, 1954" |
who was the successor for district ohio 15th? | CREATE TABLE table_1652224_5 (successor VARCHAR, district VARCHAR) | SELECT successor FROM table_1652224_5 WHERE district = "Ohio 15th" | ### Context: CREATE TABLE table_1652224_5 (successor VARCHAR, district VARCHAR) ### Question: who was the successor for district ohio 15th? ### Answer: SELECT successor FROM table_1652224_5 WHERE district = "Ohio 15th" |
what is the total number for reason for change is district michigan 3rd? | CREATE TABLE table_1652224_5 (reason_for_change VARCHAR, district VARCHAR) | SELECT COUNT(reason_for_change) FROM table_1652224_5 WHERE district = "Michigan 3rd" | ### Context: CREATE TABLE table_1652224_5 (reason_for_change VARCHAR, district VARCHAR) ### Question: what is the total number for reason for change is district michigan 3rd? ### Answer: SELECT COUNT(reason_for_change) FROM table_1652224_5 WHERE district = "Michigan 3rd" |
What day did ARchie Roberts die? | CREATE TABLE table_16527640_3 (date_of_death VARCHAR, player VARCHAR) | SELECT date_of_death FROM table_16527640_3 WHERE player = "Archie Roberts" | ### Context: CREATE TABLE table_16527640_3 (date_of_death VARCHAR, player VARCHAR) ### Question: What day did ARchie Roberts die? ### Answer: SELECT date_of_death FROM table_16527640_3 WHERE player = "Archie Roberts" |
What location had a VFL Game number of 9? | CREATE TABLE table_16527640_3 (location VARCHAR, vfl_games VARCHAR) | SELECT location FROM table_16527640_3 WHERE vfl_games = 9 | ### Context: CREATE TABLE table_16527640_3 (location VARCHAR, vfl_games VARCHAR) ### Question: What location had a VFL Game number of 9? ### Answer: SELECT location FROM table_16527640_3 WHERE vfl_games = 9 |
How many VFL games were located off Goodenough Island Milne Bay? | CREATE TABLE table_16527640_3 (vfl_games VARCHAR, location VARCHAR) | SELECT vfl_games FROM table_16527640_3 WHERE location = "off Goodenough Island Milne Bay" | ### Context: CREATE TABLE table_16527640_3 (vfl_games VARCHAR, location VARCHAR) ### Question: How many VFL games were located off Goodenough Island Milne Bay? ### Answer: SELECT vfl_games FROM table_16527640_3 WHERE location = "off Goodenough Island Milne Bay" |
Name the 3rd stage for parameter of thrust | CREATE TABLE table_16537783_2 (parameter VARCHAR) | SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = "Thrust" | ### Context: CREATE TABLE table_16537783_2 (parameter VARCHAR) ### Question: Name the 3rd stage for parameter of thrust ### Answer: SELECT 3 AS rd_stage FROM table_16537783_2 WHERE parameter = "Thrust" |
Name the 1st stage for parameter being diameter | CREATE TABLE table_16537783_2 (parameter VARCHAR) | SELECT 1 AS st_stage FROM table_16537783_2 WHERE parameter = "Diameter" | ### Context: CREATE TABLE table_16537783_2 (parameter VARCHAR) ### Question: Name the 1st stage for parameter being diameter ### Answer: SELECT 1 AS st_stage FROM table_16537783_2 WHERE parameter = "Diameter" |
Which archbishop was ordained as bishop November 30, 1925? | CREATE TABLE table_1656555_1 (archbishop VARCHAR, ordained_bishop VARCHAR) | SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = "November 30, 1925" | ### Context: CREATE TABLE table_1656555_1 (archbishop VARCHAR, ordained_bishop VARCHAR) ### Question: Which archbishop was ordained as bishop November 30, 1925? ### Answer: SELECT archbishop FROM table_1656555_1 WHERE ordained_bishop = "November 30, 1925" |
What is the death date of the archbishop who was ordained as bishop April 26, 1927? | CREATE TABLE table_1656555_1 (died VARCHAR, ordained_bishop VARCHAR) | SELECT died FROM table_1656555_1 WHERE ordained_bishop = "April 26, 1927" | ### Context: CREATE TABLE table_1656555_1 (died VARCHAR, ordained_bishop VARCHAR) ### Question: What is the death date of the archbishop who was ordained as bishop April 26, 1927? ### Answer: SELECT died FROM table_1656555_1 WHERE ordained_bishop = "April 26, 1927" |
How many appointed archbishops were ordained as priests on December 20, 1959 | CREATE TABLE table_1656555_1 (Appointed VARCHAR, ordained_priest VARCHAR) | SELECT COUNT(Appointed) AS archbishop FROM table_1656555_1 WHERE ordained_priest = "December 20, 1959" | ### Context: CREATE TABLE table_1656555_1 (Appointed VARCHAR, ordained_priest VARCHAR) ### Question: How many appointed archbishops were ordained as priests on December 20, 1959 ### Answer: SELECT COUNT(Appointed) AS archbishop FROM table_1656555_1 WHERE ordained_priest = "December 20, 1959" |
What date was the person ordained as a priest in December 1838 ordained as a bishop? | CREATE TABLE table_1656555_1 (ordained_bishop VARCHAR, ordained_priest VARCHAR) | SELECT ordained_bishop FROM table_1656555_1 WHERE ordained_priest = "December 1838" | ### Context: CREATE TABLE table_1656555_1 (ordained_bishop VARCHAR, ordained_priest VARCHAR) ### Question: What date was the person ordained as a priest in December 1838 ordained as a bishop? ### Answer: SELECT ordained_bishop FROM table_1656555_1 WHERE ordained_priest = "December 1838" |
When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest? | CREATE TABLE table_1656555_1 (ordained_priest VARCHAR, vacated_throne VARCHAR) | SELECT ordained_priest FROM table_1656555_1 WHERE vacated_throne = "August 18, 1885" | ### Context: CREATE TABLE table_1656555_1 (ordained_priest VARCHAR, vacated_throne VARCHAR) ### Question: When was the archbishop who vacated the throne on August 18, 1885 ordained as a priest? ### Answer: SELECT ordained_priest FROM table_1656555_1 WHERE vacated_throne = "August 18, 1885" |
How many players Bowled 4/125? | CREATE TABLE table_16570286_4 (player VARCHAR, best_bowling VARCHAR) | SELECT COUNT(player) FROM table_16570286_4 WHERE best_bowling = "4/125" | ### Context: CREATE TABLE table_16570286_4 (player VARCHAR, best_bowling VARCHAR) ### Question: How many players Bowled 4/125? ### Answer: SELECT COUNT(player) FROM table_16570286_4 WHERE best_bowling = "4/125" |
What number of wickets were there when the average was 22.66? | CREATE TABLE table_16570286_4 (wickets INTEGER, average VARCHAR) | SELECT MAX(wickets) FROM table_16570286_4 WHERE average = "22.66" | ### Context: CREATE TABLE table_16570286_4 (wickets INTEGER, average VARCHAR) ### Question: What number of wickets were there when the average was 22.66? ### Answer: SELECT MAX(wickets) FROM table_16570286_4 WHERE average = "22.66" |
How many wickets were there when average was 22.66? | CREATE TABLE table_16570286_4 (wickets VARCHAR, average VARCHAR) | SELECT wickets FROM table_16570286_4 WHERE average = "22.66" | ### Context: CREATE TABLE table_16570286_4 (wickets VARCHAR, average VARCHAR) ### Question: How many wickets were there when average was 22.66? ### Answer: SELECT wickets FROM table_16570286_4 WHERE average = "22.66" |
What was the best bowling score when the average was 23.33? | CREATE TABLE table_16570286_4 (best_bowling VARCHAR, average VARCHAR) | SELECT best_bowling FROM table_16570286_4 WHERE average = "23.33" | ### Context: CREATE TABLE table_16570286_4 (best_bowling VARCHAR, average VARCHAR) ### Question: What was the best bowling score when the average was 23.33? ### Answer: SELECT best_bowling FROM table_16570286_4 WHERE average = "23.33" |
How many matches had 11 wickets? | CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR) | SELECT MAX(matches) FROM table_16570286_4 WHERE wickets = 11 | ### Context: CREATE TABLE table_16570286_4 (matches INTEGER, wickets VARCHAR) ### Question: How many matches had 11 wickets? ### Answer: SELECT MAX(matches) FROM table_16570286_4 WHERE wickets = 11 |
How many wickets did Alec bedser have? | CREATE TABLE table_16570286_4 (wickets INTEGER, player VARCHAR) | SELECT MAX(wickets) FROM table_16570286_4 WHERE player = "Alec Bedser" | ### Context: CREATE TABLE table_16570286_4 (wickets INTEGER, player VARCHAR) ### Question: How many wickets did Alec bedser have? ### Answer: SELECT MAX(wickets) FROM table_16570286_4 WHERE player = "Alec Bedser" |
Who picked dimitri tsoumpas? | CREATE TABLE table_16575609_1 (cfl_team VARCHAR, player VARCHAR) | SELECT cfl_team FROM table_16575609_1 WHERE player = "Dimitri Tsoumpas" | ### Context: CREATE TABLE table_16575609_1 (cfl_team VARCHAR, player VARCHAR) ### Question: Who picked dimitri tsoumpas? ### Answer: SELECT cfl_team FROM table_16575609_1 WHERE player = "Dimitri Tsoumpas" |
What position did the winnipeg blue bombers draft? | CREATE TABLE table_16575609_1 (position VARCHAR, cfl_team VARCHAR) | SELECT position FROM table_16575609_1 WHERE cfl_team = "Winnipeg Blue Bombers" | ### Context: CREATE TABLE table_16575609_1 (position VARCHAR, cfl_team VARCHAR) ### Question: What position did the winnipeg blue bombers draft? ### Answer: SELECT position FROM table_16575609_1 WHERE cfl_team = "Winnipeg Blue Bombers" |
Where did Brendon Labatte get picked? | CREATE TABLE table_16575609_1 (pick__number INTEGER, player VARCHAR) | SELECT MIN(pick__number) FROM table_16575609_1 WHERE player = "Brendon LaBatte" | ### Context: CREATE TABLE table_16575609_1 (pick__number INTEGER, player VARCHAR) ### Question: Where did Brendon Labatte get picked? ### Answer: SELECT MIN(pick__number) FROM table_16575609_1 WHERE player = "Brendon LaBatte" |
Who picked a player from Weber State? | CREATE TABLE table_16575609_1 (cfl_team VARCHAR, college VARCHAR) | SELECT cfl_team FROM table_16575609_1 WHERE college = "Weber State" | ### Context: CREATE TABLE table_16575609_1 (cfl_team VARCHAR, college VARCHAR) ### Question: Who picked a player from Weber State? ### Answer: SELECT cfl_team FROM table_16575609_1 WHERE college = "Weber State" |
What position was taken out of Louisiana-Lafayette? | CREATE TABLE table_16575609_1 (position VARCHAR, college VARCHAR) | SELECT position FROM table_16575609_1 WHERE college = "Louisiana-Lafayette" | ### Context: CREATE TABLE table_16575609_1 (position VARCHAR, college VARCHAR) ### Question: What position was taken out of Louisiana-Lafayette? ### Answer: SELECT position FROM table_16575609_1 WHERE college = "Louisiana-Lafayette" |
Name the college for calgary stampeders | CREATE TABLE table_16575609_4 (college VARCHAR, cfl_team VARCHAR) | SELECT college FROM table_16575609_4 WHERE cfl_team = "Calgary Stampeders" | ### Context: CREATE TABLE table_16575609_4 (college VARCHAR, cfl_team VARCHAR) ### Question: Name the college for calgary stampeders ### Answer: SELECT college FROM table_16575609_4 WHERE cfl_team = "Calgary Stampeders" |
Name the most pick number for cfl team being edmonton eskimos | CREATE TABLE table_16575609_4 (pick__number INTEGER, cfl_team VARCHAR) | SELECT MAX(pick__number) FROM table_16575609_4 WHERE cfl_team = "Edmonton Eskimos" | ### Context: CREATE TABLE table_16575609_4 (pick__number INTEGER, cfl_team VARCHAR) ### Question: Name the most pick number for cfl team being edmonton eskimos ### Answer: SELECT MAX(pick__number) FROM table_16575609_4 WHERE cfl_team = "Edmonton Eskimos" |
How many days are associated with production code 210? | CREATE TABLE table_16581695_3 (original_airdate VARCHAR, production_code VARCHAR) | SELECT COUNT(original_airdate) FROM table_16581695_3 WHERE production_code = 210 | ### Context: CREATE TABLE table_16581695_3 (original_airdate VARCHAR, production_code VARCHAR) ### Question: How many days are associated with production code 210? ### Answer: SELECT COUNT(original_airdate) FROM table_16581695_3 WHERE production_code = 210 |
How many titles have a production code of 211? | CREATE TABLE table_16581695_3 (title VARCHAR, production_code VARCHAR) | SELECT COUNT(title) FROM table_16581695_3 WHERE production_code = 211 | ### Context: CREATE TABLE table_16581695_3 (title VARCHAR, production_code VARCHAR) ### Question: How many titles have a production code of 211? ### Answer: SELECT COUNT(title) FROM table_16581695_3 WHERE production_code = 211 |
How many seasons have a production code of 204? | CREATE TABLE table_16581695_3 (no_in_season VARCHAR, production_code VARCHAR) | SELECT COUNT(no_in_season) FROM table_16581695_3 WHERE production_code = 204 | ### Context: CREATE TABLE table_16581695_3 (no_in_season VARCHAR, production_code VARCHAR) ### Question: How many seasons have a production code of 204? ### Answer: SELECT COUNT(no_in_season) FROM table_16581695_3 WHERE production_code = 204 |
What title was written by Matt Wayne? | CREATE TABLE table_16581695_3 (title VARCHAR, written_by VARCHAR) | SELECT title FROM table_16581695_3 WHERE written_by = "Matt Wayne" | ### Context: CREATE TABLE table_16581695_3 (title VARCHAR, written_by VARCHAR) ### Question: What title was written by Matt Wayne? ### Answer: SELECT title FROM table_16581695_3 WHERE written_by = "Matt Wayne" |
What is the series episode number of the episode with production code 303? | CREATE TABLE table_16581695_4 (no_in_series VARCHAR, production_code VARCHAR) | SELECT no_in_series FROM table_16581695_4 WHERE production_code = "303" | ### Context: CREATE TABLE table_16581695_4 (no_in_series VARCHAR, production_code VARCHAR) ### Question: What is the series episode number of the episode with production code 303? ### Answer: SELECT no_in_series FROM table_16581695_4 WHERE production_code = "303" |
What is the production code for episode 15 in season 3? | CREATE TABLE table_16581695_4 (production_code VARCHAR, no_in_season VARCHAR) | SELECT production_code FROM table_16581695_4 WHERE no_in_season = "15" | ### Context: CREATE TABLE table_16581695_4 (production_code VARCHAR, no_in_season VARCHAR) ### Question: What is the production code for episode 15 in season 3? ### Answer: SELECT production_code FROM table_16581695_4 WHERE no_in_season = "15" |
Who directed episode 12 in season 3? | CREATE TABLE table_16581695_4 (directed_by VARCHAR, no_in_season VARCHAR) | SELECT directed_by FROM table_16581695_4 WHERE no_in_season = "12" | ### Context: CREATE TABLE table_16581695_4 (directed_by VARCHAR, no_in_season VARCHAR) ### Question: Who directed episode 12 in season 3? ### Answer: SELECT directed_by FROM table_16581695_4 WHERE no_in_season = "12" |
How many tree species are listed when the total plant species is 258? | CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) | SELECT tree_species FROM table_16577990_1 WHERE total_plant_species = 258 | ### Context: CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) ### Question: How many tree species are listed when the total plant species is 258? ### Answer: SELECT tree_species FROM table_16577990_1 WHERE total_plant_species = 258 |
How many tree species are there when the total plant species is 113? | CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) | SELECT COUNT(tree_species) FROM table_16577990_1 WHERE total_plant_species = 113 | ### Context: CREATE TABLE table_16577990_1 (tree_species VARCHAR, total_plant_species VARCHAR) ### Question: How many tree species are there when the total plant species is 113? ### Answer: SELECT COUNT(tree_species) FROM table_16577990_1 WHERE total_plant_species = 113 |
What is the size of Itwara central forest reserve? | CREATE TABLE table_16577990_1 (size_in_km² INTEGER, central_forest_reserve VARCHAR) | SELECT MIN(size_in_km²) FROM table_16577990_1 WHERE central_forest_reserve = "Itwara" | ### Context: CREATE TABLE table_16577990_1 (size_in_km² INTEGER, central_forest_reserve VARCHAR) ### Question: What is the size of Itwara central forest reserve? ### Answer: SELECT MIN(size_in_km²) FROM table_16577990_1 WHERE central_forest_reserve = "Itwara" |
How many tree species are in the kitechura reserve? | CREATE TABLE table_16577990_1 (tree_species VARCHAR, central_forest_reserve VARCHAR) | SELECT tree_species FROM table_16577990_1 WHERE central_forest_reserve = "Kitechura" | ### Context: CREATE TABLE table_16577990_1 (tree_species VARCHAR, central_forest_reserve VARCHAR) ### Question: How many tree species are in the kitechura reserve? ### Answer: SELECT tree_species FROM table_16577990_1 WHERE central_forest_reserve = "Kitechura" |
What episode titles have 17.93 million U.S. viewers? | CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "17.93" | ### Context: CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What episode titles have 17.93 million U.S. viewers? ### Answer: SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "17.93" |
What episode titles have 20.94 million U.S. viewers? | CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) | SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "20.94" | ### Context: CREATE TABLE table_16617025_1 (title VARCHAR, us_viewers__millions_ VARCHAR) ### Question: What episode titles have 20.94 million U.S. viewers? ### Answer: SELECT title FROM table_16617025_1 WHERE us_viewers__millions_ = "20.94" |
In what seasons did Kate Woods direct Without A Trace? | CREATE TABLE table_16617025_1 (season__number VARCHAR, directed_by VARCHAR) | SELECT season__number FROM table_16617025_1 WHERE directed_by = "Kate Woods" | ### Context: CREATE TABLE table_16617025_1 (season__number VARCHAR, directed_by VARCHAR) ### Question: In what seasons did Kate Woods direct Without A Trace? ### Answer: SELECT season__number FROM table_16617025_1 WHERE directed_by = "Kate Woods" |
Who wrote Season 8? | CREATE TABLE table_16617025_1 (written_by VARCHAR, season__number VARCHAR) | SELECT written_by FROM table_16617025_1 WHERE season__number = 8 | ### Context: CREATE TABLE table_16617025_1 (written_by VARCHAR, season__number VARCHAR) ### Question: Who wrote Season 8? ### Answer: SELECT written_by FROM table_16617025_1 WHERE season__number = 8 |
When did the country that produced 1,213,000 (21st) bbl/day join Opec? | CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR) | SELECT joined_opec FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" | ### Context: CREATE TABLE table_166346_1 (joined_opec VARCHAR, production___bbl__day_ VARCHAR) ### Question: When did the country that produced 1,213,000 (21st) bbl/day join Opec? ### Answer: SELECT joined_opec FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" |
What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day? | CREATE TABLE table_166346_1 (area__km²_ INTEGER, production___bbl__day_ VARCHAR) | SELECT MIN(area__km²_) FROM table_166346_1 WHERE production___bbl__day_ = "3,200,000 (12th)" | ### Context: CREATE TABLE table_166346_1 (area__km²_ INTEGER, production___bbl__day_ VARCHAR) ### Question: What was the minimum area in square kilometers that produced 3,200,000 (12th) bbl/day? ### Answer: SELECT MIN(area__km²_) FROM table_166346_1 WHERE production___bbl__day_ = "3,200,000 (12th)" |
What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers? | CREATE TABLE table_166346_1 (population__july_2012_ INTEGER, area__km²_ VARCHAR) | SELECT MAX(population__july_2012_) FROM table_166346_1 WHERE area__km²_ = 2149690 | ### Context: CREATE TABLE table_166346_1 (population__july_2012_ INTEGER, area__km²_ VARCHAR) ### Question: What is the highest poplulation in July 2012 in the country with an area of 2149690 square kilometers? ### Answer: SELECT MAX(population__july_2012_) FROM table_166346_1 WHERE area__km²_ = 2149690 |
Which regions had a production (bbl/day) of 1,213,000 (21st)? | CREATE TABLE table_166346_1 (region VARCHAR, production___bbl__day_ VARCHAR) | SELECT region FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" | ### Context: CREATE TABLE table_166346_1 (region VARCHAR, production___bbl__day_ VARCHAR) ### Question: Which regions had a production (bbl/day) of 1,213,000 (21st)? ### Answer: SELECT region FROM table_166346_1 WHERE production___bbl__day_ = "1,213,000 (21st)" |
Which country had a production (bbl/day) of 2,494,000 (10th)? | CREATE TABLE table_166346_1 (country VARCHAR, production___bbl__day_ VARCHAR) | SELECT country FROM table_166346_1 WHERE production___bbl__day_ = "2,494,000 (10th)" | ### Context: CREATE TABLE table_166346_1 (country VARCHAR, production___bbl__day_ VARCHAR) ### Question: Which country had a production (bbl/day) of 2,494,000 (10th)? ### Answer: SELECT country FROM table_166346_1 WHERE production___bbl__day_ = "2,494,000 (10th)" |
What are all the approved treatments for the target CD30? | CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, target VARCHAR) | SELECT approved_treatment_s_ FROM table_1661124_1 WHERE target = "CD30" | ### Context: CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, target VARCHAR) ### Question: What are all the approved treatments for the target CD30? ### Answer: SELECT approved_treatment_s_ FROM table_1661124_1 WHERE target = "CD30" |
What is the brand name for the antibody Brentuximab Vedotin? | CREATE TABLE table_1661124_1 (brand_name VARCHAR, antibody VARCHAR) | SELECT brand_name FROM table_1661124_1 WHERE antibody = "Brentuximab vedotin" | ### Context: CREATE TABLE table_1661124_1 (brand_name VARCHAR, antibody VARCHAR) ### Question: What is the brand name for the antibody Brentuximab Vedotin? ### Answer: SELECT brand_name FROM table_1661124_1 WHERE antibody = "Brentuximab vedotin" |
How many targets are there with an approval date of 1997? | CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) | SELECT COUNT(target) FROM table_1661124_1 WHERE approval_date = 1997 | ### Context: CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) ### Question: How many targets are there with an approval date of 1997? ### Answer: SELECT COUNT(target) FROM table_1661124_1 WHERE approval_date = 1997 |
What are the approved treatments when the antibody is bevacizumab? | CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, antibody VARCHAR) | SELECT approved_treatment_s_ FROM table_1661124_1 WHERE antibody = "Bevacizumab" | ### Context: CREATE TABLE table_1661124_1 (approved_treatment_s_ VARCHAR, antibody VARCHAR) ### Question: What are the approved treatments when the antibody is bevacizumab? ### Answer: SELECT approved_treatment_s_ FROM table_1661124_1 WHERE antibody = "Bevacizumab" |
What is the target when the approved treatment is non-hodgkin lymphoma? | CREATE TABLE table_1661124_1 (target VARCHAR, approved_treatment_s_ VARCHAR) | SELECT target FROM table_1661124_1 WHERE approved_treatment_s_ = "non-Hodgkin lymphoma" | ### Context: CREATE TABLE table_1661124_1 (target VARCHAR, approved_treatment_s_ VARCHAR) ### Question: What is the target when the approved treatment is non-hodgkin lymphoma? ### Answer: SELECT target FROM table_1661124_1 WHERE approved_treatment_s_ = "non-Hodgkin lymphoma" |
What is the target with an approval date of 2006? | CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) | SELECT target FROM table_1661124_1 WHERE approval_date = 2006 | ### Context: CREATE TABLE table_1661124_1 (target VARCHAR, approval_date VARCHAR) ### Question: What is the target with an approval date of 2006? ### Answer: SELECT target FROM table_1661124_1 WHERE approval_date = 2006 |
What is the rural population percentage in 1979? | CREATE TABLE table_16645_1 (__percentage VARCHAR, rural INTEGER, year__january_ VARCHAR) | SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979 | ### Context: CREATE TABLE table_16645_1 (__percentage VARCHAR, rural INTEGER, year__january_ VARCHAR) ### Question: What is the rural population percentage in 1979? ### Answer: SELECT MIN(rural), __percentage FROM table_16645_1 WHERE year__january_ = 1979 |
How many percentage figures are given for the urban population when the total population number is 14685? | CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR) | SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685 | ### Context: CREATE TABLE table_16645_1 (__percentage VARCHAR, urban VARCHAR, population__000_ VARCHAR) ### Question: How many percentage figures are given for the urban population when the total population number is 14685? ### Answer: SELECT COUNT(urban), __percentage FROM table_16645_1 WHERE population__000_ = 14685 |
When tajik is the ethnicity what is islam? | CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR) | SELECT islam FROM table_16642_1 WHERE ethnicity = "Tajik" | ### Context: CREATE TABLE table_16642_1 (islam VARCHAR, ethnicity VARCHAR) ### Question: When tajik is the ethnicity what is islam? ### Answer: SELECT islam FROM table_16642_1 WHERE ethnicity = "Tajik" |
How many had a length of 455? | CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR) | SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455 | ### Context: CREATE TABLE table_16654785_2 (name VARCHAR, length__m_ VARCHAR) ### Question: How many had a length of 455? ### Answer: SELECT COUNT(name) FROM table_16654785_2 WHERE length__m_ = 455 |
What is the average climb for Tenbosse? | CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR) | SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse" | ### Context: CREATE TABLE table_16654785_2 (average_climb___percentage_ INTEGER, name VARCHAR) ### Question: What is the average climb for Tenbosse? ### Answer: SELECT MIN(average_climb___percentage_) FROM table_16654785_2 WHERE name = "Tenbosse" |
How many have a kilometers of 233? | CREATE TABLE table_16654785_2 (number VARCHAR, kilometer VARCHAR) | SELECT number FROM table_16654785_2 WHERE kilometer = 233 | ### Context: CREATE TABLE table_16654785_2 (number VARCHAR, kilometer VARCHAR) ### Question: How many have a kilometers of 233? ### Answer: SELECT number FROM table_16654785_2 WHERE kilometer = 233 |
How many have a length of 375? | CREATE TABLE table_16654785_2 (average_climb___percentage_ VARCHAR, length__m_ VARCHAR) | SELECT COUNT(average_climb___percentage_) FROM table_16654785_2 WHERE length__m_ = 375 | ### Context: CREATE TABLE table_16654785_2 (average_climb___percentage_ VARCHAR, length__m_ VARCHAR) ### Question: How many have a length of 375? ### Answer: SELECT COUNT(average_climb___percentage_) FROM table_16654785_2 WHERE length__m_ = 375 |
What was the team's playoff status in 2011? | CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR) | SELECT playoffs FROM table_16636344_1 WHERE year = "2011" | ### Context: CREATE TABLE table_16636344_1 (playoffs VARCHAR, year VARCHAR) ### Question: What was the team's playoff status in 2011? ### Answer: SELECT playoffs FROM table_16636344_1 WHERE year = "2011" |
What was the team's league in 2010? | CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR) | SELECT league FROM table_16636344_1 WHERE year = "2010" | ### Context: CREATE TABLE table_16636344_1 (league VARCHAR, year VARCHAR) ### Question: What was the team's league in 2010? ### Answer: SELECT league FROM table_16636344_1 WHERE year = "2010" |
What is the league name for the regular season status of 2nd, mid atlantic? | CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR) | SELECT league FROM table_16636344_1 WHERE regular_season = "2nd, Mid Atlantic" | ### Context: CREATE TABLE table_16636344_1 (league VARCHAR, regular_season VARCHAR) ### Question: What is the league name for the regular season status of 2nd, mid atlantic? ### Answer: SELECT league FROM table_16636344_1 WHERE regular_season = "2nd, Mid Atlantic" |
Who was the winning driver at Okayama International Circuit? | CREATE TABLE table_16670746_2 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_16670746_2 WHERE circuit = "Okayama International circuit" | ### Context: CREATE TABLE table_16670746_2 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Who was the winning driver at Okayama International Circuit? ### Answer: SELECT winning_driver FROM table_16670746_2 WHERE circuit = "Okayama International circuit" |
Who had the fastest lap when the winning team was Tom's Racing? | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR) | SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "TOM'S Racing" | ### Context: CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR) ### Question: Who had the fastest lap when the winning team was Tom's Racing? ### Answer: SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "TOM'S Racing" |
Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit? | CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) | SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "Team Impul" AND circuit = "Twin Ring Motegi" | ### Context: CREATE TABLE table_16670746_2 (fastest_lap VARCHAR, winning_team VARCHAR, circuit VARCHAR) ### Question: Who had the fastest lap in the race won by Team Impul at the Twin Ring Motegi circuit? ### Answer: SELECT fastest_lap FROM table_16670746_2 WHERE winning_team = "Team Impul" AND circuit = "Twin Ring Mot... |
How many opponents did the team play in week 13? | CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR) | SELECT COUNT(opponents) FROM table_16677874_2 WHERE game = 13 | ### Context: CREATE TABLE table_16677874_2 (opponents VARCHAR, game VARCHAR) ### Question: How many opponents did the team play in week 13? ### Answer: SELECT COUNT(opponents) FROM table_16677874_2 WHERE game = 13 |
How many points did the opponent score on Sept. 14? | CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR) | SELECT MAX(opponents) FROM table_16677887_2 WHERE date = "Sept. 14" | ### Context: CREATE TABLE table_16677887_2 (opponents INTEGER, date VARCHAR) ### Question: How many points did the opponent score on Sept. 14? ### Answer: SELECT MAX(opponents) FROM table_16677887_2 WHERE date = "Sept. 14" |
What team were the bills playing where their first down was 23? | CREATE TABLE table_16677887_2 (opponent VARCHAR, bills_first_downs VARCHAR) | SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23 | ### Context: CREATE TABLE table_16677887_2 (opponent VARCHAR, bills_first_downs VARCHAR) ### Question: What team were the bills playing where their first down was 23? ### Answer: SELECT opponent FROM table_16677887_2 WHERE bills_first_downs = 23 |
What was the record for the game on Sept. 14? | CREATE TABLE table_16677887_2 (record VARCHAR, date VARCHAR) | SELECT record FROM table_16677887_2 WHERE date = "Sept. 14" | ### Context: CREATE TABLE table_16677887_2 (record VARCHAR, date VARCHAR) ### Question: What was the record for the game on Sept. 14? ### Answer: SELECT record FROM table_16677887_2 WHERE date = "Sept. 14" |
When 12743 is the spelthorne what is the largest gore hundred? | CREATE TABLE table_16677738_1 (gore_hundred INTEGER, spelthorne_hundred VARCHAR) | SELECT MAX(gore_hundred) FROM table_16677738_1 WHERE spelthorne_hundred = 12743 | ### Context: CREATE TABLE table_16677738_1 (gore_hundred INTEGER, spelthorne_hundred VARCHAR) ### Question: When 12743 is the spelthorne what is the largest gore hundred? ### Answer: SELECT MAX(gore_hundred) FROM table_16677738_1 WHERE spelthorne_hundred = 12743 |
When 1546 is inns of court and chancery what is the finsbury division? | CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR) | SELECT finsbury_division FROM table_16677738_1 WHERE inns_of_court_and_chancery = 1546 | ### Context: CREATE TABLE table_16677738_1 (finsbury_division VARCHAR, inns_of_court_and_chancery VARCHAR) ### Question: When 1546 is inns of court and chancery what is the finsbury division? ### Answer: SELECT finsbury_division FROM table_16677738_1 WHERE inns_of_court_and_chancery = 1546 |
What is the lowest overall year? | CREATE TABLE table_16677738_1 (year INTEGER) | SELECT MIN(year) FROM table_16677738_1 | ### Context: CREATE TABLE table_16677738_1 (year INTEGER) ### Question: What is the lowest overall year? ### Answer: SELECT MIN(year) FROM table_16677738_1 |
When 70489 is without walls what is the inns of court and chancery? | CREATE TABLE table_16677738_1 (inns_of_court_and_chancery VARCHAR, without_the_walls VARCHAR) | SELECT inns_of_court_and_chancery FROM table_16677738_1 WHERE without_the_walls = 70489 | ### Context: CREATE TABLE table_16677738_1 (inns_of_court_and_chancery VARCHAR, without_the_walls VARCHAR) ### Question: When 70489 is without walls what is the inns of court and chancery? ### Answer: SELECT inns_of_court_and_chancery FROM table_16677738_1 WHERE without_the_walls = 70489 |
When within the walls is larger than 56174.0 what is the lowest amount without the walls? | CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER) | SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0 | ### Context: CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER) ### Question: When within the walls is larger than 56174.0 what is the lowest amount without the walls? ### Answer: SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0 |
When 272966 is the tower division what is the highest holborn division? | CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR) | SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966 | ### Context: CREATE TABLE table_16677738_1 (holborn_division INTEGER, tower_division VARCHAR) ### Question: When 272966 is the tower division what is the highest holborn division? ### Answer: SELECT MAX(holborn_division) FROM table_16677738_1 WHERE tower_division = 272966 |
What is the maximum number of stolen ends against for Japan? | CREATE TABLE table_16684420_2 (stolen_ends_against INTEGER, country VARCHAR, Japan VARCHAR) | SELECT MAX(stolen_ends_against) FROM table_16684420_2 WHERE country = Japan | ### Context: CREATE TABLE table_16684420_2 (stolen_ends_against INTEGER, country VARCHAR, Japan VARCHAR) ### Question: What is the maximum number of stolen ends against for Japan? ### Answer: SELECT MAX(stolen_ends_against) FROM table_16684420_2 WHERE country = Japan |
Who was the skip when the stolen ends against was 13? | CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR) | SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13 | ### Context: CREATE TABLE table_16684420_2 (skip VARCHAR, stolen_ends_against VARCHAR) ### Question: Who was the skip when the stolen ends against was 13? ### Answer: SELECT skip FROM table_16684420_2 WHERE stolen_ends_against = 13 |
Who are the batting partners for the 1997 season? | CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR) | SELECT batting_partners FROM table_1670921_1 WHERE season = "1997" | ### Context: CREATE TABLE table_1670921_1 (batting_partners VARCHAR, season VARCHAR) ### Question: Who are the batting partners for the 1997 season? ### Answer: SELECT batting_partners FROM table_1670921_1 WHERE season = "1997" |
Which season reported wickets of 7th? | CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR) | SELECT season FROM table_1670921_1 WHERE wicket = "7th" | ### Context: CREATE TABLE table_1670921_1 (season VARCHAR, wicket VARCHAR) ### Question: Which season reported wickets of 7th? ### Answer: SELECT season FROM table_1670921_1 WHERE wicket = "7th" |
Which team is 9th in wickets? | CREATE TABLE table_1670921_1 (fielding_team VARCHAR, wicket VARCHAR) | SELECT fielding_team FROM table_1670921_1 WHERE wicket = "9th" | ### Context: CREATE TABLE table_1670921_1 (fielding_team VARCHAR, wicket VARCHAR) ### Question: Which team is 9th in wickets? ### Answer: SELECT fielding_team FROM table_1670921_1 WHERE wicket = "9th" |
What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene | CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR) | SELECT venue FROM table_1670921_1 WHERE batting_partners = "Mahela Jayawardene and Prasanna Jayawardene" | ### Context: CREATE TABLE table_1670921_1 (venue VARCHAR, batting_partners VARCHAR) ### Question: What is the venue for batting partners Mahela Jayawardene and Prasanna Jayawardene ### Answer: SELECT venue FROM table_1670921_1 WHERE batting_partners = "Mahela Jayawardene and Prasanna Jayawardene" |
How many teams are listed for 3rd wickets? | CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR) | SELECT COUNT(batting_team) FROM table_1670921_1 WHERE wicket = "3rd" | ### Context: CREATE TABLE table_1670921_1 (batting_team VARCHAR, wicket VARCHAR) ### Question: How many teams are listed for 3rd wickets? ### Answer: SELECT COUNT(batting_team) FROM table_1670921_1 WHERE wicket = "3rd" |
How many total batting partners were most successful in the 2006 season? | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) | SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = "2006" | ### Context: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, season VARCHAR) ### Question: How many total batting partners were most successful in the 2006 season? ### Answer: SELECT COUNT(batting_partners) FROM table_1670921_2 WHERE season = "2006" |
What batting partners batted for pakistan? | CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR) | SELECT batting_partners FROM table_1670921_2 WHERE batting_team = "Pakistan" | ### Context: CREATE TABLE table_1670921_2 (batting_partners VARCHAR, batting_team VARCHAR) ### Question: What batting partners batted for pakistan? ### Answer: SELECT batting_partners FROM table_1670921_2 WHERE batting_team = "Pakistan" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.