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