combined_text
stringlengths
106
1.05k
###question:How many points does George M. Lawton have?###answer:SELECT MAX(points) FROM table_25730326_2 WHERE player = "George M. Lawton"###context:CREATE TABLE table_25730326_2 (points INTEGER, player VARCHAR)
###question:Name the player for 1 touchdowns###answer:SELECT player FROM table_25730460_2 WHERE touchdowns = 1###context:CREATE TABLE table_25730460_2 (player VARCHAR, touchdowns VARCHAR)
###question:Name the least extra points###answer:SELECT MIN(extra_points) FROM table_25730460_2###context:CREATE TABLE table_25730460_2 (extra_points INTEGER)
###question:Who directed episode number 2?###answer:SELECT director FROM table_25737761_3 WHERE no = 2###context:CREATE TABLE table_25737761_3 (director VARCHAR, no VARCHAR)
###question:What was the episode number that had 797000 viewers?###answer:SELECT no FROM table_25737761_3 WHERE viewing_figure = 797000###context:CREATE TABLE table_25737761_3 (no VARCHAR, viewing_figure VARCHAR)
###question:Who directed the episode directed by colin teague?###answer:SELECT writer FROM table_25737761_3 WHERE director = "Colin Teague"###context:CREATE TABLE table_25737761_3 (writer VARCHAR, director 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"###context:CREATE TABLE table_25740548_2 (written_by VARCHAR, production_code 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"###context:CREATE TABLE table_25740548_2 (directed_by 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"###context:CREATE TABLE table_25740548_2 (title VARCHAR, written_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"###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"###context:CREATE TABLE table_25740548_2 (original_air_date VARCHAR, directed_by 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"###context:CREATE TABLE table_25740548_3 (written_by VARCHAR, us_viewers__million_ 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"###context:CREATE TABLE table_25740548_3 (original_air_date VARCHAR, production_code 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"###context:CREATE TABLE table_25751274_2 (episode_number VARCHAR, 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###context:CREATE TABLE table_25751274_2 (episode_number INTEGER, rating 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###context:CREATE TABLE table_25751274_2 (rating VARCHAR, share 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###context:CREATE TABLE table_25751274_2 (rank__night_ INTEGER, rating VARCHAR)
###question:What is the song released by Travis?###answer:SELECT single FROM table_25760427_2 WHERE artist = "Travis"###context:CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)
###question:error (see notes)###answer:SELECT MIN(weeks_at_number_1) FROM table_25760427_2###context:CREATE TABLE table_25760427_2 (weeks_at_number_1 INTEGER)
###question:What is the song by the musician panjabi mc?###answer:SELECT single FROM table_25760427_2 WHERE artist = "Panjabi MC"###context:CREATE TABLE table_25760427_2 (single VARCHAR, artist VARCHAR)
###question:Where was the round 1 race?###answer:SELECT location FROM table_25773116_2 WHERE round = 1###context:CREATE TABLE table_25773116_2 (location VARCHAR, round VARCHAR)
###question:Who won the April 11 race?###answer:SELECT winning_driver FROM table_25773116_2 WHERE date = "April 11"###context:CREATE TABLE table_25773116_2 (winning_driver VARCHAR, date 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"###context:CREATE TABLE table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap...
###question:How many rounds were played on May 8?###answer:SELECT COUNT(round) FROM table_25773116_2 WHERE date = "May 8"###context:CREATE TABLE table_25773116_2 (round VARCHAR, date 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"###context:CREATE TABLE table_25773116_2 (pole_position VARCHAR, fastest_lap VARCHAR, lo...
###question:Where did Audette Racing win?###answer:SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing"###context:CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR)
###question:Name the directors for peter gawler###answer: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 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"###context:CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR)
###question:Name the title for season number 35###answer:SELECT title FROM table_25764073_3 WHERE season__number = 35###context:CREATE TABLE table_25764073_3 (title VARCHAR, season__number 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"###context:CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game 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)"###context:CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR, field_goal_percentage VARCHAR)
###question:Name the name for company d###answer: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 organization date being unknown###answer: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 desha###answer:SELECT name FROM table_25794010_1 WHERE county = "Desha"###context:CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR)
###question:Name the company for desha county###answer:SELECT company FROM table_25794010_1 WHERE county = "Desha"###context:CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR)
###question:Who wrote the episode with series number 56?###answer:SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56###context:CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number 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"###context:CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR)
###question:Who directed the episodes that aired December 15, 1956? ###answer:SELECT director FROM table_25800134_1 WHERE airdate = "December 15, 1956"###context:CREATE TABLE table_25800134_1 (director 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"###context:CREATE TABLE table_25800134_1 (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"###context:CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, 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"###context:CREATE TABLE table_25800134_14 (season__number INTEGER, 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"###context:CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR)
###question:Who directed episode number 626 in the series?###answer:SELECT director FROM table_25800134_19 WHERE series__number = 626###context:CREATE TABLE table_25800134_19 (director VARCHAR, series__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###context:CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number 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"###context:CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR)
###question:Who was the writer of episode 15?###answer:SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15###context:CREATE TABLE table_25800134_4 (writer_s_ VARCHAR, season__number VARCHAR)
###question:What is the title of #33?###answer:SELECT title FROM table_25800134_4 WHERE season__number = 33###context:CREATE TABLE table_25800134_4 (title VARCHAR, season__number VARCHAR)
###question:How many directors worked on #158?###answer: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 writers were for season #1?###answer: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:Who was the director for the episode on May 2, 1959?###answer:SELECT director FROM table_25800134_3 WHERE airdate = "May 2, 1959"###context:CREATE TABLE table_25800134_3 (director VARCHAR, airdate 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###context:CREATE TABLE table_25810656_3 (no_in_series VARCHAR, production_code 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###context:CREATE TABLE table_25810656_3 (title VARCHAR, no_in_series VARCHAR)
###question:What was the latest stage won by Mikhail Ignatiev? ###answer:SELECT MAX(stage) FROM table_25802618_15 WHERE winner = "Mikhail Ignatiev"###context:CREATE TABLE table_25802618_15 (stage INTEGER, winner 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"###context:CREATE TABLE table_2581397_4 (race VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)
###question:What was the distance in the Manikato Stakes race?###answer: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 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"###context:CREATE TABLE table_2581397_4 (distance VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)
###question:What date was the Doncaster race? ###answer:SELECT date FROM table_2581397_5 WHERE race = "Doncaster"###context:CREATE TABLE table_2581397_5 (date VARCHAR, race 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"###context:CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)
###question:Who was the team guest captain for episode 2?###answer: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 swash when the team guest captain was gail porter?###answer: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: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"###context:CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air...
###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"###context:CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)
###question:What group was sunline in when he was at moonee valley?###answer:SELECT group FROM table_2581397_2 WHERE venue = "Moonee Valley"###context:CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR)
###question:What was the win-loss record for the player from Switzerland? ###answer: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 the lady who appeard in 1969?###answer: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 player(s) appeared in 1969?###answer:SELECT player FROM table_25820584_7 WHERE year_s_ = "1969"###context:CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR)
###question:Name the name for norway nationality###answer:SELECT name FROM table_25826954_7 WHERE nationality = "Norway"###context:CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR)
###question:Who wrote the episode with the production code 2j5153?###answer:SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153"###context:CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code 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)"###context:CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR)
###question:how many times was the exposures 53?###answer:SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53###context:CREATE TABLE table_2583036_1 (camera VARCHAR, exposures 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"###context:CREATE TABLE table_2583036_1 (exposures VARCHAR, total_exposure_time 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)"###context:CREATE TABLE table_2583036_1 (camera VARCHAR, wavelength VARCHAR)
###question:What is the title of the show with director Paul Annett?###answer:SELECT title FROM table_2582519_6 WHERE director = "Paul Annett"###context:CREATE TABLE table_2582519_6 (title VARCHAR, director 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"###context:CREATE TABLE table_25840200_1 (titles VARCHAR, notes 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"###context:CREATE TABLE table_25840200_1 (titles VARCHAR, date VARCHAR, division 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"###context:CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR)
###question:What division was on HBO PPV?###answer:SELECT division FROM table_25840200_1 WHERE tv = "HBO PPV"###context:CREATE TABLE table_25840200_1 (division VARCHAR, tv VARCHAR)
###question:Where was the Undercard of Stevenson/Bellew?###answer:SELECT location FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew"###context:CREATE TABLE table_25840200_1 (location VARCHAR, notes VARCHAR)
###question:What was the division number for Verona, USA?###answer:SELECT COUNT(division) FROM table_25840200_1 WHERE location = "Verona, USA"###context:CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR)
###question:What mobile markets have cvt hd?###answer:SELECT cvt_hd FROM table_25839957_5 WHERE market = "Mobile"###context:CREATE TABLE table_25839957_5 (cvt_hd VARCHAR, market VARCHAR)
###question:How many opengl have the ironlake ( clarkdale ) code name?###answer:SELECT COUNT(opengl) FROM table_25839957_5 WHERE code_name = "Ironlake ( Clarkdale )"###context:CREATE TABLE table_25839957_5 (opengl VARCHAR, code_name 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"###context:CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR)
###question:What's the minimum number of execution units?###answer:SELECT MIN(execution_units) FROM table_25839957_5###context:CREATE TABLE table_25839957_5 (execution_units INTEGER)
###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"###context:CREATE TABLE table_25839957_5 (shader_model VARCHAR, core_clock___mhz__ 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"###context:CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km² VARCHAR)
###question:How many places named asan-maina?###answer: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 mongmong-toto-maite?###answer:SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite"###context:CREATE TABLE table_2588674_1 (region VARCHAR, 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"###context:CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)
###question:What village has an area of 27.19 km2?###answer:SELECT village FROM table_2588674_1 WHERE area_km² = "27.19"###context:CREATE TABLE table_2588674_1 (village VARCHAR, area_km² VARCHAR)
###question:What region is inarajan in?###answer:SELECT region FROM table_2588674_1 WHERE village = "Inarajan"###context:CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)
###question:How many POS when the average is 1.8529?###answer:SELECT MAX(pos) FROM table_25887826_17 WHERE avg = "1.8529"###context:CREATE TABLE table_25887826_17 (pos INTEGER, 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"###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"###context:CREATE TABLE table_25887826_17 (avg 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###context:CREATE TABLE table_25887826_17 (total_pts 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"###context:CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ 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"###context:CREATE TABLE table_25851971_1 (directed_by VARCHAR, production_code VARCHAR)
###question:What episode number was written by Anthony Sparks?###answer: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 was the production code of the episode written by Anthony Sparks?###answer: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 episode number was written by Karin Gist?###answer:SELECT MAX(no) FROM table_25851971_1 WHERE written_by = "Karin Gist"###context:CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR)
###question:Name the leader battle for 4-3 vote###answer:SELECT leader_battle FROM table_25920798_2 WHERE vote = "4-3"###context:CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR)