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