training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_2417445_4 (date_of_successors_taking_office VARCHAR, successor VARCHAR) ###human: When rudolph kleberg (d) is the successor what is the date of successors taking office? ###assistant: SELECT date_of_successors_taking_office FROM table_2417445_4 WHERE successor = "Rudolph Kleberg (D...
###context:CREATE TABLE table_24192031_2 (geographical_regions VARCHAR, contestant VARCHAR) ###human: What geographical region is contestant laura jiménez ynoa from? ###assistant: SELECT geographical_regions FROM table_24192031_2 WHERE contestant = "Laura Jiménez Ynoa"
###context:CREATE TABLE table_24192031_2 (hometown VARCHAR, height VARCHAR) ###human: How many hometowns have a height of m (ft 10 1⁄2 in)? ###assistant: SELECT COUNT(hometown) FROM table_24192031_2 WHERE height = "m (ft 10 1⁄2 in)"
###context:CREATE TABLE table_24192031_2 (age VARCHAR, height VARCHAR) ###human: How old is the person with the height of m (ft 3⁄4 in)? ###assistant: SELECT age FROM table_24192031_2 WHERE height = "m (ft 3⁄4 in)"
###context:CREATE TABLE table_24212608_1 (viewers__millions_ VARCHAR, broadcast_date VARCHAR) ###human: What was the number of viewers in millions for the broadcast from 2010? ###assistant: SELECT viewers__millions_ FROM table_24212608_1 WHERE broadcast_date = 2010
###context:CREATE TABLE table_24212608_1 (starring VARCHAR, episode VARCHAR) ###human: Who starred in episode 3? ###assistant: SELECT starring FROM table_24212608_1 WHERE episode = 3
###context:CREATE TABLE table_24212608_1 (episode VARCHAR, broadcast_date VARCHAR) ###human: How many episodes were broadcast in 2010? ###assistant: SELECT COUNT(episode) FROM table_24212608_1 WHERE broadcast_date = 2010
###context:CREATE TABLE table_24212608_1 (radio_1_presenter VARCHAR, viewers__millions_ VARCHAR) ###human: Who was the radio 1 presenter for the broadcast that had 9.73 million viewers? ###assistant: SELECT radio_1_presenter FROM table_24212608_1 WHERE viewers__millions_ = "9.73"
###context:CREATE TABLE table_24193494_3 (powertrain__engine_transmission_ VARCHAR, division VARCHAR, model VARCHAR) ###human: Name the powertrain for kmd and c40lf ###assistant: SELECT powertrain__engine_transmission_ FROM table_24193494_3 WHERE division = "KMD" AND model = "C40LF"
###context:CREATE TABLE table_24193494_3 (division VARCHAR, powertrain__engine_transmission_ VARCHAR) ###human: Name the division for detroit diesel series 50egr allison wb-400r ###assistant: SELECT division FROM table_24193494_3 WHERE powertrain__engine_transmission_ = "Detroit Diesel Series 50EGR Allison WB-...
###context:CREATE TABLE table_24193494_3 (manufacturer VARCHAR, order_year VARCHAR) ###human: Name the manufacturer for 2011 ###assistant: SELECT manufacturer FROM table_24193494_3 WHERE order_year = 2011
###context:CREATE TABLE table_2419754_1 (location VARCHAR, nickname VARCHAR) ###human: List the number of locations for the team known as the billikens. ###assistant: SELECT COUNT(location) FROM table_2419754_1 WHERE nickname = "Billikens"
###context:CREATE TABLE table_2419754_1 (enrollment INTEGER, location VARCHAR) ###human: How many people are enrolled at the university in milwaukee, wisconsin ###assistant: SELECT MIN(enrollment) FROM table_2419754_1 WHERE location = "Milwaukee, Wisconsin"
###context:CREATE TABLE table_2419754_1 (left INTEGER) ###human: In what year did the teams leave the conference? ###assistant: SELECT MAX(left) FROM table_2419754_1
###context:CREATE TABLE table_2419754_1 (institution VARCHAR, nickname VARCHAR) ###human: What university team is referred to as the tigers? ###assistant: SELECT institution FROM table_2419754_1 WHERE nickname = "Tigers"
###context:CREATE TABLE table_24192190_1 (magnitude VARCHAR, latitude VARCHAR) ###human: When 43.048° n is the latitude what is the magnitude? ###assistant: SELECT magnitude FROM table_24192190_1 WHERE latitude = "43.048° N"
###context:CREATE TABLE table_24192190_1 (latitude VARCHAR, time__utc_ VARCHAR) ###human: When 9:47:38 is the time (utc) how many measurements of latitude are there? ###assistant: SELECT COUNT(latitude) FROM table_24192190_1 WHERE time__utc_ = "9:47:38"
###context:CREATE TABLE table_24192190_1 (longitude VARCHAR, latitude VARCHAR) ###human: When 42.903° n is the latitude how many measurements of longitude are there? ###assistant: SELECT COUNT(longitude) FROM table_24192190_1 WHERE latitude = "42.903° N"
###context:CREATE TABLE table_24192190_1 (depth VARCHAR, time__utc_ VARCHAR) ###human: When 11:40:26 is the time (utc) what is the depth? ###assistant: SELECT depth FROM table_24192190_1 WHERE time__utc_ = "11:40:26"
###context:CREATE TABLE table_24224647_2 (main_presenter VARCHAR, year_premiered VARCHAR) ###human: Who is every main presenter for the year 2011? ###assistant: SELECT main_presenter FROM table_24224647_2 WHERE year_premiered = 2011
###context:CREATE TABLE table_24224647_2 (main_presenter VARCHAR, region_country VARCHAR) ###human: Who is every main presenter for the Estonia region/country? ###assistant: SELECT main_presenter FROM table_24224647_2 WHERE region_country = "Estonia"
###context:CREATE TABLE table_24224647_2 (year_premiered INTEGER, network VARCHAR, main_presenter VARCHAR) ###human: What is the highest year premiered for the TV2 network when main present is øyvind mund? ###assistant: SELECT MAX(year_premiered) FROM table_24224647_2 WHERE network = "TV2" AND main_presenter = ...
###context:CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR) ###human: How many years premiered have Sa Beining as main presenter? ###assistant: SELECT COUNT(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Sa Beining"
###context:CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR) ###human: What is every year premiered when Behzat Uighur is main presenter? ###assistant: SELECT year_premiered FROM table_24224647_2 WHERE main_presenter = "Behzat Uighur"
###context:CREATE TABLE table_24224647_2 (year_premiered INTEGER, main_presenter VARCHAR) ###human: What is the highest year premiered when Benjamin Castaldi is main presenter? ###assistant: SELECT MAX(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Benjamin Castaldi"
###context:CREATE TABLE table_24222929_4 (episode_number_production_number VARCHAR, title VARCHAR) ###human: Name the episode number for tasers and mind erasers ###assistant: SELECT episode_number_production_number FROM table_24222929_4 WHERE title = "Tasers and Mind Erasers"
###context:CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR) ###human: Name the original air date for 7 1-07 ###assistant: SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = "7 1-07"
###context:CREATE TABLE table_24222929_4 (total_viewers_on_hallmark VARCHAR, title VARCHAR) ###human: Name the total viewers on hallmark for pilot ###assistant: SELECT total_viewers_on_hallmark + 1 FROM table_24222929_4 WHERE title = "Pilot"
###context:CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR) ###human: Name the rank on channel mooning and crooning ###assistant: SELECT rank_on_channel FROM table_24222929_4 WHERE title = "Mooning and Crooning"
###context:CREATE TABLE table_24222929_4 (rank_on_channel VARCHAR, title VARCHAR) ###human: Name the rank on channel for pilot ###assistant: SELECT rank_on_channel FROM table_24222929_4 WHERE title = "Pilot"
###context:CREATE TABLE table_24231638_3 (manner_of_departure VARCHAR, team VARCHAR) ###human: What is the manner of departure for the team racing santander? ###assistant: SELECT manner_of_departure FROM table_24231638_3 WHERE team = "Racing Santander"
###context:CREATE TABLE table_24231638_3 (replaced_by VARCHAR, date_of_appointment VARCHAR) ###human: Who replaced on the date of appointment 2 november 2010? ###assistant: SELECT replaced_by FROM table_24231638_3 WHERE date_of_appointment = "2 November 2010"
###context:CREATE TABLE table_24231638_3 (team VARCHAR, position_in_table VARCHAR) ###human: What is the team for the position in table 19th? ###assistant: SELECT team FROM table_24231638_3 WHERE position_in_table = "19th"
###context:CREATE TABLE table_24231638_3 (team VARCHAR, replaced_by VARCHAR) ###human: What is the team that the replaced by is miroslav đukić? ###assistant: SELECT team FROM table_24231638_3 WHERE replaced_by = "Miroslav Đukić"
###context:CREATE TABLE table_24231638_3 (position_in_table VARCHAR, date_of_vacancy VARCHAR) ###human: How many times was the date of vacancy 14 february 2011? ###assistant: SELECT COUNT(position_in_table) FROM table_24231638_3 WHERE date_of_vacancy = "14 February 2011"
###context:CREATE TABLE table_24231638_3 (date_of_appointment VARCHAR, team VARCHAR) ###human: what is the date of appointment for the team osasuna? ###assistant: SELECT date_of_appointment FROM table_24231638_3 WHERE team = "Osasuna"
###context:CREATE TABLE table_24224991_2 (l INTEGER) ###human: What is the lowest amount of L in any season? ###assistant: SELECT MIN(l) FROM table_24224991_2
###context:CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR) ###human: Name the total number of votes for 3rd voted out day 9 ###assistant: SELECT COUNT(vote) FROM table_24233848_2 WHERE finish = "3rd voted Out Day 9"
###context:CREATE TABLE table_24233848_2 (eliminated VARCHAR, finish VARCHAR) ###human: Name the eliminated 7th voted out day 21 ###assistant: SELECT eliminated FROM table_24233848_2 WHERE finish = "7th voted Out Day 21"
###context:CREATE TABLE table_24233848_2 (vote VARCHAR, eliminated VARCHAR) ###human: Name the vote for thiago ###assistant: SELECT vote FROM table_24233848_2 WHERE eliminated = "Thiago"
###context:CREATE TABLE table_24233848_2 (vote VARCHAR, finish VARCHAR) ###human: Name the vote for 9th voted out day 22 ###assistant: SELECT vote FROM table_24233848_2 WHERE finish = "9th voted Out Day 22"
###context:CREATE TABLE table_24233848_2 (reward VARCHAR, eliminated VARCHAR) ###human: Name the reward eliminated hilca ###assistant: SELECT reward FROM table_24233848_2 WHERE eliminated = "Hilca"
###context:CREATE TABLE table_24239748_2 (exports__us$_mil_ VARCHAR, county VARCHAR) ###human: When the country is vest, what were the exports? ###assistant: SELECT exports__us$_mil_ FROM table_24239748_2 WHERE county = "Vest"
###context:CREATE TABLE table_24257833_4 (major_version VARCHAR, webkit_version VARCHAR) ###human: What was the major version when the webkit version was 528.17? ###assistant: SELECT major_version FROM table_24257833_4 WHERE webkit_version = "528.17"
###context:CREATE TABLE table_24257833_4 (major_version VARCHAR, release_date VARCHAR, minor_version VARCHAR) ###human: List major versions released on May 12, 2009, that had a minor version of 3.2.3. ###assistant: SELECT major_version FROM table_24257833_4 WHERE release_date = "May 12, 2009" AND minor_version ...
###context:CREATE TABLE table_24257833_4 (minor_version VARCHAR, release_date VARCHAR) ###human: What was the minor version released on April 16, 2008? ###assistant: SELECT minor_version FROM table_24257833_4 WHERE release_date = "April 16, 2008"
###context:CREATE TABLE table_24257833_4 (webkit_version VARCHAR, major_version VARCHAR, minor_version VARCHAR) ###human: List all webkit versions when the major version was Safari 3, and the minor version was 3.1.2. ###assistant: SELECT webkit_version FROM table_24257833_4 WHERE major_version = "Safari 3" AND ...
###context:CREATE TABLE table_24257833_4 (operating_system VARCHAR, webkit_version VARCHAR) ###human: List all OS's with a webkit version of 525.29.1. ###assistant: SELECT operating_system FROM table_24257833_4 WHERE webkit_version = "525.29.1"
###context:CREATE TABLE table_24257833_4 (webkit_version VARCHAR, minor_version VARCHAR) ###human: What is the webkit version when the minor version was 3.1.2.? ###assistant: SELECT webkit_version FROM table_24257833_4 WHERE minor_version = "3.1.2"
###context:CREATE TABLE table_242785_3 (main_legion_base VARCHAR, notes VARCHAR) ###human: What was the main legion base for the Romans when the notes were "primigenia goddess of fate. xx in batavi revolt"? ###assistant: SELECT main_legion_base FROM table_242785_3 WHERE notes = "Primigenia goddess of Fate. XX i...
###context:CREATE TABLE table_242785_3 (notes VARCHAR, date_founded__founder VARCHAR) ###human: What are the notes during 57 bc caesar? ###assistant: SELECT notes FROM table_242785_3 WHERE date_founded__founder = "57 BC Caesar"
###context:CREATE TABLE table_242785_3 (date_founded__founder VARCHAR, emblem VARCHAR) ###human: What is the date founded/founder when the emblem was Hercules? ###assistant: SELECT date_founded__founder FROM table_242785_3 WHERE emblem = "Hercules"
###context:CREATE TABLE table_242785_3 (main_legion_base VARCHAR, date_disband VARCHAR) ###human: What is the main legion base that disbanded 70 xx? ###assistant: SELECT main_legion_base FROM table_242785_3 WHERE date_disband = "70 XX"
###context:CREATE TABLE table_242785_1 (date_disband VARCHAR, main_legionary_base VARCHAR) ###human: When did svishtov , bulgaria disband? ###assistant: SELECT date_disband FROM table_242785_1 WHERE main_legionary_base = "Svishtov , Bulgaria"
###context:CREATE TABLE table_242785_1 (date_founded__founder VARCHAR, notes VARCHAR) ###human: when notes are prima italica:raised for aborted caucasus war, when was that founded? ###assistant: SELECT date_founded__founder FROM table_242785_1 WHERE notes = "prima Italica:raised for aborted Caucasus war"
###context:CREATE TABLE table_242785_1 (notes VARCHAR, main_legionary_base VARCHAR) ###human: What are the notes for svishtov , bulgaria? ###assistant: SELECT notes FROM table_242785_1 WHERE main_legionary_base = "Svishtov , Bulgaria"
###context:CREATE TABLE table_242813_2 (team VARCHAR, overall_rank VARCHAR) ###human: Name the team ranked 4 ###assistant: SELECT COUNT(team) FROM table_242813_2 WHERE overall_rank = 4
###context:CREATE TABLE table_242813_2 (league VARCHAR, strikeouts VARCHAR) ###human: Name the league for strikeouts being 451 ###assistant: SELECT league FROM table_242813_2 WHERE strikeouts = 451
###context:CREATE TABLE table_242813_2 (overall_rank INTEGER, league VARCHAR) ###human: Name the most overall rank for nl/ua league ###assistant: SELECT MAX(overall_rank) FROM table_242813_2 WHERE league = "NL/UA"
###context:CREATE TABLE table_242813_2 (pitcher VARCHAR, overall_rank VARCHAR) ###human: Name the total number of pitcher for 9 overall rank ###assistant: SELECT COUNT(pitcher) FROM table_242813_2 WHERE overall_rank = 9
###context:CREATE TABLE table_242813_2 (season INTEGER, pitcher VARCHAR) ###human: Name the most season for old hoss radbourn ###assistant: SELECT MAX(season) FROM table_242813_2 WHERE pitcher = "Old Hoss Radbourn"
###context:CREATE TABLE table_24278858_2 (week INTEGER, opponent VARCHAR) ###human: What week did they play the amsterdam admirals? ###assistant: SELECT MAX(week) FROM table_24278858_2 WHERE opponent = "Amsterdam Admirals"
###context:CREATE TABLE table_24278858_2 (date VARCHAR, week VARCHAR) ###human: What date did the team play on week 8? ###assistant: SELECT date FROM table_24278858_2 WHERE week = 8
###context:CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR) ###human: What country has the most height in the northwestern peak of rysy? ###assistant: SELECT country_or_region FROM table_24285393_1 WHERE highest_point = "Northwestern peak of Rysy"
###context:CREATE TABLE table_24285393_1 (highest_point VARCHAR, country_or_region VARCHAR) ###human: What are the highest point in latvia ###assistant: SELECT highest_point FROM table_24285393_1 WHERE country_or_region = "Latvia"
###context:CREATE TABLE table_24285393_1 (maximum_elevation VARCHAR, country_or_region VARCHAR) ###human: What is the maximum elevation in netherlands? ###assistant: SELECT maximum_elevation FROM table_24285393_1 WHERE country_or_region = "Netherlands"
###context:CREATE TABLE table_24285393_1 (country_or_region VARCHAR, highest_point VARCHAR) ###human: In what country is mont sokbaro a highest point ###assistant: SELECT country_or_region FROM table_24285393_1 WHERE highest_point = "Mont Sokbaro"
###context:CREATE TABLE table_2429942_2 (club VARCHAR, third_place VARCHAR) ###human: how many times was third place held by drnovice? ###assistant: SELECT COUNT(club) FROM table_2429942_2 WHERE third_place = "Drnovice"
###context:CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR) ###human: Who is the top goalscorer for the season 2010-11? ###assistant: SELECT top_goalscorer FROM table_2429942_2 WHERE season = "2010-11"
###context:CREATE TABLE table_2429942_2 (third_place VARCHAR, champions VARCHAR) ###human: Who had third place when the champions is baník ostrava (1)? ###assistant: SELECT third_place FROM table_2429942_2 WHERE champions = "Baník Ostrava (1)"
###context:CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR) ###human: Who was the top goalscorer for season 2001-02? ###assistant: SELECT top_goalscorer FROM table_2429942_2 WHERE season = "2001-02"
###context:CREATE TABLE table_2429942_2 (runner_up VARCHAR, season VARCHAR) ###human: Who is the runner-up for the season 2008-09? ###assistant: SELECT runner_up FROM table_2429942_2 WHERE season = "2008-09"
###context:CREATE TABLE table_2429942_2 (top_goalscorer VARCHAR, season VARCHAR) ###human: Who is the top goalscorer for season 1998-99? ###assistant: SELECT top_goalscorer FROM table_2429942_2 WHERE season = "1998-99"
###context:CREATE TABLE table_2430014_6 (written_by VARCHAR, directed_by VARCHAR) ###human: Name the written by for john trefor ###assistant: SELECT written_by FROM table_2430014_6 WHERE directed_by = "John Trefor"
###context:CREATE TABLE table_2430014_8 (directed_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR) ###human: How many directors worked on the episode with 2.27m (5) is the ratings? ###assistant: SELECT COUNT(directed_by) FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = "2.27m (5)"
###context:CREATE TABLE table_2430014_8 (title VARCHAR, episode_no VARCHAR) ###human: What is the title of episode 2? ###assistant: SELECT title FROM table_2430014_8 WHERE episode_no = 2
###context:CREATE TABLE table_2430014_8 (written_by VARCHAR, uk_ratings__bbc2_rank_ VARCHAR) ###human: Who wrote the episode what had the rating 2.27m (5)? ###assistant: SELECT written_by FROM table_2430014_8 WHERE uk_ratings__bbc2_rank_ = "2.27m (5)"
###context:CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR) ###human: Name the 2013 profit for assets being 11.2 ###assistant: SELECT 2013 AS _profit__mil_usd__ FROM table_24307126_3 WHERE assets_2013__bil$_ = "11.2"
###context:CREATE TABLE table_24307126_3 (assets_2013__bil$_ VARCHAR, rank_2013 VARCHAR) ###human: Name the assets when the rank is 1435 ###assistant: SELECT assets_2013__bil$_ FROM table_24307126_3 WHERE rank_2013 = 1435
###context:CREATE TABLE table_24307126_3 (april_2013_cum_rank VARCHAR, rank_2012 VARCHAR) ###human: Name the number of rank for april 2013 for 2012 ran kbeing 225 ###assistant: SELECT COUNT(april_2013_cum_rank) FROM table_24307126_3 WHERE rank_2012 = 225
###context:CREATE TABLE table_24307126_3 (assets_2013__bil VARCHAR, base VARCHAR) ###human: Name the number of assets for australia ###assistant: SELECT COUNT(assets_2013__bil) AS $_ FROM table_24307126_3 WHERE base = "Australia"
###context:CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR) ###human: What is the position of the player who got 6 (4 in 34.49s) in the 6 atlas stones event? ###assistant: SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "6 (4 in 34.49s)"
###context:CREATE TABLE table_24302700_6 (name VARCHAR, nationality VARCHAR) ###human: Who are all the players from the united states? ###assistant: SELECT name FROM table_24302700_6 WHERE nationality = "United States"
###context:CREATE TABLE table_24302700_6 (event_6_atlas_stones VARCHAR, event_3_dead_lift VARCHAR) ###human: What is the score in the 6 atlas stones event of the player who got 2 (6 in 30.89s) in the 3 dead lift event? ###assistant: SELECT COUNT(event_6_atlas_stones) FROM table_24302700_6 WHERE event_3_dead_lif...
###context:CREATE TABLE table_24302700_6 (position VARCHAR, event_6_atlas_stones VARCHAR) ###human: What is the position of the player with a 5 (4 in 32.66s) in the 6 atlas stones event? ###assistant: SELECT position FROM table_24302700_6 WHERE event_6_atlas_stones = "5 (4 in 32.66s)"
###context:CREATE TABLE table_24302700_6 (event_2_truck_pull VARCHAR, event_4_fingals_fingers VARCHAR) ###human: What is the score in the 2 truck pull of the player who got 1 (5 in 33.84s) in the 4 fingals fingers? ###assistant: SELECT event_2_truck_pull FROM table_24302700_6 WHERE event_4_fingals_fingers = "1...
###context:CREATE TABLE table_24330912_1 (cuts_made INTEGER, top_10s VARCHAR) ###human: When 0 is the top 10's what is the highest amount of cuts made? ###assistant: SELECT MAX(cuts_made) FROM table_24330912_1 WHERE top_10s = 0
###context:CREATE TABLE table_24330912_1 (Id VARCHAR) ###human: What is the lowest overall amount of times they've been in 3rd? ###assistant: SELECT MIN(3 AS rd) FROM table_24330912_1
###context:CREATE TABLE table_24330912_1 (money_list_rank INTEGER, year VARCHAR) ###human: When 2011 is the year what is the lowest money list rank? ###assistant: SELECT MIN(money_list_rank) FROM table_24330912_1 WHERE year = 2011
###context:CREATE TABLE table_24330912_1 (money_list_rank INTEGER) ###human: What is the lowest overall money list rank? ###assistant: SELECT MIN(money_list_rank) FROM table_24330912_1
###context:CREATE TABLE table_24330912_1 (tournaments_played INTEGER, best_finish VARCHAR) ###human: When t3 is the best finish what is the lowest amount of tournaments played? ###assistant: SELECT MIN(tournaments_played) FROM table_24330912_1 WHERE best_finish = "T3"
###context:CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR) ###human: What is the latest amount of won legs in the payoffs when the prize money was £2,350? ###assistant: SELECT MAX(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = "£2,350"
###context:CREATE TABLE table_24334163_1 (Winners VARCHAR, player VARCHAR) ###human: How many group legs were won with player Mark Dudbridge? ###assistant: SELECT Winners AS group_legs_won FROM table_24334163_1 WHERE player = "Mark Dudbridge"
###context:CREATE TABLE table_24334163_1 (Winners INTEGER, total_money_won VARCHAR) ###human: What is the highest amount of group legs won when the prize money was £21,850? ###assistant: SELECT MAX(Winners) AS group_legs_won FROM table_24334163_1 WHERE total_money_won = "£21,850"
###context:CREATE TABLE table_24334163_1 (Winners VARCHAR, total_money_won VARCHAR) ###human: How many play-off legs were won when the prize money was £10,300? ###assistant: SELECT COUNT(Winners) AS play_off_legs_won FROM table_24334163_1 WHERE total_money_won = "£10,300"
###context:CREATE TABLE table_24334163_1 (Winners INTEGER) ###human: What is the least amount of playoff legs won? ###assistant: SELECT MIN(Winners) AS play_off_legs_won FROM table_24334163_1
###context:CREATE TABLE table_24319661_5 (directed_by VARCHAR, no_in_series VARCHAR) ###human: Who directed episode 53 in the series? ###assistant: SELECT directed_by FROM table_24319661_5 WHERE no_in_series = 53
###context:CREATE TABLE table_24319661_5 (production_code VARCHAR, directed_by VARCHAR) ###human: What as the production code for the episode directed by Robert Duncan McNeill? ###assistant: SELECT production_code FROM table_24319661_5 WHERE directed_by = "Robert Duncan McNeill"
###context:CREATE TABLE table_24319661_5 (no_in_season VARCHAR, production_code VARCHAR) ###human: What episode number of the season had BCW410 as a production code? ###assistant: SELECT no_in_season FROM table_24319661_5 WHERE production_code = "BCW410"
###context:CREATE TABLE table_24319661_5 (no_in_series INTEGER, us_viewers__million_ VARCHAR) ###human: What episode number in the series had 2.77 million U.S. viewers? ###assistant: SELECT MAX(no_in_series) FROM table_24319661_5 WHERE us_viewers__million_ = "2.77"