question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
How many points does George M. Lawton have? | CREATE TABLE table_25730326_2 (points INTEGER, player VARCHAR) | SELECT MAX(points) FROM table_25730326_2 WHERE player = "George M. Lawton" | ### Context: CREATE TABLE table_25730326_2 (points INTEGER, player VARCHAR) ### Question: How many points does George M. Lawton have? ### Answer: SELECT MAX(points) FROM table_25730326_2 WHERE player = "George M. Lawton" |
Name the player for 1 touchdowns | CREATE TABLE table_25730460_2 (player VARCHAR, touchdowns VARCHAR) | SELECT player FROM table_25730460_2 WHERE touchdowns = 1 | ### Context: CREATE TABLE table_25730460_2 (player VARCHAR, touchdowns VARCHAR) ### Question: Name the player for 1 touchdowns ### Answer: SELECT player FROM table_25730460_2 WHERE touchdowns = 1 |
Name the least extra points | CREATE TABLE table_25730460_2 (extra_points INTEGER) | SELECT MIN(extra_points) FROM table_25730460_2 | ### Context: CREATE TABLE table_25730460_2 (extra_points INTEGER) ### Question: Name the least extra points ### Answer: SELECT MIN(extra_points) FROM table_25730460_2 |
Who directed episode number 2? | CREATE TABLE table_25737761_3 (director VARCHAR, no VARCHAR) | SELECT director FROM table_25737761_3 WHERE no = 2 | ### Context: CREATE TABLE table_25737761_3 (director VARCHAR, no VARCHAR) ### Question: Who directed episode number 2? ### Answer: SELECT director FROM table_25737761_3 WHERE no = 2 |
What was the episode number that had 797000 viewers? | CREATE TABLE table_25737761_3 (no VARCHAR, viewing_figure VARCHAR) | SELECT no FROM table_25737761_3 WHERE viewing_figure = 797000 | ### Context: CREATE TABLE table_25737761_3 (no VARCHAR, viewing_figure VARCHAR) ### Question: What was the episode number that had 797000 viewers? ### Answer: SELECT no FROM table_25737761_3 WHERE viewing_figure = 797000 |
Who directed the episode directed by colin teague? | CREATE TABLE table_25737761_3 (writer VARCHAR, director VARCHAR) | SELECT writer FROM table_25737761_3 WHERE director = "Colin Teague" | ### Context: CREATE TABLE table_25737761_3 (writer VARCHAR, director VARCHAR) ### Question: Who directed the episode directed by colin teague? ### Answer: SELECT writer FROM table_25737761_3 WHERE director = "Colin Teague" |
How many episodes with the production code CA106 are there? | CREATE TABLE table_25740548_2 (written_by VARCHAR, production_code VARCHAR) | SELECT COUNT(written_by) FROM table_25740548_2 WHERE production_code = "CA106" | ### Context: CREATE TABLE table_25740548_2 (written_by VARCHAR, production_code VARCHAR) ### Question: How many episodes with the production code CA106 are there? ### Answer: SELECT COUNT(written_by) FROM table_25740548_2 WHERE production_code = "CA106" |
Who was the director for episodes that were written be Matthew Lau? | CREATE TABLE table_25740548_2 (directed_by VARCHAR, written_by VARCHAR) | SELECT directed_by FROM table_25740548_2 WHERE written_by = "Matthew Lau" | ### Context: CREATE TABLE table_25740548_2 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who was the director for episodes that were written be Matthew Lau? ### Answer: SELECT directed_by FROM table_25740548_2 WHERE written_by = "Matthew Lau" |
How many episode were written by Brett Conrad? | CREATE TABLE table_25740548_2 (title VARCHAR, written_by VARCHAR) | SELECT COUNT(title) FROM table_25740548_2 WHERE written_by = "Brett Conrad" | ### Context: CREATE TABLE table_25740548_2 (title VARCHAR, written_by VARCHAR) ### Question: How many episode were written by Brett Conrad? ### Answer: SELECT COUNT(title) FROM table_25740548_2 WHERE written_by = "Brett Conrad" |
How many episodes were directed by Tim Matheson? | CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = "Tim Matheson" | ### Context: CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: How many episodes were directed by Tim Matheson? ### Answer: SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = "Tim Matheson" |
How many episodes were directed by Rod Hardy? | CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR) | SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = "Rod Hardy" | ### Context: CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: How many episodes were directed by Rod Hardy? ### Answer: SELECT COUNT(original_air_date) FROM table_25740548_2 WHERE directed_by = "Rod Hardy" |
Who wrote the episode with 3.92 million US viewers? | CREATE TABLE table_25740548_3 (written_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT written_by FROM table_25740548_3 WHERE us_viewers__million_ = "3.92" | ### Context: CREATE TABLE table_25740548_3 (written_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who wrote the episode with 3.92 million US viewers? ### Answer: SELECT written_by FROM table_25740548_3 WHERE us_viewers__million_ = "3.92" |
How many original air dates are there for the episode with code CA210? | CREATE TABLE table_25740548_3 (original_air_date VARCHAR, production_code VARCHAR) | SELECT COUNT(original_air_date) FROM table_25740548_3 WHERE production_code = "CA210" | ### Context: CREATE TABLE table_25740548_3 (original_air_date VARCHAR, production_code VARCHAR) ### Question: How many original air dates are there for the episode with code CA210? ### Answer: SELECT COUNT(original_air_date) FROM table_25740548_3 WHERE production_code = "CA210" |
How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1? | CREATE TABLE table_25751274_2 (episode_number VARCHAR, rating VARCHAR) | SELECT COUNT(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 0.7 / 2 AND rating = "2.1" | ### Context: CREATE TABLE table_25751274_2 (episode_number VARCHAR, rating VARCHAR) ### Question: How many episodes had rating/share (18-49) of 0.7/2 and a rating of 2.1? ### Answer: SELECT COUNT(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 0.7 / 2 AND rating = "2.1" |
What is the lowest episode number that had a ratings/share (18-49) of 1.1/3? | CREATE TABLE table_25751274_2 (episode_number INTEGER, rating VARCHAR) | SELECT MIN(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.1 / 3 | ### Context: CREATE TABLE table_25751274_2 (episode_number INTEGER, rating VARCHAR) ### Question: What is the lowest episode number that had a ratings/share (18-49) of 1.1/3? ### Answer: SELECT MIN(episode_number) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.1 / 3 |
What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2? | CREATE TABLE table_25751274_2 (rating VARCHAR, share VARCHAR) | SELECT rating FROM table_25751274_2 WHERE share = 4 AND rating / SHARE(18 - 49) = 0.7 / 2 | ### Context: CREATE TABLE table_25751274_2 (rating VARCHAR, share VARCHAR) ### Question: What is the rating of the episode with a share of 4 and a rating/share (18-49) of 0.7/2? ### Answer: SELECT rating FROM table_25751274_2 WHERE share = 4 AND rating / SHARE(18 - 49) = 0.7 / 2 |
What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4? | CREATE TABLE table_25751274_2 (rank__night_ INTEGER, rating VARCHAR) | SELECT MIN(rank__night_) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.3 / 4 | ### Context: CREATE TABLE table_25751274_2 (rank__night_ INTEGER, rating VARCHAR) ### Question: What is the lowest rank of an episode with a rating/share (18-49) of 1.3/4? ### Answer: SELECT MIN(rank__night_) FROM table_25751274_2 WHERE rating / SHARE(18 - 49) = 1.3 / 4 |
What is the song released by Travis? | CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR) | SELECT single FROM table_25760427_2 WHERE artist = "Travis" | ### Context: CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR) ### Question: What is the song released by Travis? ### Answer: SELECT single FROM table_25760427_2 WHERE artist = "Travis" |
error (see notes) | CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER) | SELECT MIN(weeks_at_number_1) FROM table_25760427_2 | ### Context: CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER) ### Question: error (see notes) ### Answer: SELECT MIN(weeks_at_number_1) FROM table_25760427_2 |
What is the song by the musician panjabi mc? | CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR) | SELECT single FROM table_25760427_2 WHERE artist = "Panjabi MC" | ### Context: CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR) ### Question: What is the song by the musician panjabi mc? ### Answer: SELECT single FROM table_25760427_2 WHERE artist = "Panjabi MC" |
Where was the round 1 race? | CREATE TABLE table_25773116_2 (location VARCHAR, round VARCHAR) | SELECT location FROM table_25773116_2 WHERE round = 1 | ### Context: CREATE TABLE table_25773116_2 (location VARCHAR, round VARCHAR) ### Question: Where was the round 1 race? ### Answer: SELECT location FROM table_25773116_2 WHERE round = 1 |
Who won the April 11 race? | CREATE TABLE table_25773116_2 (winning_driver VARCHAR, date VARCHAR) | SELECT winning_driver FROM table_25773116_2 WHERE date = "April 11" | ### Context: CREATE TABLE table_25773116_2 (winning_driver VARCHAR, date VARCHAR) ### Question: Who won the April 11 race? ### Answer: SELECT winning_driver FROM table_25773116_2 WHERE date = "April 11" |
Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position? | CREATE TABLE table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) | SELECT location FROM table_25773116_2 WHERE pole_position = "Daniel Erickson" AND fastest_lap = "Cole Morgan" | ### Context: CREATE TABLE table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### Question: Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position? ### Answer: SELECT location FROM table_25773116_2 WHERE pole_position = "Daniel Erickson" AND fastest_lap = "Cole Morgan" |
How many rounds were played on May 8? | CREATE TABLE table_25773116_2 (round VARCHAR, date VARCHAR) | SELECT COUNT(round) FROM table_25773116_2 WHERE date = "May 8" | ### Context: CREATE TABLE table_25773116_2 (round VARCHAR, date VARCHAR) ### Question: How many rounds were played on May 8? ### Answer: SELECT COUNT(round) FROM table_25773116_2 WHERE date = "May 8" |
Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap? | CREATE TABLE table_25773116_2 (pole_position VARCHAR, fastest_lap VARCHAR, location VARCHAR) | SELECT pole_position FROM table_25773116_2 WHERE fastest_lap = "Victor Carbone" AND location = "Braselton, Georgia" | ### Context: CREATE TABLE table_25773116_2 (pole_position VARCHAR, fastest_lap VARCHAR, location VARCHAR) ### Question: Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap? ### Answer: SELECT pole_position FROM table_25773116_2 WHERE fastest_lap = "Victor Carbone" AND location = "Braselton, Georgia" |
Where did Audette Racing win? | CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR) | SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing" | ### Context: CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR) ### Question: Where did Audette Racing win? ### Answer: SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing" |
Name the directors for peter gawler | CREATE TABLE table_25764073_3 (director_s_ VARCHAR, writer_s_ VARCHAR) | SELECT director_s_ FROM table_25764073_3 WHERE writer_s_ = "Peter Gawler" | ### Context: CREATE TABLE table_25764073_3 (director_s_ VARCHAR, writer_s_ VARCHAR) ### Question: Name the directors for peter gawler ### Answer: SELECT director_s_ FROM table_25764073_3 WHERE writer_s_ = "Peter Gawler" |
Name the least episode number for anne brooksbank and vicki madden | CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR) | SELECT MIN(episode__number) FROM table_25764073_3 WHERE writer_s_ = "Anne Brooksbank and Vicki Madden" | ### Context: CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR) ### Question: Name the least episode number for anne brooksbank and vicki madden ### Answer: SELECT MIN(episode__number) FROM table_25764073_3 WHERE writer_s_ = "Anne Brooksbank and Vicki Madden" |
Name the title for season number 35 | CREATE TABLE table_25764073_3 (title VARCHAR, season__number VARCHAR) | SELECT title FROM table_25764073_3 WHERE season__number = 35 | ### Context: CREATE TABLE table_25764073_3 (title VARCHAR, season__number VARCHAR) ### Question: Name the title for season number 35 ### Answer: SELECT title FROM table_25764073_3 WHERE season__number = 35 |
What were the points per game in the selection where the rebounds per game were 15.0? | CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR) | SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = "15.0" | ### Context: CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR) ### Question: What were the points per game in the selection where the rebounds per game were 15.0? ### Answer: SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = "15.0" |
What were the blocks per game in the selection where the field goal percentage was .594 (2nd)? | CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR, field_goal_percentage VARCHAR) | SELECT blocks_per_game FROM table_25774493_3 WHERE field_goal_percentage = ".594 (2nd)" | ### Context: CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR, field_goal_percentage VARCHAR) ### Question: What were the blocks per game in the selection where the field goal percentage was .594 (2nd)? ### Answer: SELECT blocks_per_game FROM table_25774493_3 WHERE field_goal_percentage = ".594 (2nd)" |
Name the name for company d | CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR) | SELECT name FROM table_25794010_1 WHERE company = "company D" | ### Context: CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR) ### Question: Name the name for company d ### Answer: SELECT name FROM table_25794010_1 WHERE company = "company D" |
Name the name for organization date being unknown | CREATE TABLE table_25794010_1 (name VARCHAR, organization_date VARCHAR) | SELECT name FROM table_25794010_1 WHERE organization_date = "Unknown" | ### Context: CREATE TABLE table_25794010_1 (name VARCHAR, organization_date VARCHAR) ### Question: Name the name for organization date being unknown ### Answer: SELECT name FROM table_25794010_1 WHERE organization_date = "Unknown" |
Name the name for desha | CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR) | SELECT name FROM table_25794010_1 WHERE county = "Desha" | ### Context: CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR) ### Question: Name the name for desha ### Answer: SELECT name FROM table_25794010_1 WHERE county = "Desha" |
Name the company for desha county | CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR) | SELECT company FROM table_25794010_1 WHERE county = "Desha" | ### Context: CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR) ### Question: Name the company for desha county ### Answer: SELECT company FROM table_25794010_1 WHERE county = "Desha" |
Who wrote the episode with series number 56? | CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number VARCHAR) | SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56 | ### Context: CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number VARCHAR) ### Question: Who wrote the episode with series number 56? ### Answer: SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56 |
What is largest series number for the episode that aired February 16, 1957? | CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR) | SELECT MAX(series__number) FROM table_25800134_1 WHERE airdate = "February 16, 1957" | ### Context: CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR) ### Question: What is largest series number for the episode that aired February 16, 1957? ### Answer: SELECT MAX(series__number) FROM table_25800134_1 WHERE airdate = "February 16, 1957" |
Who directed the episodes that aired December 15, 1956? | CREATE TABLE table_25800134_1 (director VARCHAR, airdate VARCHAR) | SELECT director FROM table_25800134_1 WHERE airdate = "December 15, 1956" | ### Context: CREATE TABLE table_25800134_1 (director VARCHAR, airdate VARCHAR) ### Question: Who directed the episodes that aired December 15, 1956? ### Answer: SELECT director FROM table_25800134_1 WHERE airdate = "December 15, 1956" |
Who wrote the episode that aired December 1, 1956? | CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, airdate VARCHAR) | SELECT writer_s_ FROM table_25800134_1 WHERE airdate = "December 1, 1956" | ### Context: CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, airdate VARCHAR) ### Question: Who wrote the episode that aired December 1, 1956? ### Answer: SELECT writer_s_ FROM table_25800134_1 WHERE airdate = "December 1, 1956" |
Who was the writer of the episode that originally aired on October 14, 1968? | CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, airdate VARCHAR) | SELECT writer_s_ FROM table_25800134_13 WHERE airdate = "October 14, 1968" | ### Context: CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, airdate VARCHAR) ### Question: Who was the writer of the episode that originally aired on October 14, 1968? ### Answer: SELECT writer_s_ FROM table_25800134_13 WHERE airdate = "October 14, 1968" |
What is the season # for the episode with air date february 2, 1970? | CREATE TABLE table_25800134_14 (season__number INTEGER, airdate VARCHAR) | SELECT MAX(season__number) FROM table_25800134_14 WHERE airdate = "February 2, 1970" | ### Context: CREATE TABLE table_25800134_14 (season__number INTEGER, airdate VARCHAR) ### Question: What is the season # for the episode with air date february 2, 1970? ### Answer: SELECT MAX(season__number) FROM table_25800134_14 WHERE airdate = "February 2, 1970" |
Who was the writer who wrote the episode that was aired on September 11, 1972? | CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR) | SELECT writer_s_ FROM table_25800134_17 WHERE airdate = "September 11, 1972" | ### Context: CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR) ### Question: Who was the writer who wrote the episode that was aired on September 11, 1972? ### Answer: SELECT writer_s_ FROM table_25800134_17 WHERE airdate = "September 11, 1972" |
Who directed episode number 626 in the series? | CREATE TABLE table_25800134_19 (director VARCHAR, series__number VARCHAR) | SELECT director FROM table_25800134_19 WHERE series__number = 626 | ### Context: CREATE TABLE table_25800134_19 (director VARCHAR, series__number VARCHAR) ### Question: Who directed episode number 626 in the series? ### Answer: SELECT director FROM table_25800134_19 WHERE series__number = 626 |
Who are all the writers of episodes in season 24? | CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number VARCHAR) | SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24 | ### Context: CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number VARCHAR) ### Question: Who are all the writers of episodes in season 24? ### Answer: SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24 |
What is the title of the episode that aired on May 10, 1958? | CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR) | SELECT title FROM table_25800134_2 WHERE airdate = "May 10, 1958" | ### Context: CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR) ### Question: What is the title of the episode that aired on May 10, 1958? ### Answer: SELECT title FROM table_25800134_2 WHERE airdate = "May 10, 1958" |
Who was the writer of episode 15? | CREATE TABLE table_25800134_4 (writer_s_ VARCHAR, season__number VARCHAR) | SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15 | ### Context: CREATE TABLE table_25800134_4 (writer_s_ VARCHAR, season__number VARCHAR) ### Question: Who was the writer of episode 15? ### Answer: SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15 |
What is the title of #33? | CREATE TABLE table_25800134_4 (title VARCHAR, season__number VARCHAR) | SELECT title FROM table_25800134_4 WHERE season__number = 33 | ### Context: CREATE TABLE table_25800134_4 (title VARCHAR, season__number VARCHAR) ### Question: What is the title of #33? ### Answer: SELECT title FROM table_25800134_4 WHERE season__number = 33 |
How many directors worked on #158? | CREATE TABLE table_25800134_4 (director VARCHAR, series__number VARCHAR) | SELECT COUNT(director) FROM table_25800134_4 WHERE series__number = 158 | ### Context: CREATE TABLE table_25800134_4 (director VARCHAR, series__number VARCHAR) ### Question: How many directors worked on #158? ### Answer: SELECT COUNT(director) FROM table_25800134_4 WHERE series__number = 158 |
How many writers were for season #1? | CREATE TABLE table_25800134_3 (writer_s_ VARCHAR, season__number VARCHAR) | SELECT COUNT(writer_s_) FROM table_25800134_3 WHERE season__number = 1 | ### Context: CREATE TABLE table_25800134_3 (writer_s_ VARCHAR, season__number VARCHAR) ### Question: How many writers were for season #1? ### Answer: SELECT COUNT(writer_s_) FROM table_25800134_3 WHERE season__number = 1 |
Who was the director for the episode on May 2, 1959? | CREATE TABLE table_25800134_3 (director VARCHAR, airdate VARCHAR) | SELECT director FROM table_25800134_3 WHERE airdate = "May 2, 1959" | ### Context: CREATE TABLE table_25800134_3 (director VARCHAR, airdate VARCHAR) ### Question: Who was the director for the episode on May 2, 1959? ### Answer: SELECT director FROM table_25800134_3 WHERE airdate = "May 2, 1959" |
Name the number in series for production code being 204 | CREATE TABLE table_25810656_3 (no_in_series VARCHAR, production_code VARCHAR) | SELECT no_in_series FROM table_25810656_3 WHERE production_code = 204 | ### Context: CREATE TABLE table_25810656_3 (no_in_series VARCHAR, production_code VARCHAR) ### Question: Name the number in series for production code being 204 ### Answer: SELECT no_in_series FROM table_25810656_3 WHERE production_code = 204 |
Name the number of title for number in series being 25 | CREATE TABLE table_25810656_3 (title VARCHAR, no_in_series VARCHAR) | SELECT COUNT(title) FROM table_25810656_3 WHERE no_in_series = 25 | ### Context: CREATE TABLE table_25810656_3 (title VARCHAR, no_in_series VARCHAR) ### Question: Name the number of title for number in series being 25 ### Answer: SELECT COUNT(title) FROM table_25810656_3 WHERE no_in_series = 25 |
What was the latest stage won by Mikhail Ignatiev? | CREATE TABLE table_25802618_15 (stage INTEGER, winner VARCHAR) | SELECT MAX(stage) FROM table_25802618_15 WHERE winner = "Mikhail Ignatiev" | ### Context: CREATE TABLE table_25802618_15 (stage INTEGER, winner VARCHAR) ### Question: What was the latest stage won by Mikhail Ignatiev? ### Answer: SELECT MAX(stage) FROM table_25802618_15 WHERE winner = "Mikhail Ignatiev" |
In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic? | CREATE TABLE table_2581397_4 (race VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR) | SELECT race FROM table_2581397_4 WHERE weight__kg_ = "55" AND winner_2nd = "1st - Jim And Tonic" | ### Context: CREATE TABLE table_2581397_4 (race VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR) ### Question: In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic? ### Answer: SELECT race FROM table_2581397_4 WHERE weight__kg_ = "55" AND winner_2nd = "1st - Jim And Tonic" |
What was the distance in the Manikato Stakes race? | CREATE TABLE table_2581397_4 (distance VARCHAR, race VARCHAR) | SELECT distance FROM table_2581397_4 WHERE race = "Manikato Stakes" | ### Context: CREATE TABLE table_2581397_4 (distance VARCHAR, race VARCHAR) ### Question: What was the distance in the Manikato Stakes race? ### Answer: SELECT distance FROM table_2581397_4 WHERE race = "Manikato Stakes" |
What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz? | CREATE TABLE table_2581397_4 (distance VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR) | SELECT distance FROM table_2581397_4 WHERE weight__kg_ = "56" AND winner_2nd = "2nd - Fritz" | ### Context: CREATE TABLE table_2581397_4 (distance VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR) ### Question: What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz? ### Answer: SELECT distance FROM table_2581397_4 WHERE weight__kg_ = "56" AND winner_2nd = "2nd - Fritz" |
What date was the Doncaster race? | CREATE TABLE table_2581397_5 (date VARCHAR, race VARCHAR) | SELECT date FROM table_2581397_5 WHERE race = "Doncaster" | ### Context: CREATE TABLE table_2581397_5 (date VARCHAR, race VARCHAR) ### Question: What date was the Doncaster race? ### Answer: SELECT date FROM table_2581397_5 WHERE race = "Doncaster" |
What was the air date when the team guest captain was john bishop? | CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR) | SELECT air_date FROM table_25816476_2 WHERE team_guest_captain = "John Bishop" | ### Context: CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR) ### Question: What was the air date when the team guest captain was john bishop? ### Answer: SELECT air_date FROM table_25816476_2 WHERE team_guest_captain = "John Bishop" |
Who was the team guest captain for episode 2? | CREATE TABLE table_25816476_2 (team_guest_captain VARCHAR, episode VARCHAR) | SELECT team_guest_captain FROM table_25816476_2 WHERE episode = 2 | ### Context: CREATE TABLE table_25816476_2 (team_guest_captain VARCHAR, episode VARCHAR) ### Question: Who was the team guest captain for episode 2? ### Answer: SELECT team_guest_captain FROM table_25816476_2 WHERE episode = 2 |
Who was the team swash when the team guest captain was gail porter? | CREATE TABLE table_25816476_2 (team_swash VARCHAR, team_guest_captain VARCHAR) | SELECT team_swash FROM table_25816476_2 WHERE team_guest_captain = "Gail Porter" | ### Context: CREATE TABLE table_25816476_2 (team_swash VARCHAR, team_guest_captain VARCHAR) ### Question: Who was the team swash when the team guest captain was gail porter? ### Answer: SELECT team_swash FROM table_25816476_2 WHERE team_guest_captain = "Gail Porter" |
How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter? | CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air_date VARCHAR, team_guest_captain VARCHAR) | SELECT COUNT(team_coxy) FROM table_25816476_2 WHERE air_date = "24 January 2010" AND team_guest_captain = "Gail Porter" | ### Context: CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air_date VARCHAR, team_guest_captain VARCHAR) ### Question: How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter? ### Answer: SELECT COUNT(team_coxy) FROM table_25816476_2 WHERE air_date = "24 January 2010" AND team_guest_captain = "Gail Porter" |
How many entries are shown for an air date when the team guest captain was stephen k amos? | CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR) | SELECT COUNT(air_date) FROM table_25816476_2 WHERE team_guest_captain = "Stephen K Amos" | ### Context: CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR) ### Question: How many entries are shown for an air date when the team guest captain was stephen k amos? ### Answer: SELECT COUNT(air_date) FROM table_25816476_2 WHERE team_guest_captain = "Stephen K Amos" |
What group was sunline in when he was at moonee valley? | CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR) | SELECT group FROM table_2581397_2 WHERE venue = "Moonee Valley" | ### Context: CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR) ### Question: What group was sunline in when he was at moonee valley? ### Answer: SELECT group FROM table_2581397_2 WHERE venue = "Moonee Valley" |
What was the win-loss record for the player from Switzerland? | CREATE TABLE table_25820786_2 (win_loss VARCHAR, nationality VARCHAR) | SELECT win_loss FROM table_25820786_2 WHERE nationality = "Switzerland" | ### Context: CREATE TABLE table_25820786_2 (win_loss VARCHAR, nationality VARCHAR) ### Question: What was the win-loss record for the player from Switzerland? ### Answer: SELECT win_loss FROM table_25820786_2 WHERE nationality = "Switzerland" |
What was the win loss record the lady who appeard in 1969? | CREATE TABLE table_25820584_7 (win_loss VARCHAR, year_s_ VARCHAR) | SELECT win_loss FROM table_25820584_7 WHERE year_s_ = "1969" | ### Context: CREATE TABLE table_25820584_7 (win_loss VARCHAR, year_s_ VARCHAR) ### Question: What was the win loss record the lady who appeard in 1969? ### Answer: SELECT win_loss FROM table_25820584_7 WHERE year_s_ = "1969" |
What player(s) appeared in 1969? | CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR) | SELECT player FROM table_25820584_7 WHERE year_s_ = "1969" | ### Context: CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR) ### Question: What player(s) appeared in 1969? ### Answer: SELECT player FROM table_25820584_7 WHERE year_s_ = "1969" |
Name the name for norway nationality | CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR) | SELECT name FROM table_25826954_7 WHERE nationality = "Norway" | ### Context: CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR) ### Question: Name the name for norway nationality ### Answer: SELECT name FROM table_25826954_7 WHERE nationality = "Norway" |
Who wrote the episode with the production code 2j5153? | CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR) | SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153" | ### Context: CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR) ### Question: Who wrote the episode with the production code 2j5153? ### Answer: SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153" |
what is the filter when the wavelength is 222mm (k-band)? | CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR) | SELECT filter FROM table_2583036_1 WHERE wavelength = "222mm (K-band)" | ### Context: CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR) ### Question: what is the filter when the wavelength is 222mm (k-band)? ### Answer: SELECT filter FROM table_2583036_1 WHERE wavelength = "222mm (K-band)" |
how many times was the exposures 53? | CREATE TABLE table_2583036_1 (camera VARCHAR, exposures VARCHAR) | SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53 | ### Context: CREATE TABLE table_2583036_1 (camera VARCHAR, exposures VARCHAR) ### Question: how many times was the exposures 53? ### Answer: SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53 |
how many exposures where there when the total exposure time is 105,000s? | CREATE TABLE table_2583036_1 (exposures VARCHAR, total_exposure_time VARCHAR) | SELECT exposures FROM table_2583036_1 WHERE total_exposure_time = "105,000s" | ### Context: CREATE TABLE table_2583036_1 (exposures VARCHAR, total_exposure_time VARCHAR) ### Question: how many exposures where there when the total exposure time is 105,000s? ### Answer: SELECT exposures FROM table_2583036_1 WHERE total_exposure_time = "105,000s" |
what is the camera used when the wavelength is 814nm (i-band)? | CREATE TABLE table_2583036_1 (camera VARCHAR, wavelength VARCHAR) | SELECT camera FROM table_2583036_1 WHERE wavelength = "814nm (I-band)" | ### Context: CREATE TABLE table_2583036_1 (camera VARCHAR, wavelength VARCHAR) ### Question: what is the camera used when the wavelength is 814nm (i-band)? ### Answer: SELECT camera FROM table_2583036_1 WHERE wavelength = "814nm (I-band)" |
What is the title of the show with director Paul Annett? | CREATE TABLE table_2582519_6 (title VARCHAR, director VARCHAR) | SELECT title FROM table_2582519_6 WHERE director = "Paul Annett" | ### Context: CREATE TABLE table_2582519_6 (title VARCHAR, director VARCHAR) ### Question: What is the title of the show with director Paul Annett? ### Answer: SELECT title FROM table_2582519_6 WHERE director = "Paul Annett" |
What was the title for the Undercard of Stevenson/Bellew? | CREATE TABLE table_25840200_1 (titles VARCHAR, notes VARCHAR) | SELECT titles FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew" | ### Context: CREATE TABLE table_25840200_1 (titles VARCHAR, notes VARCHAR) ### Question: What was the title for the Undercard of Stevenson/Bellew? ### Answer: SELECT titles FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew" |
What are the titles for the November 9 Super Bantamweight division? | CREATE TABLE table_25840200_1 (titles VARCHAR, date VARCHAR, division VARCHAR) | SELECT titles FROM table_25840200_1 WHERE date = "November 9" AND division = "Super Bantamweight" | ### Context: CREATE TABLE table_25840200_1 (titles VARCHAR, date VARCHAR, division VARCHAR) ### Question: What are the titles for the November 9 Super Bantamweight division? ### Answer: SELECT titles FROM table_25840200_1 WHERE date = "November 9" AND division = "Super Bantamweight" |
How many notes are there for the Devon Alexander vs. Shawn Porter fight? | CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR) | SELECT COUNT(notes) FROM table_25840200_1 WHERE fight = "Devon Alexander vs. Shawn Porter" | ### Context: CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR) ### Question: How many notes are there for the Devon Alexander vs. Shawn Porter fight? ### Answer: SELECT COUNT(notes) FROM table_25840200_1 WHERE fight = "Devon Alexander vs. Shawn Porter" |
What division was on HBO PPV? | CREATE TABLE table_25840200_1 (division VARCHAR, tv VARCHAR) | SELECT division FROM table_25840200_1 WHERE tv = "HBO PPV" | ### Context: CREATE TABLE table_25840200_1 (division VARCHAR, tv VARCHAR) ### Question: What division was on HBO PPV? ### Answer: SELECT division FROM table_25840200_1 WHERE tv = "HBO PPV" |
Where was the Undercard of Stevenson/Bellew? | CREATE TABLE table_25840200_1 (location VARCHAR, notes VARCHAR) | SELECT location FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew" | ### Context: CREATE TABLE table_25840200_1 (location VARCHAR, notes VARCHAR) ### Question: Where was the Undercard of Stevenson/Bellew? ### Answer: SELECT location FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew" |
What was the division number for Verona, USA? | CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR) | SELECT COUNT(division) FROM table_25840200_1 WHERE location = "Verona, USA" | ### Context: CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR) ### Question: What was the division number for Verona, USA? ### Answer: SELECT COUNT(division) FROM table_25840200_1 WHERE location = "Verona, USA" |
What mobile markets have cvt hd? | CREATE TABLE table_25839957_5 (cvt_hd VARCHAR, market VARCHAR) | SELECT cvt_hd FROM table_25839957_5 WHERE market = "Mobile" | ### Context: CREATE TABLE table_25839957_5 (cvt_hd VARCHAR, market VARCHAR) ### Question: What mobile markets have cvt hd? ### Answer: SELECT cvt_hd FROM table_25839957_5 WHERE market = "Mobile" |
How many opengl have the ironlake ( clarkdale ) code name? | CREATE TABLE table_25839957_5 (opengl VARCHAR, code_name VARCHAR) | SELECT COUNT(opengl) FROM table_25839957_5 WHERE code_name = "Ironlake ( Clarkdale )" | ### Context: CREATE TABLE table_25839957_5 (opengl VARCHAR, code_name VARCHAR) ### Question: How many opengl have the ironlake ( clarkdale ) code name? ### Answer: SELECT COUNT(opengl) FROM table_25839957_5 WHERE code_name = "Ironlake ( Clarkdale )" |
What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )? | CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR) | SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = "21.3" | ### Context: CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR) ### Question: What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )? ### Answer: SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = "21.3" |
What's the minimum number of execution units? | CREATE TABLE table_25839957_5 (execution_units INTEGER) | SELECT MIN(execution_units) FROM table_25839957_5 | ### Context: CREATE TABLE table_25839957_5 (execution_units INTEGER) ### Question: What's the minimum number of execution units? ### Answer: SELECT MIN(execution_units) FROM table_25839957_5 |
How many shader models have a 900 core clock ( mhz )? | CREATE TABLE table_25839957_5 (shader_model VARCHAR, core_clock___mhz__ VARCHAR) | SELECT COUNT(shader_model) FROM table_25839957_5 WHERE core_clock___mhz__ = "900" | ### Context: CREATE TABLE table_25839957_5 (shader_model VARCHAR, core_clock___mhz__ VARCHAR) ### Question: How many shader models have a 900 core clock ( mhz )? ### Answer: SELECT COUNT(shader_model) FROM table_25839957_5 WHERE core_clock___mhz__ = "900" |
What is the population for the place with an area of 2.33 km2? | CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km² VARCHAR) | SELECT MAX(population__2000_census__) FROM table_2588674_1 WHERE area_km² = "2.33" | ### Context: CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km² VARCHAR) ### Question: What is the population for the place with an area of 2.33 km2? ### Answer: SELECT MAX(population__2000_census__) FROM table_2588674_1 WHERE area_km² = "2.33" |
How many places named asan-maina? | CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) | SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Asan-Maina" | ### Context: CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) ### Question: How many places named asan-maina? ### Answer: SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Asan-Maina" |
How many places named mongmong-toto-maite? | CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) | SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite" | ### Context: CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) ### Question: How many places named mongmong-toto-maite? ### Answer: SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite" |
What is the population density of mongmong-toto-maite? | CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR) | SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite" | ### Context: CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR) ### Question: What is the population density of mongmong-toto-maite? ### Answer: SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite" |
What village has an area of 27.19 km2? | CREATE TABLE table_2588674_1 (village VARCHAR, area_km² VARCHAR) | SELECT village FROM table_2588674_1 WHERE area_km² = "27.19" | ### Context: CREATE TABLE table_2588674_1 (village VARCHAR, area_km² VARCHAR) ### Question: What village has an area of 27.19 km2? ### Answer: SELECT village FROM table_2588674_1 WHERE area_km² = "27.19" |
What region is inarajan in? | CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) | SELECT region FROM table_2588674_1 WHERE village = "Inarajan" | ### Context: CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR) ### Question: What region is inarajan in? ### Answer: SELECT region FROM table_2588674_1 WHERE village = "Inarajan" |
How many POS when the average is 1.8529? | CREATE TABLE table_25887826_17 (pos INTEGER, avg VARCHAR) | SELECT MAX(pos) FROM table_25887826_17 WHERE avg = "1.8529" | ### Context: CREATE TABLE table_25887826_17 (pos INTEGER, avg VARCHAR) ### Question: How many POS when the average is 1.8529? ### Answer: SELECT MAX(pos) FROM table_25887826_17 WHERE avg = "1.8529" |
How many 07 A points for the team with 1.4902 average? | CREATE TABLE table_25887826_17 (avg VARCHAR) | SELECT MAX(07 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.4902" | ### Context: CREATE TABLE table_25887826_17 (avg VARCHAR) ### Question: How many 07 A points for the team with 1.4902 average? ### Answer: SELECT MAX(07 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.4902" |
How many figures for 08 A points for the team with 1.1863 average? | CREATE TABLE table_25887826_17 (avg VARCHAR) | SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.1863" | ### Context: CREATE TABLE table_25887826_17 (avg VARCHAR) ### Question: How many figures for 08 A points for the team with 1.1863 average? ### Answer: SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.1863" |
What is the largest number of 10 C points for a team with 39 total points? | CREATE TABLE table_25887826_17 (total_pts VARCHAR) | SELECT MAX(10 AS _c_pts) FROM table_25887826_17 WHERE total_pts = 39 | ### Context: CREATE TABLE table_25887826_17 (total_pts VARCHAR) ### Question: What is the largest number of 10 C points for a team with 39 total points? ### Answer: SELECT MAX(10 AS _c_pts) FROM table_25887826_17 WHERE total_pts = 39 |
Who directed the episode with 4.82 million U.S. viewers? | CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) | SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = "4.82" | ### Context: CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR) ### Question: Who directed the episode with 4.82 million U.S. viewers? ### Answer: SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = "4.82" |
Who directed the episode that had a production code of 2j5457? | CREATE TABLE table_25851971_1 (directed_by VARCHAR, production_code VARCHAR) | SELECT directed_by FROM table_25851971_1 WHERE production_code = "2J5457" | ### Context: CREATE TABLE table_25851971_1 (directed_by VARCHAR, production_code VARCHAR) ### Question: Who directed the episode that had a production code of 2j5457? ### Answer: SELECT directed_by FROM table_25851971_1 WHERE production_code = "2J5457" |
What episode number was written by Anthony Sparks? | CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR) | SELECT MIN(no) FROM table_25851971_1 WHERE written_by = "Anthony Sparks" | ### Context: CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR) ### Question: What episode number was written by Anthony Sparks? ### Answer: SELECT MIN(no) FROM table_25851971_1 WHERE written_by = "Anthony Sparks" |
What was the production code of the episode written by Anthony Sparks? | CREATE TABLE table_25851971_1 (production_code VARCHAR, written_by VARCHAR) | SELECT production_code FROM table_25851971_1 WHERE written_by = "Anthony Sparks" | ### Context: CREATE TABLE table_25851971_1 (production_code VARCHAR, written_by VARCHAR) ### Question: What was the production code of the episode written by Anthony Sparks? ### Answer: SELECT production_code FROM table_25851971_1 WHERE written_by = "Anthony Sparks" |
What episode number was written by Karin Gist? | CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR) | SELECT MAX(no) FROM table_25851971_1 WHERE written_by = "Karin Gist" | ### Context: CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR) ### Question: What episode number was written by Karin Gist? ### Answer: SELECT MAX(no) FROM table_25851971_1 WHERE written_by = "Karin Gist" |
Name the leader battle for 4-3 vote | CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR) | SELECT leader_battle FROM table_25920798_2 WHERE vote = "4-3" | ### Context: CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR) ### Question: Name the leader battle for 4-3 vote ### Answer: SELECT leader_battle FROM table_25920798_2 WHERE vote = "4-3" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.