question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Which years did Michigan state university come in third place?
CREATE TABLE table_2331549_1 (year VARCHAR, third_place VARCHAR)
SELECT year FROM table_2331549_1 WHERE third_place = "Michigan State University"
### Context: CREATE TABLE table_2331549_1 (year VARCHAR, third_place VARCHAR) ### Question: Which years did Michigan state university come in third place? ### Answer: SELECT year FROM table_2331549_1 WHERE third_place = "Michigan State University"
Who were the champions in years where michigan technological university was in third place?
CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR)
SELECT champion FROM table_2331549_1 WHERE third_place = "Michigan Technological University"
### Context: CREATE TABLE table_2331549_1 (champion VARCHAR, third_place VARCHAR) ### Question: Who were the champions in years where michigan technological university was in third place? ### Answer: SELECT champion FROM table_2331549_1 WHERE third_place = "Michigan Technological University"
What was the host city in years where the host school was école de technologie supérieure?
CREATE TABLE table_2331549_1 (host_city VARCHAR, host_school VARCHAR)
SELECT host_city FROM table_2331549_1 WHERE host_school = "École de technologie supérieure"
### Context: CREATE TABLE table_2331549_1 (host_city VARCHAR, host_school VARCHAR) ### Question: What was the host city in years where the host school was école de technologie supérieure? ### Answer: SELECT host_city FROM table_2331549_1 WHERE host_school = "École de technologie supérieure"
Who came in second place when the champion was south dakota school of mines & technology?
CREATE TABLE table_2331549_1 (second_place VARCHAR, champion VARCHAR)
SELECT second_place FROM table_2331549_1 WHERE champion = "South Dakota School of Mines & Technology"
### Context: CREATE TABLE table_2331549_1 (second_place VARCHAR, champion VARCHAR) ### Question: Who came in second place when the champion was south dakota school of mines & technology? ### Answer: SELECT second_place FROM table_2331549_1 WHERE champion = "South Dakota School of Mines & Technology"
If the average is 45.65, what is the total number of innings?
CREATE TABLE table_23316034_16 (innings VARCHAR, average VARCHAR)
SELECT COUNT(innings) FROM table_23316034_16 WHERE average = "45.65"
### Context: CREATE TABLE table_23316034_16 (innings VARCHAR, average VARCHAR) ### Question: If the average is 45.65, what is the total number of innings? ### Answer: SELECT COUNT(innings) FROM table_23316034_16 WHERE average = "45.65"
What is the name of the player if the innings is 82?
CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR)
SELECT player FROM table_23316034_16 WHERE innings = 82
### Context: CREATE TABLE table_23316034_16 (player VARCHAR, innings VARCHAR) ### Question: What is the name of the player if the innings is 82? ### Answer: SELECT player FROM table_23316034_16 WHERE innings = 82
If the innings is 68, what is the average?
CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR)
SELECT average FROM table_23316034_16 WHERE innings = 68
### Context: CREATE TABLE table_23316034_16 (average VARCHAR, innings VARCHAR) ### Question: If the innings is 68, what is the average? ### Answer: SELECT average FROM table_23316034_16 WHERE innings = 68
If the runs is 5028, what is the matches maximum?
CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR)
SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028
### Context: CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR) ### Question: If the runs is 5028, what is the matches maximum? ### Answer: SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028
Name the least dismissals for sammy carter
CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR)
SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = "Sammy Carter"
### Context: CREATE TABLE table_23316034_23 (dismissals INTEGER, player VARCHAR) ### Question: Name the least dismissals for sammy carter ### Answer: SELECT MIN(dismissals) FROM table_23316034_23 WHERE player = "Sammy Carter"
Name the number of dismissals for adam gilchrist
CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR)
SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = "Adam Gilchrist"
### Context: CREATE TABLE table_23316034_23 (dismissals VARCHAR, player VARCHAR) ### Question: Name the number of dismissals for adam gilchrist ### Answer: SELECT COUNT(dismissals) FROM table_23316034_23 WHERE player = "Adam Gilchrist"
Name the least dismissals for 4 rank
CREATE TABLE table_23316034_23 (dismissals INTEGER, rank VARCHAR)
SELECT MAX(dismissals) FROM table_23316034_23 WHERE rank = 4
### Context: CREATE TABLE table_23316034_23 (dismissals INTEGER, rank VARCHAR) ### Question: Name the least dismissals for 4 rank ### Answer: SELECT MAX(dismissals) FROM table_23316034_23 WHERE rank = 4
How many top 10 finishes did Ken Bouchard get in the year he won $17,695?
CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR)
SELECT top_10 FROM table_2333416_2 WHERE winnings = "$17,695"
### Context: CREATE TABLE table_2333416_2 (top_10 VARCHAR, winnings VARCHAR) ### Question: How many top 10 finishes did Ken Bouchard get in the year he won $17,695? ### Answer: SELECT top_10 FROM table_2333416_2 WHERE winnings = "$17,695"
What year did Ken Bouchard finish in 78th place?
CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)
SELECT year FROM table_2333416_2 WHERE position = "78th"
### Context: CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR) ### Question: What year did Ken Bouchard finish in 78th place? ### Answer: SELECT year FROM table_2333416_2 WHERE position = "78th"
How many seasons did Ken Bouchard finish in 38th place?
CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR)
SELECT COUNT(year) FROM table_2333416_2 WHERE position = "38th"
### Context: CREATE TABLE table_2333416_2 (year VARCHAR, position VARCHAR) ### Question: How many seasons did Ken Bouchard finish in 38th place? ### Answer: SELECT COUNT(year) FROM table_2333416_2 WHERE position = "38th"
What is the greatest number of wins Ken Bouchard had in a season?
CREATE TABLE table_2333416_2 (wins INTEGER)
SELECT MIN(wins) FROM table_2333416_2
### Context: CREATE TABLE table_2333416_2 (wins INTEGER) ### Question: What is the greatest number of wins Ken Bouchard had in a season? ### Answer: SELECT MIN(wins) FROM table_2333416_2
How many races in 2012 season have 0 podiums?
CREATE TABLE table_23338693_1 (races VARCHAR, season VARCHAR, podiums VARCHAR)
SELECT COUNT(races) FROM table_23338693_1 WHERE season = 2012 AND podiums = 0
### Context: CREATE TABLE table_23338693_1 (races VARCHAR, season VARCHAR, podiums VARCHAR) ### Question: How many races in 2012 season have 0 podiums? ### Answer: SELECT COUNT(races) FROM table_23338693_1 WHERE season = 2012 AND podiums = 0
How many seasons have motopark team?
CREATE TABLE table_23338693_1 (season VARCHAR, team VARCHAR)
SELECT COUNT(season) FROM table_23338693_1 WHERE team = "Motopark"
### Context: CREATE TABLE table_23338693_1 (season VARCHAR, team VARCHAR) ### Question: How many seasons have motopark team? ### Answer: SELECT COUNT(season) FROM table_23338693_1 WHERE team = "Motopark"
Which team has nc position for 2010 season?
CREATE TABLE table_23338693_1 (team VARCHAR, position VARCHAR, season VARCHAR)
SELECT team FROM table_23338693_1 WHERE position = "NC" AND season = 2010
### Context: CREATE TABLE table_23338693_1 (team VARCHAR, position VARCHAR, season VARCHAR) ### Question: Which team has nc position for 2010 season? ### Answer: SELECT team FROM table_23338693_1 WHERE position = "NC" AND season = 2010
How many points have a series of british formula renault 2.0 winter cup and f/laps of 0?
CREATE TABLE table_23338693_1 (points VARCHAR, series VARCHAR, f_laps VARCHAR)
SELECT points FROM table_23338693_1 WHERE series = "British Formula Renault 2.0 Winter Cup" AND f_laps = 0
### Context: CREATE TABLE table_23338693_1 (points VARCHAR, series VARCHAR, f_laps VARCHAR) ### Question: How many points have a series of british formula renault 2.0 winter cup and f/laps of 0? ### Answer: SELECT points FROM table_23338693_1 WHERE series = "British Formula Renault 2.0 Winter Cup" AND f_laps = 0
If the amount of rebounds is 0, what is the maximum minutes?
CREATE TABLE table_23346303_5 (minutes INTEGER, rebounds VARCHAR)
SELECT MAX(minutes) FROM table_23346303_5 WHERE rebounds = 0
### Context: CREATE TABLE table_23346303_5 (minutes INTEGER, rebounds VARCHAR) ### Question: If the amount of rebounds is 0, what is the maximum minutes? ### Answer: SELECT MAX(minutes) FROM table_23346303_5 WHERE rebounds = 0
What is the points total number if the assists is 7?
CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR)
SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7
### Context: CREATE TABLE table_23346303_5 (points VARCHAR, assists VARCHAR) ### Question: What is the points total number if the assists is 7? ### Answer: SELECT COUNT(points) FROM table_23346303_5 WHERE assists = 7
If the field goals is 26, what are the players names?
CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR)
SELECT player FROM table_23346303_5 WHERE field_goals = 26
### Context: CREATE TABLE table_23346303_5 (player VARCHAR, field_goals VARCHAR) ### Question: If the field goals is 26, what are the players names? ### Answer: SELECT player FROM table_23346303_5 WHERE field_goals = 26
If the player is Jasmine Wynne, what is the minimum number of steals?
CREATE TABLE table_23346303_5 (steals INTEGER, player VARCHAR)
SELECT MIN(steals) FROM table_23346303_5 WHERE player = "Jasmine Wynne"
### Context: CREATE TABLE table_23346303_5 (steals INTEGER, player VARCHAR) ### Question: If the player is Jasmine Wynne, what is the minimum number of steals? ### Answer: SELECT MIN(steals) FROM table_23346303_5 WHERE player = "Jasmine Wynne"
What is the blocks total number if the points is 4?
CREATE TABLE table_23346303_5 (blocks VARCHAR, points VARCHAR)
SELECT COUNT(blocks) FROM table_23346303_5 WHERE points = 4
### Context: CREATE TABLE table_23346303_5 (blocks VARCHAR, points VARCHAR) ### Question: What is the blocks total number if the points is 4? ### Answer: SELECT COUNT(blocks) FROM table_23346303_5 WHERE points = 4
How many steals did jasmine wynne have?
CREATE TABLE table_23346303_4 (steals VARCHAR, player VARCHAR)
SELECT steals FROM table_23346303_4 WHERE player = "Jasmine Wynne"
### Context: CREATE TABLE table_23346303_4 (steals VARCHAR, player VARCHAR) ### Question: How many steals did jasmine wynne have? ### Answer: SELECT steals FROM table_23346303_4 WHERE player = "Jasmine Wynne"
How many games did janae stokes play?
CREATE TABLE table_23346303_4 (games_played INTEGER, player VARCHAR)
SELECT MAX(games_played) FROM table_23346303_4 WHERE player = "Janae Stokes"
### Context: CREATE TABLE table_23346303_4 (games_played INTEGER, player VARCHAR) ### Question: How many games did janae stokes play? ### Answer: SELECT MAX(games_played) FROM table_23346303_4 WHERE player = "Janae Stokes"
How many rebounds did crystal ayers have?
CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR)
SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = "Crystal Ayers"
### Context: CREATE TABLE table_23346303_4 (rebounds VARCHAR, player VARCHAR) ### Question: How many rebounds did crystal ayers have? ### Answer: SELECT COUNT(rebounds) FROM table_23346303_4 WHERE player = "Crystal Ayers"
What was the Orangemen record during game 3?
CREATE TABLE table_23346983_1 (record VARCHAR, game VARCHAR)
SELECT record FROM table_23346983_1 WHERE game = 3
### Context: CREATE TABLE table_23346983_1 (record VARCHAR, game VARCHAR) ### Question: What was the Orangemen record during game 3? ### Answer: SELECT record FROM table_23346983_1 WHERE game = 3
What was the record for the Orangemen when they played against Army?
CREATE TABLE table_23346983_1 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_23346983_1 WHERE opponent = "Army"
### Context: CREATE TABLE table_23346983_1 (record VARCHAR, opponent VARCHAR) ### Question: What was the record for the Orangemen when they played against Army? ### Answer: SELECT record FROM table_23346983_1 WHERE opponent = "Army"
How many points did the Orangemen score in game 1?
CREATE TABLE table_23346983_1 (orangemen_points INTEGER, game VARCHAR)
SELECT MAX(orangemen_points) FROM table_23346983_1 WHERE game = 1
### Context: CREATE TABLE table_23346983_1 (orangemen_points INTEGER, game VARCHAR) ### Question: How many points did the Orangemen score in game 1? ### Answer: SELECT MAX(orangemen_points) FROM table_23346983_1 WHERE game = 1
Who did the Orangemen play against when their record was 5-1?
CREATE TABLE table_23346983_1 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_23346983_1 WHERE record = "5-1"
### Context: CREATE TABLE table_23346983_1 (opponent VARCHAR, record VARCHAR) ### Question: Who did the Orangemen play against when their record was 5-1? ### Answer: SELECT opponent FROM table_23346983_1 WHERE record = "5-1"
Name the location for 2007
CREATE TABLE table_23379776_6 (location VARCHAR, year VARCHAR)
SELECT location FROM table_23379776_6 WHERE year = 2007
### Context: CREATE TABLE table_23379776_6 (location VARCHAR, year VARCHAR) ### Question: Name the location for 2007 ### Answer: SELECT location FROM table_23379776_6 WHERE year = 2007
Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes
CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, mohsen_rezaee VARCHAR)
SELECT MIN(mir_hossein_mousavi) FROM table_23390604_1 WHERE mohsen_rezaee = 44809
### Context: CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, mohsen_rezaee VARCHAR) ### Question: Display the lowest score for candidate Mir-Hossein Mousavi when candidate Mohsen Rezaee scored 44809 votes ### Answer: SELECT MIN(mir_hossein_mousavi) FROM table_23390604_1 WHERE mohsen_rezaee = 44809
What is the highest score for candidate Mohsen Rezaee when candidate mir-hossein mousavi scored 837858 votes?
CREATE TABLE table_23390604_1 (mohsen_rezaee INTEGER, mir_hossein_mousavi VARCHAR)
SELECT MAX(mohsen_rezaee) FROM table_23390604_1 WHERE mir_hossein_mousavi = 837858
### Context: CREATE TABLE table_23390604_1 (mohsen_rezaee INTEGER, mir_hossein_mousavi VARCHAR) ### Question: What is the highest score for candidate Mohsen Rezaee when candidate mir-hossein mousavi scored 837858 votes? ### Answer: SELECT MAX(mohsen_rezaee) FROM table_23390604_1 WHERE mir_hossein_mousavi = 837858
List all the total scores for the election which had 3072 invalid votes
CREATE TABLE table_23390604_1 (total_votes VARCHAR, spoiled_ballots VARCHAR)
SELECT total_votes FROM table_23390604_1 WHERE spoiled_ballots = 3072
### Context: CREATE TABLE table_23390604_1 (total_votes VARCHAR, spoiled_ballots VARCHAR) ### Question: List all the total scores for the election which had 3072 invalid votes ### Answer: SELECT total_votes FROM table_23390604_1 WHERE spoiled_ballots = 3072
What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west?
CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, province VARCHAR)
SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE province = "Azarbaijan, West"
### Context: CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, province VARCHAR) ### Question: What was the highest score of candidate mir-hossein mousavi in the location known as azarbaijan, west? ### Answer: SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE province = "Azarbaijan, West"
List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes.
CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR)
SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481
### Context: CREATE TABLE table_23390604_1 (mahmoud_ahmadinejad VARCHAR, mir_hossein_mousavi VARCHAR) ### Question: List all the results for mahmoud ahmadinejad when candidate mir-hossein mousavi obtained 218481 votes. ### Answer: SELECT mahmoud_ahmadinejad FROM table_23390604_1 WHERE mir_hossein_mousavi = 218481
What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683
CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, spoiled_ballots VARCHAR)
SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE spoiled_ballots = 5683
### Context: CREATE TABLE table_23390604_1 (mir_hossein_mousavi INTEGER, spoiled_ballots VARCHAR) ### Question: What was the highest number of votes for mir-hossein mousavi when the number of invalid votes is 5683 ### Answer: SELECT MAX(mir_hossein_mousavi) FROM table_23390604_1 WHERE spoiled_ballots = 5683
Name surface for 8 round
CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR)
SELECT surface FROM table_23385853_1 WHERE round = 8
### Context: CREATE TABLE table_23385853_1 (surface VARCHAR, round VARCHAR) ### Question: Name surface for 8 round ### Answer: SELECT surface FROM table_23385853_1 WHERE round = 8
Name the rally base for 5 round
CREATE TABLE table_23385853_1 (rally_base VARCHAR, round VARCHAR)
SELECT rally_base FROM table_23385853_1 WHERE round = 5
### Context: CREATE TABLE table_23385853_1 (rally_base VARCHAR, round VARCHAR) ### Question: Name the rally base for 5 round ### Answer: SELECT rally_base FROM table_23385853_1 WHERE round = 5
Name the rally base for rallye de france alsace
CREATE TABLE table_23385853_1 (rally_base VARCHAR, rally_name VARCHAR)
SELECT rally_base FROM table_23385853_1 WHERE rally_name = "Rallye de France Alsace"
### Context: CREATE TABLE table_23385853_1 (rally_base VARCHAR, rally_name VARCHAR) ### Question: Name the rally base for rallye de france alsace ### Answer: SELECT rally_base FROM table_23385853_1 WHERE rally_name = "Rallye de France Alsace"
What is the lowest position for a driver with 2 points?
CREATE TABLE table_23385853_19 (pos INTEGER, points VARCHAR)
SELECT MAX(pos) FROM table_23385853_19 WHERE points = 2
### Context: CREATE TABLE table_23385853_19 (pos INTEGER, points VARCHAR) ### Question: What is the lowest position for a driver with 2 points? ### Answer: SELECT MAX(pos) FROM table_23385853_19 WHERE points = 2
What driver(s) had over 65 stag wins?
CREATE TABLE table_23385853_19 (driver VARCHAR, stage_wins VARCHAR)
SELECT driver FROM table_23385853_19 WHERE stage_wins = 65
### Context: CREATE TABLE table_23385853_19 (driver VARCHAR, stage_wins VARCHAR) ### Question: What driver(s) had over 65 stag wins? ### Answer: SELECT driver FROM table_23385853_19 WHERE stage_wins = 65
What is the power stage wins total number if the wins is 10?
CREATE TABLE table_23385853_20 (power_stage_wins VARCHAR, wins VARCHAR)
SELECT COUNT(power_stage_wins) FROM table_23385853_20 WHERE wins = 10
### Context: CREATE TABLE table_23385853_20 (power_stage_wins VARCHAR, wins VARCHAR) ### Question: What is the power stage wins total number if the wins is 10? ### Answer: SELECT COUNT(power_stage_wins) FROM table_23385853_20 WHERE wins = 10
If finishes is 10, what is the POS minimum?
CREATE TABLE table_23385853_20 (pos INTEGER, finishes VARCHAR)
SELECT MIN(pos) FROM table_23385853_20 WHERE finishes = 10
### Context: CREATE TABLE table_23385853_20 (pos INTEGER, finishes VARCHAR) ### Question: If finishes is 10, what is the POS minimum? ### Answer: SELECT MIN(pos) FROM table_23385853_20 WHERE finishes = 10
What is the finishes maximum number?
CREATE TABLE table_23385853_20 (finishes INTEGER)
SELECT MAX(finishes) FROM table_23385853_20
### Context: CREATE TABLE table_23385853_20 (finishes INTEGER) ### Question: What is the finishes maximum number? ### Answer: SELECT MAX(finishes) FROM table_23385853_20
When relay is the station type and 5kw is the power kw what is the branding?
CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR)
SELECT branding FROM table_23394920_1 WHERE power_kw = "5kW" AND station_type = "Relay"
### Context: CREATE TABLE table_23394920_1 (branding VARCHAR, power_kw VARCHAR, station_type VARCHAR) ### Question: When relay is the station type and 5kw is the power kw what is the branding? ### Answer: SELECT branding FROM table_23394920_1 WHERE power_kw = "5kW" AND station_type = "Relay"
When dxrt-tv is the callsign what is the power kw?
CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR)
SELECT power_kw FROM table_23394920_1 WHERE callsign = "DXRT-TV"
### Context: CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR) ### Question: When dxrt-tv is the callsign what is the power kw? ### Answer: SELECT power_kw FROM table_23394920_1 WHERE callsign = "DXRT-TV"
When dxzb-tv is the call sign what is the power kw?
CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR)
SELECT power_kw FROM table_23394920_1 WHERE callsign = "DXZB-TV"
### Context: CREATE TABLE table_23394920_1 (power_kw VARCHAR, callsign VARCHAR) ### Question: When dxzb-tv is the call sign what is the power kw? ### Answer: SELECT power_kw FROM table_23394920_1 WHERE callsign = "DXZB-TV"
When dxcc-tv is the call sign how many station types are there?
CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)
SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DXCC-TV"
### Context: CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR) ### Question: When dxcc-tv is the call sign how many station types are there? ### Answer: SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DXCC-TV"
When dwhr-tv is the call sign how many station types are there?
CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR)
SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DWHR-TV"
### Context: CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR) ### Question: When dwhr-tv is the call sign how many station types are there? ### Answer: SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DWHR-TV"
What date did Episode 22 originally air?
CREATE TABLE table_23392257_4 (original_airdate VARCHAR, _number VARCHAR)
SELECT COUNT(original_airdate) FROM table_23392257_4 WHERE _number = 22
### Context: CREATE TABLE table_23392257_4 (original_airdate VARCHAR, _number VARCHAR) ### Question: What date did Episode 22 originally air? ### Answer: SELECT COUNT(original_airdate) FROM table_23392257_4 WHERE _number = 22
What episode premier received 0.680 million viewers?
CREATE TABLE table_23392257_4 (original_airdate VARCHAR, viewers__millions_ VARCHAR)
SELECT original_airdate FROM table_23392257_4 WHERE viewers__millions_ = "0.680"
### Context: CREATE TABLE table_23392257_4 (original_airdate VARCHAR, viewers__millions_ VARCHAR) ### Question: What episode premier received 0.680 million viewers? ### Answer: SELECT original_airdate FROM table_23392257_4 WHERE viewers__millions_ = "0.680"
What timeslot received 0.673 viewers?
CREATE TABLE table_23392257_4 (timeslot VARCHAR, viewers__millions_ VARCHAR)
SELECT timeslot FROM table_23392257_4 WHERE viewers__millions_ = "0.673"
### Context: CREATE TABLE table_23392257_4 (timeslot VARCHAR, viewers__millions_ VARCHAR) ### Question: What timeslot received 0.673 viewers? ### Answer: SELECT timeslot FROM table_23392257_4 WHERE viewers__millions_ = "0.673"
What is the original air date of the episode that was directed by David Paymer?
CREATE TABLE table_23399481_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_23399481_2 WHERE directed_by = "David Paymer"
### Context: CREATE TABLE table_23399481_2 (original_air_date VARCHAR, directed_by VARCHAR) ### Question: What is the original air date of the episode that was directed by David Paymer? ### Answer: SELECT original_air_date FROM table_23399481_2 WHERE directed_by = "David Paymer"
If the amount of U.S. viewers is 2.14 million, who was the episode directed by?
CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.14"
### Context: CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: If the amount of U.S. viewers is 2.14 million, who was the episode directed by? ### Answer: SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.14"
If the amount of U.S. viewers is 2.05 milliom, who was the episode directed by?
CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.05"
### Context: CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: If the amount of U.S. viewers is 2.05 milliom, who was the episode directed by? ### Answer: SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.05"
What is the director name is the U.S. viewers is 2.22 million?
CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.22"
### Context: CREATE TABLE table_23399481_2 (directed_by VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: What is the director name is the U.S. viewers is 2.22 million? ### Answer: SELECT directed_by FROM table_23399481_2 WHERE us_viewers__in_millions_ = "2.22"
How many million viewers watched the episode that had a 2.6/7 rating/share (18-49)
CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, rating VARCHAR)
SELECT viewers__millions_ FROM table_23397386_2 WHERE rating / SHARE(18 AS –49) = 2.6 / 7
### Context: CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, rating VARCHAR) ### Question: How many million viewers watched the episode that had a 2.6/7 rating/share (18-49) ### Answer: SELECT viewers__millions_ FROM table_23397386_2 WHERE rating / SHARE(18 AS –49) = 2.6 / 7
How many million viewers watched the episode that aired on March 28, 2010?
CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, airdate VARCHAR)
SELECT viewers__millions_ FROM table_23397386_2 WHERE airdate = "March 28, 2010"
### Context: CREATE TABLE table_23397386_2 (viewers__millions_ VARCHAR, airdate VARCHAR) ### Question: How many million viewers watched the episode that aired on March 28, 2010? ### Answer: SELECT viewers__millions_ FROM table_23397386_2 WHERE airdate = "March 28, 2010"
How many rankings (timeslot) were there for the episode that aired on May 2, 2010?
CREATE TABLE table_23397386_2 (rank__timeslot_ VARCHAR, airdate VARCHAR)
SELECT COUNT(rank__timeslot_) FROM table_23397386_2 WHERE airdate = "May 2, 2010"
### Context: CREATE TABLE table_23397386_2 (rank__timeslot_ VARCHAR, airdate VARCHAR) ### Question: How many rankings (timeslot) were there for the episode that aired on May 2, 2010? ### Answer: SELECT COUNT(rank__timeslot_) FROM table_23397386_2 WHERE airdate = "May 2, 2010"
What episode had 1.42 million viewers?
CREATE TABLE table_23399481_3 (series__number VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT series__number FROM table_23399481_3 WHERE us_viewers__in_millions_ = "1.42"
### Context: CREATE TABLE table_23399481_3 (series__number VARCHAR, us_viewers__in_millions_ VARCHAR) ### Question: What episode had 1.42 million viewers? ### Answer: SELECT series__number FROM table_23399481_3 WHERE us_viewers__in_millions_ = "1.42"
What is the original air date for episode 4?
CREATE TABLE table_23399481_3 (original_air_date VARCHAR, season__number VARCHAR)
SELECT original_air_date FROM table_23399481_3 WHERE season__number = 4
### Context: CREATE TABLE table_23399481_3 (original_air_date VARCHAR, season__number VARCHAR) ### Question: What is the original air date for episode 4? ### Answer: SELECT original_air_date FROM table_23399481_3 WHERE season__number = 4
Which team uses lola t92/00/ buick for their chassis/engine?
CREATE TABLE table_23391714_1 (team VARCHAR, chassis_engine VARCHAR)
SELECT team FROM table_23391714_1 WHERE chassis_engine = "Lola T92/00/ Buick"
### Context: CREATE TABLE table_23391714_1 (team VARCHAR, chassis_engine VARCHAR) ### Question: Which team uses lola t92/00/ buick for their chassis/engine? ### Answer: SELECT team FROM table_23391714_1 WHERE chassis_engine = "Lola T92/00/ Buick"
When the pos equals 18 what is the max amount of points?
CREATE TABLE table_23391714_1 (points INTEGER, pos VARCHAR)
SELECT MAX(points) FROM table_23391714_1 WHERE pos = 18
### Context: CREATE TABLE table_23391714_1 (points INTEGER, pos VARCHAR) ### Question: When the pos equals 18 what is the max amount of points? ### Answer: SELECT MAX(points) FROM table_23391714_1 WHERE pos = 18
How many drivers used lola t92/00/ buick for their chassis/engine?
CREATE TABLE table_23391714_1 (no VARCHAR, chassis_engine VARCHAR)
SELECT COUNT(no) FROM table_23391714_1 WHERE chassis_engine = "Lola T92/00/ Buick"
### Context: CREATE TABLE table_23391714_1 (no VARCHAR, chassis_engine VARCHAR) ### Question: How many drivers used lola t92/00/ buick for their chassis/engine? ### Answer: SELECT COUNT(no) FROM table_23391714_1 WHERE chassis_engine = "Lola T92/00/ Buick"
What's the series number of the episode with a season number 5, written by Bernie Ancheta?
CREATE TABLE table_23403578_3 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR)
SELECT MIN(no_in_series) FROM table_23403578_3 WHERE written_by = "Bernie Ancheta" AND no_in_season = 5
### Context: CREATE TABLE table_23403578_3 (no_in_series INTEGER, written_by VARCHAR, no_in_season VARCHAR) ### Question: What's the series number of the episode with a season number 5, written by Bernie Ancheta? ### Answer: SELECT MIN(no_in_series) FROM table_23403578_3 WHERE written_by = "Bernie Ancheta" AND no_in_se...
When did the episode with production code 213 air for the first time?
CREATE TABLE table_23403578_3 (original_air_date VARCHAR, prod_code VARCHAR)
SELECT original_air_date FROM table_23403578_3 WHERE prod_code = "213"
### Context: CREATE TABLE table_23403578_3 (original_air_date VARCHAR, prod_code VARCHAR) ### Question: When did the episode with production code 213 air for the first time? ### Answer: SELECT original_air_date FROM table_23403578_3 WHERE prod_code = "213"
Who directed the episode with production code 208?
CREATE TABLE table_23403578_3 (directed_by VARCHAR, prod_code VARCHAR)
SELECT directed_by FROM table_23403578_3 WHERE prod_code = "208"
### Context: CREATE TABLE table_23403578_3 (directed_by VARCHAR, prod_code VARCHAR) ### Question: Who directed the episode with production code 208? ### Answer: SELECT directed_by FROM table_23403578_3 WHERE prod_code = "208"
How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5?
CREATE TABLE table_23406517_2 (bearing___degrees VARCHAR)
SELECT COUNT(24 AS _mountains) FROM table_23406517_2 WHERE bearing___degrees = "67.6 - 82.5 82.6 - 97.5 97.6 - 112.5"
### Context: CREATE TABLE table_23406517_2 (bearing___degrees VARCHAR) ### Question: How many values for 24 mountains when the bearing or degrees is 67.6 - 82.5 82.6 - 97.5 97.6 - 112.5? ### Answer: SELECT COUNT(24 AS _mountains) FROM table_23406517_2 WHERE bearing___degrees = "67.6 - 82.5 82.6 - 97.5 97.6 - 112.5"
What is every trigram when direction is Northwest?
CREATE TABLE table_23406517_2 (trigram VARCHAR, direction VARCHAR)
SELECT trigram FROM table_23406517_2 WHERE direction = "Northwest"
### Context: CREATE TABLE table_23406517_2 (trigram VARCHAR, direction VARCHAR) ### Question: What is every trigram when direction is Northwest? ### Answer: SELECT trigram FROM table_23406517_2 WHERE direction = "Northwest"
What are all values for 24 mountains when direction is Northeast?
CREATE TABLE table_23406517_2 (direction VARCHAR)
SELECT 24 AS _mountains FROM table_23406517_2 WHERE direction = "Northeast"
### Context: CREATE TABLE table_23406517_2 (direction VARCHAR) ### Question: What are all values for 24 mountains when direction is Northeast? ### Answer: SELECT 24 AS _mountains FROM table_23406517_2 WHERE direction = "Northeast"
How many career titles does roy emerson have?
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR)
SELECT total_career_titles FROM table_23408094_14 WHERE player = "Roy Emerson"
### Context: CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, player VARCHAR) ### Question: How many career titles does roy emerson have? ### Answer: SELECT total_career_titles FROM table_23408094_14 WHERE player = "Roy Emerson"
What were the total career titles of the player who led for 5 years?
CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, span_of_years_led VARCHAR)
SELECT COUNT(total_career_titles) FROM table_23408094_14 WHERE span_of_years_led = 5
### Context: CREATE TABLE table_23408094_14 (total_career_titles VARCHAR, span_of_years_led VARCHAR) ### Question: What were the total career titles of the player who led for 5 years? ### Answer: SELECT COUNT(total_career_titles) FROM table_23408094_14 WHERE span_of_years_led = 5
Of the players whose lead began at the australian championships, what was the shortest span of years led?
CREATE TABLE table_23408094_14 (span_of_years_led INTEGER, tournament_at_which_lead_began VARCHAR)
SELECT MIN(span_of_years_led) FROM table_23408094_14 WHERE tournament_at_which_lead_began = "Australian Championships"
### Context: CREATE TABLE table_23408094_14 (span_of_years_led INTEGER, tournament_at_which_lead_began VARCHAR) ### Question: Of the players whose lead began at the australian championships, what was the shortest span of years led? ### Answer: SELECT MIN(span_of_years_led) FROM table_23408094_14 WHERE tournament_at_whi...
At which tournament did william renshaw begin his lead when he had won 7 titles?
CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR, titles_won_at_point_of_lead VARCHAR)
SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player = "William Renshaw" AND titles_won_at_point_of_lead = 7
### Context: CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR, titles_won_at_point_of_lead VARCHAR) ### Question: At which tournament did william renshaw begin his lead when he had won 7 titles? ### Answer: SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player =...
At what tournament did pete sampras begin his lead?
CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR)
SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player = "Pete Sampras"
### Context: CREATE TABLE table_23408094_14 (tournament_at_which_lead_began VARCHAR, player VARCHAR) ### Question: At what tournament did pete sampras begin his lead? ### Answer: SELECT tournament_at_which_lead_began FROM table_23408094_14 WHERE player = "Pete Sampras"
Who are all directors when Sherwood Schwartz is the writer?
CREATE TABLE table_2342078_2 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_2342078_2 WHERE written_by = "Sherwood Schwartz"
### Context: CREATE TABLE table_2342078_2 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who are all directors when Sherwood Schwartz is the writer? ### Answer: SELECT directed_by FROM table_2342078_2 WHERE written_by = "Sherwood Schwartz"
What is the highest episode# with the writer Paul West?
CREATE TABLE table_2342078_2 (episode__number INTEGER, written_by VARCHAR)
SELECT MAX(episode__number) FROM table_2342078_2 WHERE written_by = "Paul West"
### Context: CREATE TABLE table_2342078_2 (episode__number INTEGER, written_by VARCHAR) ### Question: What is the highest episode# with the writer Paul West? ### Answer: SELECT MAX(episode__number) FROM table_2342078_2 WHERE written_by = "Paul West"
What is every production code for episode # 13?
CREATE TABLE table_2342078_2 (production_code__order_they_were_made___number VARCHAR, episode__number VARCHAR)
SELECT production_code__order_they_were_made___number FROM table_2342078_2 WHERE episode__number = 13
### Context: CREATE TABLE table_2342078_2 (production_code__order_they_were_made___number VARCHAR, episode__number VARCHAR) ### Question: What is every production code for episode # 13? ### Answer: SELECT production_code__order_they_were_made___number FROM table_2342078_2 WHERE episode__number = 13
What is the highest episode number written by Harry Winkler?
CREATE TABLE table_2342078_4 (episode__number INTEGER, written_by VARCHAR)
SELECT MAX(episode__number) FROM table_2342078_4 WHERE written_by = "Harry Winkler"
### Context: CREATE TABLE table_2342078_4 (episode__number INTEGER, written_by VARCHAR) ### Question: What is the highest episode number written by Harry Winkler? ### Answer: SELECT MAX(episode__number) FROM table_2342078_4 WHERE written_by = "Harry Winkler"
List all directors when Brad Radnitz was the writer?
CREATE TABLE table_2342078_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_2342078_4 WHERE written_by = "Brad Radnitz"
### Context: CREATE TABLE table_2342078_4 (directed_by VARCHAR, written_by VARCHAR) ### Question: List all directors when Brad Radnitz was the writer? ### Answer: SELECT directed_by FROM table_2342078_4 WHERE written_by = "Brad Radnitz"
Name the airdate for the episode written by howard ostroff
CREATE TABLE table_2342078_6 (original_airdate VARCHAR, written_by VARCHAR)
SELECT original_airdate FROM table_2342078_6 WHERE written_by = "Howard Ostroff"
### Context: CREATE TABLE table_2342078_6 (original_airdate VARCHAR, written_by VARCHAR) ### Question: Name the airdate for the episode written by howard ostroff ### Answer: SELECT original_airdate FROM table_2342078_6 WHERE written_by = "Howard Ostroff"
Name the production code # for episode 109
CREATE TABLE table_2342078_6 (production_code__number VARCHAR, episode__number VARCHAR)
SELECT COUNT(production_code__number) FROM table_2342078_6 WHERE episode__number = 109
### Context: CREATE TABLE table_2342078_6 (production_code__number VARCHAR, episode__number VARCHAR) ### Question: Name the production code # for episode 109 ### Answer: SELECT COUNT(production_code__number) FROM table_2342078_6 WHERE episode__number = 109
Name who drected the episode written by george tibbles
CREATE TABLE table_2342078_6 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_2342078_6 WHERE written_by = "George Tibbles"
### Context: CREATE TABLE table_2342078_6 (directed_by VARCHAR, written_by VARCHAR) ### Question: Name who drected the episode written by george tibbles ### Answer: SELECT directed_by FROM table_2342078_6 WHERE written_by = "George Tibbles"
What's the title of the episode written by Harry Winkler?
CREATE TABLE table_2342078_5 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_2342078_5 WHERE written_by = "Harry Winkler"
### Context: CREATE TABLE table_2342078_5 (title VARCHAR, written_by VARCHAR) ### Question: What's the title of the episode written by Harry Winkler? ### Answer: SELECT title FROM table_2342078_5 WHERE written_by = "Harry Winkler"
During the 1st Place (Won the Series), who was the act?
CREATE TABLE table_23429629_4 (act VARCHAR, place_came VARCHAR)
SELECT act FROM table_23429629_4 WHERE place_came = "1st Place (Won the Series)"
### Context: CREATE TABLE table_23429629_4 (act VARCHAR, place_came VARCHAR) ### Question: During the 1st Place (Won the Series), who was the act? ### Answer: SELECT act FROM table_23429629_4 WHERE place_came = "1st Place (Won the Series)"
During the act, Playing on Glasses, what was the semi-final?
CREATE TABLE table_23429629_4 (semi_final VARCHAR, act VARCHAR)
SELECT semi_final FROM table_23429629_4 WHERE act = "Playing on Glasses"
### Context: CREATE TABLE table_23429629_4 (semi_final VARCHAR, act VARCHAR) ### Question: During the act, Playing on Glasses, what was the semi-final? ### Answer: SELECT semi_final FROM table_23429629_4 WHERE act = "Playing on Glasses"
What was the final place came for the performance of Erlend Bratland?
CREATE TABLE table_23429629_4 (place_came VARCHAR, artist VARCHAR)
SELECT place_came FROM table_23429629_4 WHERE artist = "Erlend Bratland"
### Context: CREATE TABLE table_23429629_4 (place_came VARCHAR, artist VARCHAR) ### Question: What was the final place came for the performance of Erlend Bratland? ### Answer: SELECT place_came FROM table_23429629_4 WHERE artist = "Erlend Bratland"
How many deaths per year have 66.3 as the life expectancy females?
CREATE TABLE table_23423_2 (deaths_per_year VARCHAR, life_expectancy_females VARCHAR)
SELECT deaths_per_year FROM table_23423_2 WHERE life_expectancy_females = "66.3"
### Context: CREATE TABLE table_23423_2 (deaths_per_year VARCHAR, life_expectancy_females VARCHAR) ### Question: How many deaths per year have 66.3 as the life expectancy females? ### Answer: SELECT deaths_per_year FROM table_23423_2 WHERE life_expectancy_females = "66.3"
Which leagues entered in rounds where there were 16 winners from the previous round?
CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, winners_from_previous_round VARCHAR)
SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE winners_from_previous_round = "16"
### Context: CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, winners_from_previous_round VARCHAR) ### Question: Which leagues entered in rounds where there were 16 winners from the previous round? ### Answer: SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE winners_from_previous_...
Which rounds had 32 clubs involved?
CREATE TABLE table_23449363_1 (round VARCHAR, clubs_involved VARCHAR)
SELECT round FROM table_23449363_1 WHERE clubs_involved = 32
### Context: CREATE TABLE table_23449363_1 (round VARCHAR, clubs_involved VARCHAR) ### Question: Which rounds had 32 clubs involved? ### Answer: SELECT round FROM table_23449363_1 WHERE clubs_involved = 32
Which round had 24 new entries?
CREATE TABLE table_23449363_1 (round VARCHAR, new_entries_this_round VARCHAR)
SELECT round FROM table_23449363_1 WHERE new_entries_this_round = "24"
### Context: CREATE TABLE table_23449363_1 (round VARCHAR, new_entries_this_round VARCHAR) ### Question: Which round had 24 new entries? ### Answer: SELECT round FROM table_23449363_1 WHERE new_entries_this_round = "24"
Which leagues entered an extra preliminary round?
CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, round VARCHAR)
SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE round = "Extra Preliminary round"
### Context: CREATE TABLE table_23449363_1 (leagues_entering_at_this_round VARCHAR, round VARCHAR) ### Question: Which leagues entered an extra preliminary round? ### Answer: SELECT leagues_entering_at_this_round FROM table_23449363_1 WHERE round = "Extra Preliminary round"
Name the location of buffalo sabres
CREATE TABLE table_23453931_5 (location VARCHAR, opponent VARCHAR)
SELECT location FROM table_23453931_5 WHERE opponent = "Buffalo Sabres"
### Context: CREATE TABLE table_23453931_5 (location VARCHAR, opponent VARCHAR) ### Question: Name the location of buffalo sabres ### Answer: SELECT location FROM table_23453931_5 WHERE opponent = "Buffalo Sabres"
Name the game for 13–17–9
CREATE TABLE table_23453931_5 (game VARCHAR, record VARCHAR)
SELECT game FROM table_23453931_5 WHERE record = "13–17–9"
### Context: CREATE TABLE table_23453931_5 (game VARCHAR, record VARCHAR) ### Question: Name the game for 13–17–9 ### Answer: SELECT game FROM table_23453931_5 WHERE record = "13–17–9"
Name the score for december 19
CREATE TABLE table_23453931_5 (score VARCHAR, date VARCHAR)
SELECT score FROM table_23453931_5 WHERE date = "December 19"
### Context: CREATE TABLE table_23453931_5 (score VARCHAR, date VARCHAR) ### Question: Name the score for december 19 ### Answer: SELECT score FROM table_23453931_5 WHERE date = "December 19"
Name the date for new york islanders
CREATE TABLE table_23453931_5 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_23453931_5 WHERE opponent = "New York Islanders"
### Context: CREATE TABLE table_23453931_5 (date VARCHAR, opponent VARCHAR) ### Question: Name the date for new york islanders ### Answer: SELECT date FROM table_23453931_5 WHERE opponent = "New York Islanders"
Name the opponents for december 3
CREATE TABLE table_23453931_5 (opponent VARCHAR, date VARCHAR)
SELECT COUNT(opponent) FROM table_23453931_5 WHERE date = "December 3"
### Context: CREATE TABLE table_23453931_5 (opponent VARCHAR, date VARCHAR) ### Question: Name the opponents for december 3 ### Answer: SELECT COUNT(opponent) FROM table_23453931_5 WHERE date = "December 3"
How many games did they play the carolina hurricanes?
CREATE TABLE table_23453931_8 (game VARCHAR, opponent VARCHAR)
SELECT COUNT(game) FROM table_23453931_8 WHERE opponent = "Carolina Hurricanes"
### Context: CREATE TABLE table_23453931_8 (game VARCHAR, opponent VARCHAR) ### Question: How many games did they play the carolina hurricanes? ### Answer: SELECT COUNT(game) FROM table_23453931_8 WHERE opponent = "Carolina Hurricanes"