training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_27537518_7 (decision VARCHAR, score VARCHAR) ###human: Who got the decision in the game, when the final score was 1-7? ###assistant: SELECT decision FROM table_27537518_7 WHERE score = "1-7"
###context:CREATE TABLE table_27537518_7 (date VARCHAR, first_star VARCHAR) ###human: What date was M. Grabovski the first start of the game? ###assistant: SELECT date FROM table_27537518_7 WHERE first_star = "M. Grabovski"
###context:CREATE TABLE table_27537518_9 (record VARCHAR, opponent VARCHAR) ###human: What was the record for the game where the opponent was the Carolina Hurricanes? ###assistant: SELECT record FROM table_27537518_9 WHERE opponent = "Carolina Hurricanes"
###context:CREATE TABLE table_27537518_9 (date VARCHAR, record VARCHAR) ###human: On which date was the record of 27-28-11 set? ###assistant: SELECT date FROM table_27537518_9 WHERE record = "27-28-11"
###context:CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR) ###human: Who made the decision on the game where the record was 29-28-12? ###assistant: SELECT decision FROM table_27537518_9 WHERE record = "29-28-12"
###context:CREATE TABLE table_27537518_9 (decision VARCHAR, record VARCHAR) ###human: Who made the decision on the game where the record was 27-28-11? ###assistant: SELECT decision FROM table_27537518_9 WHERE record = "27-28-11"
###context:CREATE TABLE table_27539272_4 (score VARCHAR, game VARCHAR) ###human: Name the score for game 5 ###assistant: SELECT score FROM table_27539272_4 WHERE game = 5
###context:CREATE TABLE table_27539272_4 (points INTEGER, record VARCHAR) ###human: Name the most points for 1-3-1 record ###assistant: SELECT MAX(points) FROM table_27539272_4 WHERE record = "1-3-1"
###context:CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR) ###human: Name the record for prudential center - 12,880 ###assistant: SELECT record FROM table_27539272_4 WHERE location_attendance = "Prudential Center - 12,880"
###context:CREATE TABLE table_27539272_4 (record VARCHAR, location_attendance VARCHAR) ###human: Name the number of record for hp pavilion - 17,562 ###assistant: SELECT COUNT(record) FROM table_27539272_4 WHERE location_attendance = "HP Pavilion - 17,562"
###context:CREATE TABLE table_27537870_3 (october VARCHAR, score VARCHAR) ###human: On how many days in October was the score 6-1? ###assistant: SELECT COUNT(october) FROM table_27537870_3 WHERE score = "6-1"
###context:CREATE TABLE table_27537870_3 (location_attendance VARCHAR, record VARCHAR) ###human: What is the location and what was the attendance on those days when the score was 3-5-1? ###assistant: SELECT location_attendance FROM table_27537870_3 WHERE record = "3-5-1"
###context:CREATE TABLE table_27537870_3 (location_attendance VARCHAR, record VARCHAR) ###human: How many times was the sabres record 2-5-1? ###assistant: SELECT COUNT(location_attendance) FROM table_27537870_3 WHERE record = "2-5-1"
###context:CREATE TABLE table_27539272_7 (location_attendance VARCHAR, game VARCHAR) ###human: What was the location and attendance for game 41? ###assistant: SELECT location_attendance FROM table_27539272_7 WHERE game = 41
###context:CREATE TABLE table_27539272_7 (january INTEGER, record VARCHAR) ###human: On what day of January was the record 10-29-2? ###assistant: SELECT MAX(january) FROM table_27539272_7 WHERE record = "10-29-2"
###context:CREATE TABLE table_27539272_7 (points INTEGER, score VARCHAR) ###human: What are the most points scored in a game where the score was 1-2? ###assistant: SELECT MAX(points) FROM table_27539272_7 WHERE score = "1-2"
###context:CREATE TABLE table_27539272_7 (january INTEGER, record VARCHAR) ###human: On what day in January was the record 15-29-3? ###assistant: SELECT MAX(january) FROM table_27539272_7 WHERE record = "15-29-3"
###context:CREATE TABLE table_27539535_5 (opponent VARCHAR, record VARCHAR) ###human: Against what team did the Islanders have a 5-18-5 record? ###assistant: SELECT opponent FROM table_27539535_5 WHERE record = "5-18-5"
###context:CREATE TABLE table_27539535_5 (opponent VARCHAR, score VARCHAR) ###human: Against what opponent did the game end 5-4? ###assistant: SELECT opponent FROM table_27539535_5 WHERE score = "5-4"
###context:CREATE TABLE table_27539535_5 (december VARCHAR, record VARCHAR) ###human: How many games were played against a team with a 9-19-6 record against the Islanders? ###assistant: SELECT COUNT(december) FROM table_27539535_5 WHERE record = "9-19-6"
###context:CREATE TABLE table_27539808_3 (opponent VARCHAR, october VARCHAR) ###human: How many games did they play on october 9? ###assistant: SELECT COUNT(opponent) FROM table_27539808_3 WHERE october = 9
###context:CREATE TABLE table_27539808_5 (points INTEGER, game VARCHAR) ###human: What is the lowest number of points for game 32? ###assistant: SELECT MIN(points) FROM table_27539808_5 WHERE game = 32
###context:CREATE TABLE table_27539808_5 (location_attendance VARCHAR, december VARCHAR) ###human: What is the location and attendance total from the game on December 1? ###assistant: SELECT location_attendance FROM table_27539808_5 WHERE december = 1
###context:CREATE TABLE table_27547668_3 (directed_by VARCHAR, viewers VARCHAR) ###human: Who directed the episode with 899000 viewers? ###assistant: SELECT directed_by FROM table_27547668_3 WHERE viewers = 899000
###context:CREATE TABLE table_27547668_3 (_number INTEGER) ###human: What is the smallest numbered episode in the series listed? ###assistant: SELECT MIN(_number) FROM table_27547668_3
###context:CREATE TABLE table_27547668_3 (viewers VARCHAR, _number VARCHAR) ###human: How many people watched episode number 13? ###assistant: SELECT viewers FROM table_27547668_3 WHERE _number = 13
###context:CREATE TABLE table_27547668_3 (no VARCHAR, written_by VARCHAR, directed_by VARCHAR) ###human: What episode number in the season was written by Greg nelson and directed by Keith samples? ###assistant: SELECT no FROM table_27547668_3 WHERE written_by = "Greg Nelson" AND directed_by = "Keith Samples"
###context:CREATE TABLE table_27547668_2 (title VARCHAR, prod_code VARCHAR) ###human: What is the title of the episode with production code 102? ###assistant: SELECT title FROM table_27547668_2 WHERE prod_code = 102
###context:CREATE TABLE table_27547668_2 (original_airdate VARCHAR, _number VARCHAR) ###human: What is the original air date of # 6? ###assistant: SELECT original_airdate FROM table_27547668_2 WHERE _number = 6
###context:CREATE TABLE table_27547668_2 (original_airdate VARCHAR, viewers VARCHAR) ###human: What is the original air date of the episode with 908000 viewers? ###assistant: SELECT original_airdate FROM table_27547668_2 WHERE viewers = 908000
###context:CREATE TABLE table_27553627_2 (season VARCHAR, viewers__in_millions_ VARCHAR) ###human: How many season premieres had 15.27 million viewers? ###assistant: SELECT COUNT(season) AS premiere FROM table_27553627_2 WHERE viewers__in_millions_ = "15.27"
###context:CREATE TABLE table_27553627_2 (season VARCHAR, rank VARCHAR) ###human: When was the season finale that ranked 20th? ###assistant: SELECT season AS finale FROM table_27553627_2 WHERE rank = "20th"
###context:CREATE TABLE table_27553627_2 (tv_season VARCHAR, viewers__in_millions_ VARCHAR) ###human: What tv season year had 14.54 million viewers? ###assistant: SELECT tv_season FROM table_27553627_2 WHERE viewers__in_millions_ = "14.54"
###context:CREATE TABLE table_27553627_2 (episodes INTEGER, viewers__in_millions_ VARCHAR) ###human: What episode number had 14.41 million viewers? ###assistant: SELECT MAX(episodes) FROM table_27553627_2 WHERE viewers__in_millions_ = "14.41"
###context:CREATE TABLE table_27561505_2 (rnd INTEGER, circuit VARCHAR) ###human: What is the minimum rnd at Laguna Seca? ###assistant: SELECT MIN(rnd) FROM table_27561505_2 WHERE circuit = "Laguna Seca"
###context:CREATE TABLE table_27561503_2 (gt_20_winning_team VARCHAR, sports_20_winning_team VARCHAR, circuit VARCHAR) ###human: Name the gt 2.0 winning team for sports 2.0 winning team for #16 trans ocean motors for castle rock ###assistant: SELECT COUNT(gt_20_winning_team) FROM table_27561503_2 WHERE sports_2...
###context:CREATE TABLE table_27561503_2 (results VARCHAR, sports_20_winning_team VARCHAR) ###human: Name the results for #23 lotus ###assistant: SELECT COUNT(results) FROM table_27561503_2 WHERE sports_20_winning_team = "#23 Lotus"
###context:CREATE TABLE table_27561503_2 (results VARCHAR, gt_20_winning_team VARCHAR) ###human: Name results for herb wetanson ###assistant: SELECT results FROM table_27561503_2 WHERE gt_20_winning_team = "Herb Wetanson"
###context:CREATE TABLE table_27592654_2 (province VARCHAR, electorate VARCHAR) ###human: What was the province if the electorate was Collingwood? ###assistant: SELECT province FROM table_27592654_2 WHERE electorate = "Collingwood"
###context:CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR) ###human: What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861? ###assistant: SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument!...
###context:CREATE TABLE table_27582888_1 (races VARCHAR, final_placing VARCHAR) ###human: Name the races for final placing being 5th ###assistant: SELECT races FROM table_27582888_1 WHERE final_placing = "5th"
###context:CREATE TABLE table_27582888_1 (poles INTEGER, podiums VARCHAR) ###human: Name the post poles for 4 podiums ###assistant: SELECT MAX(poles) FROM table_27582888_1 WHERE podiums = 4
###context:CREATE TABLE table_27614571_1 (song_choice VARCHAR, theme VARCHAR) ###human: What was Barreto's song choice when the theme was samba? ###assistant: SELECT song_choice FROM table_27614571_1 WHERE theme = "Samba"
###context:CREATE TABLE table_27614571_1 (song_choice VARCHAR, original_artist VARCHAR) ###human: What was Barreto's song choice where the original artist was Patricia Marx? ###assistant: SELECT song_choice FROM table_27614571_1 WHERE original_artist = "Patricia Marx"
###context:CREATE TABLE table_27614571_1 (week__number VARCHAR, original_artist VARCHAR) ###human: In which week # was the original artist of Barreto's song choice was Leila Pinheiro? ###assistant: SELECT week__number FROM table_27614571_1 WHERE original_artist = "Leila Pinheiro"
###context:CREATE TABLE table_27611593_5 (year INTEGER) ###human: When did the earliest tournament happened? ###assistant: SELECT MIN(year) FROM table_27611593_5
###context:CREATE TABLE table_27611593_5 (partner VARCHAR, score VARCHAR) ###human: Who was Petrova's partner where she scored 6–2, 3–6, 6–7 (7-9)? ###assistant: SELECT partner FROM table_27611593_5 WHERE score = "6–2, 3–6, 6–7 (7-9)"
###context:CREATE TABLE table_27611593_5 (opponents VARCHAR, partner VARCHAR) ###human: Who were Petrova's opponents with Vania King? ###assistant: SELECT opponents FROM table_27611593_5 WHERE partner = "Vania King"
###context:CREATE TABLE table_27610775_1 (written_by VARCHAR, prod_code VARCHAR) ###human: Who wrote the episode with the production code 211? ###assistant: SELECT written_by FROM table_27610775_1 WHERE prod_code = 211
###context:CREATE TABLE table_27610775_1 (prod_code INTEGER, directed_by VARCHAR) ###human: What is the maximum production code of the episode directed by Sean McNamara? ###assistant: SELECT MAX(prod_code) FROM table_27610775_1 WHERE directed_by = "Sean McNamara"
###context:CREATE TABLE table_27615445_1 (audition_city VARCHAR, episode_air_date VARCHAR) ###human: How many audition city's are there with an episode air date of June 24, 2010? ###assistant: SELECT COUNT(audition_city) FROM table_27615445_1 WHERE episode_air_date = "June 24, 2010"
###context:CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_venue VARCHAR) ###human: List all episode air dates that auditioned at Nego Quirido Sambadrome? ###assistant: SELECT episode_air_date FROM table_27615445_1 WHERE audition_venue = "Nego Quirido Sambadrome"
###context:CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, guest_fourth_judge VARCHAR) ###human: List all episode air dates where Luiza Possi was the guest fourth judge? ###assistant: SELECT episode_air_date FROM table_27615445_1 WHERE guest_fourth_judge = "Luiza Possi"
###context:CREATE TABLE table_27615445_1 (episode_air_date VARCHAR, audition_city VARCHAR) ###human: How many episode air dates are there for auditioning city Rio De Janeiro? ###assistant: SELECT COUNT(episode_air_date) FROM table_27615445_1 WHERE audition_city = "Rio de Janeiro"
###context:CREATE TABLE table_27615445_1 (audition_venue VARCHAR, guest_fourth_judge VARCHAR) ###human: Where was the audition venue where Peninha was the guest fourth judge? ###assistant: SELECT audition_venue FROM table_27615445_1 WHERE guest_fourth_judge = "Peninha"
###context:CREATE TABLE table_27616663_1 (song_choice VARCHAR, original_artist VARCHAR) ###human: Which song was picked that was originally performed by Marisa Monte? ###assistant: SELECT song_choice FROM table_27616663_1 WHERE original_artist = "Marisa Monte"
###context:CREATE TABLE table_27616663_1 (result VARCHAR, original_artist VARCHAR) ###human: What was the result of the performance of the song by Caetano Veloso? ###assistant: SELECT result FROM table_27616663_1 WHERE original_artist = "Caetano Veloso"
###context:CREATE TABLE table_27616663_1 (order__number VARCHAR, theme VARCHAR) ###human: What was the order # of the theme Male Singers? ###assistant: SELECT order__number FROM table_27616663_1 WHERE theme = "Male Singers"
###context:CREATE TABLE table_27616663_1 (theme VARCHAR, original_artist VARCHAR) ###human: What was the theme when original artist Rosana's song was performed? ###assistant: SELECT theme FROM table_27616663_1 WHERE original_artist = "Rosana"
###context:CREATE TABLE table_27614707_1 (week__number VARCHAR, theme VARCHAR, order__number VARCHAR) ###human: How many different weeks are there in order number 4 that were judge's choice? ###assistant: SELECT COUNT(week__number) FROM table_27614707_1 WHERE theme = "Judge's Choice" AND order__number = "4"
###context:CREATE TABLE table_27614707_1 (song_choice VARCHAR, week__number VARCHAR, original_artist VARCHAR) ###human: What Marisa Monte song choice was song during top 5? ###assistant: SELECT song_choice FROM table_27614707_1 WHERE week__number = "Top 5" AND original_artist = "Marisa Monte"
###context:CREATE TABLE table_27614707_1 (original_artist VARCHAR, theme VARCHAR) ###human: Who was the original artist of the Top 12 Men theme? ###assistant: SELECT original_artist FROM table_27614707_1 WHERE theme = "Top 12 Men"
###context:CREATE TABLE table_27614707_1 (result VARCHAR, theme VARCHAR) ###human: What was the result of the Top 12 Men theme? ###assistant: SELECT result FROM table_27614707_1 WHERE theme = "Top 12 Men"
###context:CREATE TABLE table_27614707_1 (week__number VARCHAR, result VARCHAR) ###human: What week number was the result bottom 3? ###assistant: SELECT week__number FROM table_27614707_1 WHERE result = "Bottom 3"
###context:CREATE TABLE table_2761641_1 (points_per_game VARCHAR, assists_per_game VARCHAR) ###human: How many points per game did he have when he had 1.5 assists per game? ###assistant: SELECT points_per_game FROM table_2761641_1 WHERE assists_per_game = "1.5"
###context:CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR) ###human: How many rebounds per game did he have at the 2006 fiba world championship? ###assistant: SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = "2006 FIBA World Championship"
###context:CREATE TABLE table_2761641_1 (rebounds_per_game VARCHAR, tournament VARCHAR) ###human: How many rebounds per game did he have at the 2003 eurobasket? ###assistant: SELECT rebounds_per_game FROM table_2761641_1 WHERE tournament = "2003 EuroBasket"
###context:CREATE TABLE table_2761641_1 (assists_per_game VARCHAR, points_per_game VARCHAR) ###human: How many assists per game did he have when he had 6.8 points per game? ###assistant: SELECT assists_per_game FROM table_2761641_1 WHERE points_per_game = "6.8"
###context:CREATE TABLE table_27622417_1 (prod_code VARCHAR, no_in_series VARCHAR) ###human: which is the production code when the number of the episode in series is 87? ###assistant: SELECT prod_code FROM table_27622417_1 WHERE no_in_series = 87
###context:CREATE TABLE table_27622417_1 (no_in_series VARCHAR, prod_code VARCHAR) ###human: what is the number of the episode in the series whose production code is 405? ###assistant: SELECT no_in_series FROM table_27622417_1 WHERE prod_code = "405"
###context:CREATE TABLE table_27622417_1 (original_us_air_date VARCHAR, prod_code VARCHAR) ###human: when was the premiere of the episode whose production code is 415? ###assistant: SELECT original_us_air_date FROM table_27622417_1 WHERE prod_code = "415"
###context:CREATE TABLE table_27622417_1 (written_by VARCHAR, prod_code VARCHAR) ###human: who were the writers in the episode whose production code was 411? ###assistant: SELECT written_by FROM table_27622417_1 WHERE prod_code = "411"
###context:CREATE TABLE table_27622417_1 (directed_by VARCHAR, no_in_season VARCHAR) ###human: who were the director of the episode whose number in the season is 17? ###assistant: SELECT directed_by FROM table_27622417_1 WHERE no_in_season = 17
###context:CREATE TABLE table_2764267_2 (currency VARCHAR, negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ VARCHAR) ###human: Name the currency for negotiable debt being 1300 ###assistant: SELECT currency FROM table_2764267_2 WHERE negotiable_debt_at_mid_2005___us_dollar_bn_equivalent_ = 1300
###context:CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR) ###human: Name the country that has the yen ###assistant: SELECT country FROM table_2764267_2 WHERE currency = "Yen"
###context:CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR) ###human: Name the number of countries that have the us dollar ###assistant: SELECT COUNT(country) FROM table_2764267_2 WHERE currency = "US dollar"
###context:CREATE TABLE table_2764267_2 (country VARCHAR, currency VARCHAR) ###human: Name the country for the us dollar ###assistant: SELECT country FROM table_2764267_2 WHERE currency = "US dollar"
###context:CREATE TABLE table_27631756_2 (team VARCHAR, head_coach VARCHAR) ###human: How many teams have a head coach named mahdi ali? ###assistant: SELECT COUNT(team) FROM table_27631756_2 WHERE head_coach = "Mahdi Ali"
###context:CREATE TABLE table_27631756_2 (captain VARCHAR, kitmaker VARCHAR) ###human: How many captains have the kitmaker as n/a? ###assistant: SELECT COUNT(captain) FROM table_27631756_2 WHERE kitmaker = "N/A"
###context:CREATE TABLE table_27631756_2 (kitmaker VARCHAR, team VARCHAR) ###human: How many kitmaker correspond to team ittihad kalba? ###assistant: SELECT COUNT(kitmaker) FROM table_27631756_2 WHERE team = "Ittihad Kalba"
###context:CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR) ###human: What is the name of the captain when teh shirt sponsor is n/a? ###assistant: SELECT captain FROM table_27631756_2 WHERE shirt_sponsor = "N/A"
###context:CREATE TABLE table_27631756_2 (captain VARCHAR, shirt_sponsor VARCHAR) ###human: How many captains when the shirt sponsor is toshiba? ###assistant: SELECT COUNT(captain) FROM table_27631756_2 WHERE shirt_sponsor = "Toshiba"
###context:CREATE TABLE table_27631756_2 (chairman VARCHAR, captain VARCHAR) ###human: Who is the chairman when teh captain is fawzi bashir? ###assistant: SELECT chairman FROM table_27631756_2 WHERE captain = "Fawzi Bashir"
###context:CREATE TABLE table_27631002_1 (season VARCHAR, f_laps VARCHAR, races VARCHAR) ###human: Which season had f/laps is 0 and races is 2? ###assistant: SELECT season FROM table_27631002_1 WHERE f_laps = 0 AND races = 2
###context:CREATE TABLE table_27631002_1 (points VARCHAR, position VARCHAR) ###human: How many entries are there for points for the 6th position? ###assistant: SELECT COUNT(points) FROM table_27631002_1 WHERE position = "6th"
###context:CREATE TABLE table_27631002_1 (season VARCHAR, position VARCHAR) ###human: How many season are shown for the 2nd position? ###assistant: SELECT COUNT(season) FROM table_27631002_1 WHERE position = "2nd"
###context:CREATE TABLE table_27631002_1 (wins VARCHAR, position VARCHAR) ###human: What are the wins for the 7th position? ###assistant: SELECT wins FROM table_27631002_1 WHERE position = "7th"
###context:CREATE TABLE table_27631002_1 (position VARCHAR, series VARCHAR) ###human: What is the position for the austria formel 3 cup series? ###assistant: SELECT position FROM table_27631002_1 WHERE series = "Austria Formel 3 Cup"
###context:CREATE TABLE table_27653752_1 (ppi__pixels_per_inch__ VARCHAR, ppcm__pixels_per_cm__ VARCHAR) ###human: How many different PPI does the model with ppcm of 87 have? ###assistant: SELECT COUNT(ppi__pixels_per_inch__) FROM table_27653752_1 WHERE ppcm__pixels_per_cm__ = 87
###context:CREATE TABLE table_27653752_1 (resolution VARCHAR, pixels_per_degree__ppd_ VARCHAR) ###human: What's the resolution of the model with a PPD of 69? ###assistant: SELECT resolution FROM table_27653752_1 WHERE pixels_per_degree__ppd_ = 69
###context:CREATE TABLE table_27653955_1 (ihsa_music_class VARCHAR, mascot VARCHAR) ###human: What is the IHSA music class for the mascot that is the lancers? ###assistant: SELECT ihsa_music_class FROM table_27653955_1 WHERE mascot = "Lancers"
###context:CREATE TABLE table_27653955_1 (ihsa_cheerleading_class VARCHAR, enrollment VARCHAR) ###human: What is the IHSA cheerleading class for the enrollment of 2600? ###assistant: SELECT ihsa_cheerleading_class FROM table_27653955_1 WHERE enrollment = 2600
###context:CREATE TABLE table_27653955_1 (colors VARCHAR, enrollment VARCHAR) ###human: What are the colors for the enrollment of 2020? ###assistant: SELECT colors FROM table_27653955_1 WHERE enrollment = 2020
###context:CREATE TABLE table_27671835_3 (old_membership_total INTEGER) ###human: What is the smallest number for old membership total? ###assistant: SELECT MIN(old_membership_total) FROM table_27671835_3
###context:CREATE TABLE table_27671835_3 (members_lost INTEGER, net_change VARCHAR) ###human: What is the lowest number of members lost when the net change is −1? ###assistant: SELECT MIN(members_lost) FROM table_27671835_3 WHERE net_change = "−1"
###context:CREATE TABLE table_27671835_3 (new_membership_total INTEGER, members_lost INTEGER) ###human: What is the new membership total if the members lost is bigger than 1.0? ###assistant: SELECT MAX(new_membership_total) FROM table_27671835_3 WHERE members_lost > 1.0
###context:CREATE TABLE table_27671835_3 (members_added VARCHAR, conference VARCHAR) ###human: How many members were added at the nchc (men only) conference? ###assistant: SELECT members_added FROM table_27671835_3 WHERE conference = "NCHC (men only)"
###context:CREATE TABLE table_27671835_3 (new_membership_total VARCHAR, conference VARCHAR) ###human: What was the new membership total at the nchc (men only) conference? ###assistant: SELECT new_membership_total FROM table_27671835_3 WHERE conference = "NCHC (men only)"
###context:CREATE TABLE table_27683516_3 (outgoing_manager VARCHAR, incoming_manager VARCHAR) ###human: What is the outgoing manager when the incoming manager is štefan tarkovič? ###assistant: SELECT outgoing_manager FROM table_27683516_3 WHERE incoming_manager = "Štefan Tarkovič"
###context:CREATE TABLE table_27683516_3 (team VARCHAR, date_of_vacancy VARCHAR) ###human: How many dates of vacancy were on 30 october 2010? ###assistant: SELECT COUNT(team) FROM table_27683516_3 WHERE date_of_vacancy = "30 October 2010"