question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is every part number with model number core i5-670?
CREATE TABLE table_23028629_2 (part_number_s_ VARCHAR, model_number VARCHAR)
SELECT part_number_s_ FROM table_23028629_2 WHERE model_number = "Core i5-670"
### Context: CREATE TABLE table_23028629_2 (part_number_s_ VARCHAR, model_number VARCHAR) ### Question: What is every part number with model number core i5-670? ### Answer: SELECT part_number_s_ FROM table_23028629_2 WHERE model_number = "Core i5-670"
What is the record for Big Ten Team #4 Purdue?
CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR)
SELECT winner FROM table_23058971_8 WHERE big_ten_team = "#4 Purdue"
### Context: CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR) ### Question: What is the record for Big Ten Team #4 Purdue? ### Answer: SELECT winner FROM table_23058971_8 WHERE big_ten_team = "#4 Purdue"
Name the avg start for avg finish being 24.2
CREATE TABLE table_2308381_1 (avg_start VARCHAR, avg_finish VARCHAR)
SELECT avg_start FROM table_2308381_1 WHERE avg_finish = "24.2"
### Context: CREATE TABLE table_2308381_1 (avg_start VARCHAR, avg_finish VARCHAR) ### Question: Name the avg start for avg finish being 24.2 ### Answer: SELECT avg_start FROM table_2308381_1 WHERE avg_finish = "24.2"
Name the year for avg start being 22.4
CREATE TABLE table_2308381_1 (year VARCHAR, avg_start VARCHAR)
SELECT year FROM table_2308381_1 WHERE avg_start = "22.4"
### Context: CREATE TABLE table_2308381_1 (year VARCHAR, avg_start VARCHAR) ### Question: Name the year for avg start being 22.4 ### Answer: SELECT year FROM table_2308381_1 WHERE avg_start = "22.4"
How many KEI catagories are listed when the economic incentive regime is 2.56?
CREATE TABLE table_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR)
SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = "2.56"
### Context: CREATE TABLE table_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR) ### Question: How many KEI catagories are listed when the economic incentive regime is 2.56? ### Answer: SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = "2.56"
What is the innovation when the economic incentive grime is 7.14?
CREATE TABLE table_23050383_1 (innovation VARCHAR, economic_incentive_regime VARCHAR)
SELECT innovation FROM table_23050383_1 WHERE economic_incentive_regime = "7.14"
### Context: CREATE TABLE table_23050383_1 (innovation VARCHAR, economic_incentive_regime VARCHAR) ### Question: What is the innovation when the economic incentive grime is 7.14? ### Answer: SELECT innovation FROM table_23050383_1 WHERE economic_incentive_regime = "7.14"
What is the education in Nepal?
CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR)
SELECT education FROM table_23050383_1 WHERE country = "Nepal"
### Context: CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR) ### Question: What is the education in Nepal? ### Answer: SELECT education FROM table_23050383_1 WHERE country = "Nepal"
What is the 2008 rank of Djibouti?
CREATE TABLE table_23050383_1 (country VARCHAR)
SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = "Djibouti"
### Context: CREATE TABLE table_23050383_1 (country VARCHAR) ### Question: What is the 2008 rank of Djibouti? ### Answer: SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = "Djibouti"
What is the ICT when education is 1.73 and KI is ag 1.99?
CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR)
SELECT ict FROM table_23050383_1 WHERE education = "1.73" AND ki = "1.99"
### Context: CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR) ### Question: What is the ICT when education is 1.73 and KI is ag 1.99? ### Answer: SELECT ict FROM table_23050383_1 WHERE education = "1.73" AND ki = "1.99"
What is the education when the economic incentive regime is 1.58?
CREATE TABLE table_23050383_1 (education VARCHAR, economic_incentive_regime VARCHAR)
SELECT education FROM table_23050383_1 WHERE economic_incentive_regime = "1.58"
### Context: CREATE TABLE table_23050383_1 (education VARCHAR, economic_incentive_regime VARCHAR) ### Question: What is the education when the economic incentive regime is 1.58? ### Answer: SELECT education FROM table_23050383_1 WHERE economic_incentive_regime = "1.58"
What was the air date of the episod that had 456.58 thousand viewers?
CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR)
SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58"
### Context: CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR) ### Question: What was the air date of the episod that had 456.58 thousand viewers? ### Answer: SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58"
What season had a winning profit of $15,000?
CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR)
SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000"
### Context: CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR) ### Question: What season had a winning profit of $15,000? ### Answer: SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000"
How many series premieres did the season "All-stars" have?
CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)
SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = "All-Stars"
### Context: CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR) ### Question: How many series premieres did the season "All-stars" have? ### Answer: SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = "All-Stars"
Name the erin and jake for week 4
CREATE TABLE table_2311410_5 (erin_and_jake VARCHAR, week VARCHAR)
SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4
### Context: CREATE TABLE table_2311410_5 (erin_and_jake VARCHAR, week VARCHAR) ### Question: Name the erin and jake for week 4 ### Answer: SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4
when the number of spectator are 5.28 millions, which is the smallest number of the episode in series?
CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR)
SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = "5.28"
### Context: CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR) ### Question: when the number of spectator are 5.28 millions, which is the smallest number of the episode in series? ### Answer: SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = "5.28"
which is the biggest number of episode in the season, where the number of the episode in series is 20?
CREATE TABLE table_23117208_3 (no_in_season INTEGER, no_in_series VARCHAR)
SELECT MAX(no_in_season) FROM table_23117208_3 WHERE no_in_series = 20
### Context: CREATE TABLE table_23117208_3 (no_in_season INTEGER, no_in_series VARCHAR) ### Question: which is the biggest number of episode in the season, where the number of the episode in series is 20? ### Answer: SELECT MAX(no_in_season) FROM table_23117208_3 WHERE no_in_series = 20
what is the name of the episode when the number of spectators was 5.60 millions?
CREATE TABLE table_23117208_3 (title VARCHAR, viewers__millions_ VARCHAR)
SELECT title FROM table_23117208_3 WHERE viewers__millions_ = "5.60"
### Context: CREATE TABLE table_23117208_3 (title VARCHAR, viewers__millions_ VARCHAR) ### Question: what is the name of the episode when the number of spectators was 5.60 millions? ### Answer: SELECT title FROM table_23117208_3 WHERE viewers__millions_ = "5.60"
how many millions of spectator did has the episode whose prod.code was rp#213?
CREATE TABLE table_23117208_3 (viewers__millions_ VARCHAR, prod_code VARCHAR)
SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = "RP#213"
### Context: CREATE TABLE table_23117208_3 (viewers__millions_ VARCHAR, prod_code VARCHAR) ### Question: how many millions of spectator did has the episode whose prod.code was rp#213? ### Answer: SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = "RP#213"
which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?
CREATE TABLE table_23117208_3 (no_in_season INTEGER, directed_by VARCHAR)
SELECT MAX(no_in_season) FROM table_23117208_3 WHERE directed_by = "Constantine Makris"
### Context: CREATE TABLE table_23117208_3 (no_in_season INTEGER, directed_by VARCHAR) ### Question: which is the biggest number of episode in the season, when the director of the episode was Constantine Makris? ### Answer: SELECT MAX(no_in_season) FROM table_23117208_3 WHERE directed_by = "Constantine Makris"
What is the name of the episode that was written by Michael Rauch?
CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_23117208_5 WHERE written_by = "Michael Rauch"
### Context: CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR) ### Question: What is the name of the episode that was written by Michael Rauch? ### Answer: SELECT title FROM table_23117208_5 WHERE written_by = "Michael Rauch"
For the episode directed by Matthew Penn, what is the total number in the series?
CREATE TABLE table_23117208_5 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT no_in_series FROM table_23117208_5 WHERE directed_by = "Matthew Penn"
### Context: CREATE TABLE table_23117208_5 (no_in_series VARCHAR, directed_by VARCHAR) ### Question: For the episode directed by Matthew Penn, what is the total number in the series? ### Answer: SELECT no_in_series FROM table_23117208_5 WHERE directed_by = "Matthew Penn"
Name the production code for 4.92 million viewers
CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR)
SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92"
### Context: CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR) ### Question: Name the production code for 4.92 million viewers ### Answer: SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92"
Name the least number in season for jessica ball
CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR)
SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = "Jessica Ball"
### Context: CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR) ### Question: Name the least number in season for jessica ball ### Answer: SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = "Jessica Ball"
How many flaps did he have when he had 109 points?
CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR)
SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109
### Context: CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR) ### Question: How many flaps did he have when he had 109 points? ### Answer: SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109
How many wins did he have with carlin motorsport?
CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)
SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport"
### Context: CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR) ### Question: How many wins did he have with carlin motorsport? ### Answer: SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport"
What was the most races he had in a season?
CREATE TABLE table_23128286_1 (races INTEGER)
SELECT MAX(races) FROM table_23128286_1
### Context: CREATE TABLE table_23128286_1 (races INTEGER) ### Question: What was the most races he had in a season? ### Answer: SELECT MAX(races) FROM table_23128286_1
What are Ken Rosewall's sets w-l?
CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR)
SELECT sets_w_l FROM table_23133482_1 WHERE player = "Ken Rosewall"
### Context: CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR) ### Question: What are Ken Rosewall's sets w-l? ### Answer: SELECT sets_w_l FROM table_23133482_1 WHERE player = "Ken Rosewall"
What are Arthur Ashe's games w-l?
CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR)
SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe"
### Context: CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR) ### Question: What are Arthur Ashe's games w-l? ### Answer: SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe"
Name the games w-1 for cliff richey
CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR)
SELECT games_w_l FROM table_23145653_1 WHERE player = "Cliff Richey"
### Context: CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR) ### Question: Name the games w-1 for cliff richey ### Answer: SELECT games_w_l FROM table_23145653_1 WHERE player = "Cliff Richey"
What stage number had the general classification Rory Sutherland?
CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR)
SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = "Rory Sutherland"
### Context: CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR) ### Question: What stage number had the general classification Rory Sutherland? ### Answer: SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = "Rory Sutherland"
Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?
CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = "Kenneth Hanson" AND winner = "Lucas Sebastian Haedo"
### Context: CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR) ### Question: Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner? ### Answer: SELECT youth_classification FROM table_...
Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification?
CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
SELECT winner FROM table_23157997_13 WHERE mountains_classification = "Tom Zirbel" AND points_classification = "Thomas Soladay"
### Context: CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) ### Question: Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification? ### Answer: SELECT winner FROM table_23157997_13 WHERE mountains_classific...
Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?
CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR)
SELECT mountains_classification FROM table_23157997_13 WHERE youth_classification = "Nick Frey" AND points_classification = "Tom Zirbel"
### Context: CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR) ### Question: Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification? ### Answer: SELECT mountains_classificati...
How many Mountains Classifications were in the race with Mike Northey as Youth Classification?
CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR)
SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classification = "Mike Northey"
### Context: CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR) ### Question: How many Mountains Classifications were in the race with Mike Northey as Youth Classification? ### Answer: SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classification =...
How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi?
CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR)
SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = "Canal Nou Canal Nou Dos Canal Nou 24 TVVi"
### Context: CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR) ### Question: How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi? ### Answer: SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = "Canal Nou Ca...
If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?
CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Radio Nou Si Radio Radio Nou Música"
### Context: CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR) ### Question: If the radio stations is radio nou si radio radio nou música; what were the total number of television channels? ### Answer: SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Radi...
What is the total number of television channels when one of the radio stations is onda madrid?
CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid"
### Context: CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR) ### Question: What is the total number of television channels when one of the radio stations is onda madrid? ### Answer: SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid"
Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)?
CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR)
SELECT radio_stations FROM table_23143607_1 WHERE organization = "Ente Público Radio Televisión Madrid (EPRTVM)"
### Context: CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR) ### Question: Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)? ### Answer: SELECT radio_stations FROM table_23143607_1 WHERE organization = "Ente Público Radio Televisión Madrid (E...
What is the autonomous community with television channels tpa tpa2 rtpa internacional?
CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR)
SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacional"
### Context: CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR) ### Question: What is the autonomous community with television channels tpa tpa2 rtpa internacional? ### Answer: SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacio...
How many villains were in episode 3 (13)?
CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR)
SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = "3 (13)"
### Context: CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR) ### Question: How many villains were in episode 3 (13)? ### Answer: SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = "3 (13)"
What was the title of the episode where reg lacey (aka mr. b) played the villain?
CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)
SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)"
### Context: CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR) ### Question: What was the title of the episode where reg lacey (aka mr. b) played the villain? ### Answer: SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)"
Name the most three pointers for dewanna bonner
CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR)
SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = "DeWanna Bonner"
### Context: CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR) ### Question: Name the most three pointers for dewanna bonner ### Answer: SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = "DeWanna Bonner"
Name the least field goals for chantel hilliard
CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR)
SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = "Chantel Hilliard"
### Context: CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR) ### Question: Name the least field goals for chantel hilliard ### Answer: SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = "Chantel Hilliard"
Name the most minutes for morgan jennings
CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR)
SELECT MAX(minutes) FROM table_23183195_5 WHERE player = "Morgan Jennings"
### Context: CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR) ### Question: Name the most minutes for morgan jennings ### Answer: SELECT MAX(minutes) FROM table_23183195_5 WHERE player = "Morgan Jennings"
Name the most free throws for 4 steals
CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR)
SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4
### Context: CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR) ### Question: Name the most free throws for 4 steals ### Answer: SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4
What is the road record for the team with an overall record of 22-11?
CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR)
SELECT road_record FROM table_23183195_2 WHERE overall_record = "22-11"
### Context: CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR) ### Question: What is the road record for the team with an overall record of 22-11? ### Answer: SELECT road_record FROM table_23183195_2 WHERE overall_record = "22-11"
What is the road record for Vanderbilt?
CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR)
SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = "Vanderbilt"
### Context: CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR) ### Question: What is the road record for Vanderbilt? ### Answer: SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = "Vanderbilt"
What team's overal record is 22-11?
CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR)
SELECT team FROM table_23183195_2 WHERE overall_record = "22-11"
### Context: CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR) ### Question: What team's overal record is 22-11? ### Answer: SELECT team FROM table_23183195_2 WHERE overall_record = "22-11"
What is the percentage for the team with a road record of 3-4 and a home record of 7-0?
CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR)
SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0"
### Context: CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR) ### Question: What is the percentage for the team with a road record of 3-4 and a home record of 7-0? ### Answer: SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0"
Name the number of three pointers for 67
CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR)
SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67
### Context: CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR) ### Question: Name the number of three pointers for 67 ### Answer: SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67
Name the field goals for alexis yackley
CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)
SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley"
### Context: CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR) ### Question: Name the field goals for alexis yackley ### Answer: SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley"
Name the number of assists for 321 minutes
CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR)
SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321
### Context: CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR) ### Question: Name the number of assists for 321 minutes ### Answer: SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321
Name the number of players for field goals being 25 and blocks is 6
CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR)
SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6
### Context: CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR) ### Question: Name the number of players for field goals being 25 and blocks is 6 ### Answer: SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6
Name the location attendance of 5-15
CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR)
SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15"
### Context: CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR) ### Question: Name the location attendance of 5-15 ### Answer: SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15"
Name the record for golden state
CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23186738_6 WHERE team = "Golden State"
### Context: CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR) ### Question: Name the record for golden state ### Answer: SELECT record FROM table_23186738_6 WHERE team = "Golden State"
Name the number of high points for record 5-17
CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR)
SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17"
### Context: CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR) ### Question: Name the number of high points for record 5-17 ### Answer: SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17"
Name the record for houston
CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
SELECT record FROM table_23186738_6 WHERE team = "Houston"
### Context: CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR) ### Question: Name the record for houston ### Answer: SELECT record FROM table_23186738_6 WHERE team = "Houston"
Name the cardinal points for 19-4 record
CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR)
SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = "19-4"
### Context: CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR) ### Question: Name the cardinal points for 19-4 record ### Answer: SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = "19-4"
Name the location for 2-1 record
CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR)
SELECT location FROM table_23192661_3 WHERE record = "2-1"
### Context: CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR) ### Question: Name the location for 2-1 record ### Answer: SELECT location FROM table_23192661_3 WHERE record = "2-1"
Name the total number of step 6 for 11 gs grade
CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR)
SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11
### Context: CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR) ### Question: Name the total number of step 6 for 11 gs grade ### Answer: SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11
such as are entire the rating of closing where championship is moscow
CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Moscow"
### Context: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR) ### Question: such as are entire the rating of closing where championship is moscow ### Answer: SELECT score_in_final FROM table_23197088_4 WHERE championship = "Moscow"
as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat
CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR)
SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_in_final = "Alexandra Fusai Nathalie Tauziat"
### Context: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR) ### Question: as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat ### Answer: SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_in_f...
what are every one of the rivals in conclusive where title is zürich
CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR)
SELECT opponents_in_final FROM table_23197088_4 WHERE championship = "Zürich"
### Context: CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR) ### Question: what are every one of the rivals in conclusive where title is zürich ### Answer: SELECT opponents_in_final FROM table_23197088_4 WHERE championship = "Zürich"
what are all the score in conclusive where title is rome
CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Rome"
### Context: CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR) ### Question: what are all the score in conclusive where title is rome ### Answer: SELECT score_in_final FROM table_23197088_4 WHERE championship = "Rome"
Name the most 10 3 bbl/d (2008) for present share being 1.7%
CREATE TABLE table_23195_5 (present_share VARCHAR)
SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = "1.7%"
### Context: CREATE TABLE table_23195_5 (present_share VARCHAR) ### Question: Name the most 10 3 bbl/d (2008) for present share being 1.7% ### Answer: SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = "1.7%"
Name the present share for australia
CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR)
SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia"
### Context: CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR) ### Question: Name the present share for australia ### Answer: SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia"
Name the location attendance for utah
CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah"
### Context: CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR) ### Question: Name the location attendance for utah ### Answer: SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah"
How many games were played against houston?
CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR)
SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston"
### Context: CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR) ### Question: How many games were played against houston? ### Answer: SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston"
What team was played on november 24?
CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR)
SELECT team FROM table_23211041_5 WHERE date = "November 24"
### Context: CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR) ### Question: What team was played on november 24? ### Answer: SELECT team FROM table_23211041_5 WHERE date = "November 24"
Who had the most points in game 4?
CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_23211041_5 WHERE game = 4
### Context: CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR) ### Question: Who had the most points in game 4? ### Answer: SELECT high_points FROM table_23211041_5 WHERE game = 4
Who had the highest points against new york?
CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR)
SELECT high_points FROM table_23211041_5 WHERE team = "New York"
### Context: CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR) ### Question: Who had the highest points against new york? ### Answer: SELECT high_points FROM table_23211041_5 WHERE team = "New York"
Name the syrian christians for thiruvananthapuram
CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram"
### Context: CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR) ### Question: Name the syrian christians for thiruvananthapuram ### Answer: SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram"
Name the ezhavas for muslims being 5.4
CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR)
SELECT ezhavas FROM table_23214055_2 WHERE muslims = "5.4"
### Context: CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR) ### Question: Name the ezhavas for muslims being 5.4 ### Answer: SELECT ezhavas FROM table_23214055_2 WHERE muslims = "5.4"
Name the ezhavas and syrian christians being 26.2
CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR)
SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2"
### Context: CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR) ### Question: Name the ezhavas and syrian christians being 26.2 ### Answer: SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2"
Name the syrian christians for kollam
CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam"
### Context: CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR) ### Question: Name the syrian christians for kollam ### Answer: SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam"
Name the district for others being 18.3
CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR)
SELECT district FROM table_23214055_2 WHERE others = "18.3"
### Context: CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR) ### Question: Name the district for others being 18.3 ### Answer: SELECT district FROM table_23214055_2 WHERE others = "18.3"
Name the district for nairs 8.2
CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR)
SELECT district FROM table_23214055_2 WHERE nairs = "8.2"
### Context: CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR) ### Question: Name the district for nairs 8.2 ### Answer: SELECT district FROM table_23214055_2 WHERE nairs = "8.2"
If the total points is 5, what is the 2005-2006 points total number?
CREATE TABLE table_23215145_2 (total_points VARCHAR)
SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5
### Context: CREATE TABLE table_23215145_2 (total_points VARCHAR) ### Question: If the total points is 5, what is the 2005-2006 points total number? ### Answer: SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5
What is the 2006-2007 points minimum is the team is Overmach Parma?
CREATE TABLE table_23215145_2 (team VARCHAR)
SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Overmach Parma"
### Context: CREATE TABLE table_23215145_2 (team VARCHAR) ### Question: What is the 2006-2007 points minimum is the team is Overmach Parma? ### Answer: SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Overmach Parma"
If the team is Worcester, what is the 2005-2006 points?
CREATE TABLE table_23215145_2 (team VARCHAR)
SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = "Worcester"
### Context: CREATE TABLE table_23215145_2 (team VARCHAR) ### Question: If the team is Worcester, what is the 2005-2006 points? ### Answer: SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = "Worcester"
What is the 2006-2007 points total number if the team is Saracens?
CREATE TABLE table_23215145_2 (team VARCHAR)
SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens"
### Context: CREATE TABLE table_23215145_2 (team VARCHAR) ### Question: What is the 2006-2007 points total number if the team is Saracens? ### Answer: SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens"
When spvgg vohenstrauß is the oberpfalz what is the season?
CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR)
SELECT season FROM table_23224961_1 WHERE oberpfalz = "SpVgg Vohenstrauß"
### Context: CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR) ### Question: When spvgg vohenstrauß is the oberpfalz what is the season? ### Answer: SELECT season FROM table_23224961_1 WHERE oberpfalz = "SpVgg Vohenstrauß"
When esv ingolstadt is the oberbayern b what is the niederbayern?
CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)
SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt"
### Context: CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR) ### Question: When esv ingolstadt is the oberbayern b what is the niederbayern? ### Answer: SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt"
When wacker burghausen is the oberbayern a what is the schwaben?
CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR)
SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = "Wacker Burghausen"
### Context: CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR) ### Question: When wacker burghausen is the oberbayern a what is the schwaben? ### Answer: SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = "Wacker Burghausen"
When fc oberau is the oberbayern a what is the oberpfalz?
CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR)
SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = "FC Oberau"
### Context: CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR) ### Question: When fc oberau is the oberbayern a what is the oberpfalz? ### Answer: SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = "FC Oberau"
When tus rosenberg is the oberpfalz what is the oberbayern b?
CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "TuS Rosenberg"
### Context: CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR) ### Question: When tus rosenberg is the oberpfalz what is the oberbayern b? ### Answer: SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "TuS Rosenberg"
When fc schwandorf is the oberpfalz what is the oberbayern b?
CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf"
### Context: CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR) ### Question: When fc schwandorf is the oberpfalz what is the oberbayern b? ### Answer: SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf"
What was the score in the final when the outcome was winner in 1989?
CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR)
SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989
### Context: CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR) ### Question: What was the score in the final when the outcome was winner in 1989? ### Answer: SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989
What was the score in the final when Mats Wilander was the opponent in the Australian Open?
CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR)
SELECT score_in_the_final FROM table_23235546_1 WHERE championship = "Australian Open" AND opponent_in_the_final = "Mats Wilander"
### Context: CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR) ### Question: What was the score in the final when Mats Wilander was the opponent in the Australian Open? ### Answer: SELECT score_in_the_final FROM table_23235546_1 WHERE championship = "Austral...
If the number in the season is 22, what is the original air date?
CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22
### Context: CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR) ### Question: If the number in the season is 22, what is the original air date? ### Answer: SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22
What is the maximum season number for the episode written by Jonathan Greene?
CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR)
SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene"
### Context: CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR) ### Question: What is the maximum season number for the episode written by Jonathan Greene? ### Answer: SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene"
Name the original air date for prod code 201
CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR)
SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201
### Context: CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR) ### Question: Name the original air date for prod code 201 ### Answer: SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201
Name the written by for prod code being 206
CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR)
SELECT written_by FROM table_2322716_2 WHERE prod_code = 206
### Context: CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR) ### Question: Name the written by for prod code being 206 ### Answer: SELECT written_by FROM table_2322716_2 WHERE prod_code = 206
How many positions are there in Canadian Nascar?
CREATE TABLE table_23239946_3 (position INTEGER)
SELECT MAX(position) FROM table_23239946_3
### Context: CREATE TABLE table_23239946_3 (position INTEGER) ### Question: How many positions are there in Canadian Nascar? ### Answer: SELECT MAX(position) FROM table_23239946_3
How many drivers have 1942 points?
CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR)
SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942
### Context: CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR) ### Question: How many drivers have 1942 points? ### Answer: SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942
How many starts are there?
CREATE TABLE table_23239946_3 (starts INTEGER)
SELECT MIN(starts) FROM table_23239946_3
### Context: CREATE TABLE table_23239946_3 (starts INTEGER) ### Question: How many starts are there? ### Answer: SELECT MIN(starts) FROM table_23239946_3
How many wins did Andrew Ranger have?
CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR)
SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = "Andrew Ranger"
### Context: CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR) ### Question: How many wins did Andrew Ranger have? ### Answer: SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = "Andrew Ranger"
What are the winnings for position 7?
CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR)
SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7
### Context: CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR) ### Question: What are the winnings for position 7? ### Answer: SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7
What number episode in the series was written by David Zuckerman?
CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR)
SELECT no_in_series FROM table_23242958_1 WHERE written_by = "David Zuckerman"
### Context: CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR) ### Question: What number episode in the series was written by David Zuckerman? ### Answer: SELECT no_in_series FROM table_23242958_1 WHERE written_by = "David Zuckerman"
What is the original air date of the episode written by David Zuckerman?
CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_23242958_1 WHERE written_by = "David Zuckerman"
### Context: CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: What is the original air date of the episode written by David Zuckerman? ### Answer: SELECT original_air_date FROM table_23242958_1 WHERE written_by = "David Zuckerman"