question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
When is the original air date written by sean whitesell?
CREATE TABLE table_22904752_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_22904752_1 WHERE written_by = "Sean Whitesell"
### Context: CREATE TABLE table_22904752_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: When is the original air date written by sean whitesell? ### Answer: SELECT original_air_date FROM table_22904752_1 WHERE written_by = "Sean Whitesell"
Who is no. 79 directed by?
CREATE TABLE table_22904752_1 (directed_by VARCHAR, no VARCHAR)
SELECT directed_by FROM table_22904752_1 WHERE no = 79
### Context: CREATE TABLE table_22904752_1 (directed_by VARCHAR, no VARCHAR) ### Question: Who is no. 79 directed by? ### Answer: SELECT directed_by FROM table_22904752_1 WHERE no = 79
What is the # when u.s. viewers (million) is 17.44?
CREATE TABLE table_22904752_1 (_number VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(_number) FROM table_22904752_1 WHERE us_viewers__million_ = "17.44"
### Context: CREATE TABLE table_22904752_1 (_number VARCHAR, us_viewers__million_ VARCHAR) ### Question: What is the # when u.s. viewers (million) is 17.44? ### Answer: SELECT COUNT(_number) FROM table_22904752_1 WHERE us_viewers__million_ = "17.44"
How many # were written by david hoselton?
CREATE TABLE table_22904752_1 (_number INTEGER, written_by VARCHAR)
SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = "David Hoselton"
### Context: CREATE TABLE table_22904752_1 (_number INTEGER, written_by VARCHAR) ### Question: How many # were written by david hoselton? ### Answer: SELECT MAX(_number) FROM table_22904752_1 WHERE written_by = "David Hoselton"
How many race 3 winners were there when Mitch Evans won race 2?
CREATE TABLE table_22905641_2 (race_3_winner VARCHAR, race_2_winner VARCHAR)
SELECT COUNT(race_3_winner) FROM table_22905641_2 WHERE race_2_winner = "Mitch Evans"
### Context: CREATE TABLE table_22905641_2 (race_3_winner VARCHAR, race_2_winner VARCHAR) ### Question: How many race 3 winners were there when Mitch Evans won race 2? ### Answer: SELECT COUNT(race_3_winner) FROM table_22905641_2 WHERE race_2_winner = "Mitch Evans"
What date was the race at the Symmons Plains Raceway?
CREATE TABLE table_22905641_2 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_22905641_2 WHERE circuit = "Symmons Plains Raceway"
### Context: CREATE TABLE table_22905641_2 (date VARCHAR, circuit VARCHAR) ### Question: What date was the race at the Symmons Plains Raceway? ### Answer: SELECT date FROM table_22905641_2 WHERE circuit = "Symmons Plains Raceway"
Who was the race 1 winner at the race held at Winton Motor Raceway?
CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Winton Motor Raceway"
### Context: CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR) ### Question: Who was the race 1 winner at the race held at Winton Motor Raceway? ### Answer: SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Winton Motor Raceway"
Who was the race 1 winner of the race at Hidden Valley Raceway?
CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR)
SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Hidden Valley Raceway"
### Context: CREATE TABLE table_22905641_2 (race_1_winner VARCHAR, circuit VARCHAR) ### Question: Who was the race 1 winner of the race at Hidden Valley Raceway? ### Answer: SELECT race_1_winner FROM table_22905641_2 WHERE circuit = "Hidden Valley Raceway"
In how many years did Pat Bradley became the champion?
CREATE TABLE table_229059_2 (year VARCHAR, champion VARCHAR)
SELECT COUNT(year) FROM table_229059_2 WHERE champion = "Pat Bradley"
### Context: CREATE TABLE table_229059_2 (year VARCHAR, champion VARCHAR) ### Question: In how many years did Pat Bradley became the champion? ### Answer: SELECT COUNT(year) FROM table_229059_2 WHERE champion = "Pat Bradley"
When was the tournament in Forest Lake Country Club held?
CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR)
SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club"
### Context: CREATE TABLE table_229059_2 (dates VARCHAR, tournament_location VARCHAR) ### Question: When was the tournament in Forest Lake Country Club held? ### Answer: SELECT dates FROM table_229059_2 WHERE tournament_location = "Forest Lake country Club"
How many different countries did the champion Se Ri Pak (2) represent?
CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR)
SELECT COUNT(country) FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
### Context: CREATE TABLE table_229059_2 (country VARCHAR, champion VARCHAR) ### Question: How many different countries did the champion Se Ri Pak (2) represent? ### Answer: SELECT COUNT(country) FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
What was the score in 1978?
CREATE TABLE table_229059_2 (score VARCHAR, year VARCHAR)
SELECT score FROM table_229059_2 WHERE year = 1978
### Context: CREATE TABLE table_229059_2 (score VARCHAR, year VARCHAR) ### Question: What was the score in 1978? ### Answer: SELECT score FROM table_229059_2 WHERE year = 1978
What was the winner share (in $) in the year when Se Ri Pak (2) was the champion?
CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR)
SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
### Context: CREATE TABLE table_229059_2 (winners_share__ INTEGER, champion VARCHAR) ### Question: What was the winner share (in $) in the year when Se Ri Pak (2) was the champion? ### Answer: SELECT MIN(winners_share__) AS $_ FROM table_229059_2 WHERE champion = "Se Ri Pak (2)"
What was the score in the tournament won by Jan Stephenson?
CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR)
SELECT score FROM table_229059_2 WHERE champion = "Jan Stephenson"
### Context: CREATE TABLE table_229059_2 (score VARCHAR, champion VARCHAR) ### Question: What was the score in the tournament won by Jan Stephenson? ### Answer: SELECT score FROM table_229059_2 WHERE champion = "Jan Stephenson"
How many points did the opponents score at the game in Knoxville?
CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR)
SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = "Knoxville"
### Context: CREATE TABLE table_22903773_2 (opp_points INTEGER, location VARCHAR) ### Question: How many points did the opponents score at the game in Knoxville? ### Answer: SELECT MIN(opp_points) FROM table_22903773_2 WHERE location = "Knoxville"
What game date had a record of 17-7?
CREATE TABLE table_22903773_2 (date VARCHAR, record VARCHAR)
SELECT date FROM table_22903773_2 WHERE record = "17-7"
### Context: CREATE TABLE table_22903773_2 (date VARCHAR, record VARCHAR) ### Question: What game date had a record of 17-7? ### Answer: SELECT date FROM table_22903773_2 WHERE record = "17-7"
How many points did the opponents score on the game where Sooners' record was 16-5?
CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR)
SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5"
### Context: CREATE TABLE table_22903773_2 (opp_points INTEGER, record VARCHAR) ### Question: How many points did the opponents score on the game where Sooners' record was 16-5? ### Answer: SELECT MAX(opp_points) FROM table_22903773_2 WHERE record = "16-5"
List the number of shows that had 12.04 million viewers in the united states
CREATE TABLE table_22904780_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(title) FROM table_22904780_1 WHERE us_viewers__million_ = "12.04"
### Context: CREATE TABLE table_22904780_1 (title VARCHAR, us_viewers__million_ VARCHAR) ### Question: List the number of shows that had 12.04 million viewers in the united states ### Answer: SELECT COUNT(title) FROM table_22904780_1 WHERE us_viewers__million_ = "12.04"
List the original air date for week 5.
CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR)
SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5
### Context: CREATE TABLE table_22904780_1 (original_air_date VARCHAR, rank__week_ VARCHAR) ### Question: List the original air date for week 5. ### Answer: SELECT original_air_date FROM table_22904780_1 WHERE rank__week_ = 5
List the 1st air date for the show where the writers are russel friend & garrett lerner.
CREATE TABLE table_22904780_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_22904780_1 WHERE written_by = "Russel Friend & Garrett Lerner"
### Context: CREATE TABLE table_22904780_1 (original_air_date VARCHAR, written_by VARCHAR) ### Question: List the 1st air date for the show where the writers are russel friend & garrett lerner. ### Answer: SELECT original_air_date FROM table_22904780_1 WHERE written_by = "Russel Friend & Garrett Lerner"
When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical?
CREATE TABLE table_22915134_2 (graphical VARCHAR, example VARCHAR)
SELECT graphical FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
### Context: CREATE TABLE table_22915134_2 (graphical VARCHAR, example VARCHAR) ### Question: When shinya nakano's kawasaki ninja zx-rr is the example what is the graphical? ### Answer: SELECT graphical FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it?
CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)
SELECT engine FROM table_22915134_2 WHERE example = "1985-2007 Yamaha V-Max Honda VFR800"
### Context: CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR) ### Question: When 1985-2007 yamaha v-max honda vfr800 is the example what is the engine is it? ### Answer: SELECT engine FROM table_22915134_2 WHERE example = "1985-2007 Yamaha V-Max Honda VFR800"
When shinya nakano's kawasaki ninja zx-rr is the example what is the engine type?
CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR)
SELECT engine FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
### Context: CREATE TABLE table_22915134_2 (engine VARCHAR, example VARCHAR) ### Question: When shinya nakano's kawasaki ninja zx-rr is the example what is the engine type? ### Answer: SELECT engine FROM table_22915134_2 WHERE example = "Shinya Nakano's Kawasaki Ninja ZX-RR"
When 68-292-68-292 is the ignition timing how many graphicals is it?
CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR)
SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = "68-292-68-292"
### Context: CREATE TABLE table_22915134_2 (graphical VARCHAR, ignition_timing VARCHAR) ### Question: When 68-292-68-292 is the ignition timing how many graphicals is it? ### Answer: SELECT COUNT(graphical) FROM table_22915134_2 WHERE ignition_timing = "68-292-68-292"
When i4 is the engine what is the graphical?
CREATE TABLE table_22915134_2 (graphical VARCHAR, engine VARCHAR)
SELECT graphical FROM table_22915134_2 WHERE engine = "I4"
### Context: CREATE TABLE table_22915134_2 (graphical VARCHAR, engine VARCHAR) ### Question: When i4 is the engine what is the graphical? ### Answer: SELECT graphical FROM table_22915134_2 WHERE engine = "I4"
When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there?
CREATE TABLE table_22915134_2 (ignition_timing VARCHAR, graphical VARCHAR)
SELECT COUNT(ignition_timing) FROM table_22915134_2 WHERE graphical = "1-1-0-0-1-1-0-0-"
### Context: CREATE TABLE table_22915134_2 (ignition_timing VARCHAR, graphical VARCHAR) ### Question: When 1-1-0-0-1-1-0-0- is the graphical how many ignition timings are there? ### Answer: SELECT COUNT(ignition_timing) FROM table_22915134_2 WHERE graphical = "1-1-0-0-1-1-0-0-"
If the total is 6, what is the maximum R?
CREATE TABLE table (r INTEGER, total VARCHAR)
SELECT MAX(r) FROM table WHERE total = 6
### Context: CREATE TABLE table (r INTEGER, total VARCHAR) ### Question: If the total is 6, what is the maximum R? ### Answer: SELECT MAX(r) FROM table WHERE total = 6
If the player is Marcelo, what is the minimum R?
CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR)
SELECT MIN(r) FROM table WHERE player = Marcelo
### Context: CREATE TABLE table (r INTEGER, player VARCHAR, Marcelo VARCHAR) ### Question: If the player is Marcelo, what is the minimum R? ### Answer: SELECT MIN(r) FROM table WHERE player = Marcelo
If the player is Marcelo, what is the position?
CREATE TABLE table (position VARCHAR, player VARCHAR, Marcelo VARCHAR)
SELECT position FROM table WHERE player = Marcelo
### Context: CREATE TABLE table (position VARCHAR, player VARCHAR, Marcelo VARCHAR) ### Question: If the player is Marcelo, what is the position? ### Answer: SELECT position FROM table WHERE player = Marcelo
If the position is AM and the league is larger than 7.0, what is the total R number?
CREATE TABLE table (r VARCHAR, position VARCHAR, AM VARCHAR, league VARCHAR)
SELECT COUNT(r) FROM table WHERE position = AM AND league > 7.0
### Context: CREATE TABLE table (r VARCHAR, position VARCHAR, AM VARCHAR, league VARCHAR) ### Question: If the position is AM and the league is larger than 7.0, what is the total R number? ### Answer: SELECT COUNT(r) FROM table WHERE position = AM AND league > 7.0
Who was the Stage 1 winner?
CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_22917458_15 WHERE stage = 1
### Context: CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR) ### Question: Who was the Stage 1 winner? ### Answer: SELECT winner FROM table_22917458_15 WHERE stage = 1
Who won Stage 7?
CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR)
SELECT winner FROM table_22917458_15 WHERE stage = 7
### Context: CREATE TABLE table_22917458_15 (winner VARCHAR, stage VARCHAR) ### Question: Who won Stage 7? ### Answer: SELECT winner FROM table_22917458_15 WHERE stage = 7
Who was the mountain classification winner in the stage won by Alessandro Ballan?
CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR)
SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessandro Ballan"
### Context: CREATE TABLE table_22917458_15 (mountains_classification_klasyfikacja_górska VARCHAR, winner VARCHAR) ### Question: Who was the mountain classification winner in the stage won by Alessandro Ballan? ### Answer: SELECT mountains_classification_klasyfikacja_górska FROM table_22917458_15 WHERE winner = "Alessa...
For the city whose land area was 135.09, what was the total population density?
CREATE TABLE table_22916979_1 (population_density__people_per_mi_2__ VARCHAR, land_area__mi_2__ VARCHAR)
SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = "135.09"
### Context: CREATE TABLE table_22916979_1 (population_density__people_per_mi_2__ VARCHAR, land_area__mi_2__ VARCHAR) ### Question: For the city whose land area was 135.09, what was the total population density? ### Answer: SELECT population_density__people_per_mi_2__ FROM table_22916979_1 WHERE land_area__mi_2__ = "13...
Which major metropolitan area had a land area of 23.80?
CREATE TABLE table_22916979_1 (metropolitan_area VARCHAR, land_area__mi_2__ VARCHAR)
SELECT metropolitan_area FROM table_22916979_1 WHERE land_area__mi_2__ = "23.80"
### Context: CREATE TABLE table_22916979_1 (metropolitan_area VARCHAR, land_area__mi_2__ VARCHAR) ### Question: Which major metropolitan area had a land area of 23.80? ### Answer: SELECT metropolitan_area FROM table_22916979_1 WHERE land_area__mi_2__ = "23.80"
How many states had a population density of 10188.8?
CREATE TABLE table_22916979_1 (state VARCHAR, population_density__people_per_mi_2__ VARCHAR)
SELECT COUNT(state) FROM table_22916979_1 WHERE population_density__people_per_mi_2__ = "10188.8"
### Context: CREATE TABLE table_22916979_1 (state VARCHAR, population_density__people_per_mi_2__ VARCHAR) ### Question: How many states had a population density of 10188.8? ### Answer: SELECT COUNT(state) FROM table_22916979_1 WHERE population_density__people_per_mi_2__ = "10188.8"
Name the number of left for cardinals
CREATE TABLE table_2293402_2 (left VARCHAR, nickname VARCHAR)
SELECT COUNT(left) FROM table_2293402_2 WHERE nickname = "Cardinals"
### Context: CREATE TABLE table_2293402_2 (left VARCHAR, nickname VARCHAR) ### Question: Name the number of left for cardinals ### Answer: SELECT COUNT(left) FROM table_2293402_2 WHERE nickname = "Cardinals"
Name the school that is private
CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR)
SELECT institution FROM table_2293402_2 WHERE type = "Private"
### Context: CREATE TABLE table_2293402_2 (institution VARCHAR, type VARCHAR) ### Question: Name the school that is private ### Answer: SELECT institution FROM table_2293402_2 WHERE type = "Private"
Name the location that was founded 1798
CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR)
SELECT location FROM table_2293402_2 WHERE founded = 1798
### Context: CREATE TABLE table_2293402_2 (location VARCHAR, founded VARCHAR) ### Question: Name the location that was founded 1798 ### Answer: SELECT location FROM table_2293402_2 WHERE founded = 1798
Name the nickname that was founded 1798
CREATE TABLE table_2293402_2 (nickname VARCHAR, founded VARCHAR)
SELECT nickname FROM table_2293402_2 WHERE founded = 1798
### Context: CREATE TABLE table_2293402_2 (nickname VARCHAR, founded VARCHAR) ### Question: Name the nickname that was founded 1798 ### Answer: SELECT nickname FROM table_2293402_2 WHERE founded = 1798
Name the least 10,000+ places for louisville
CREATE TABLE table_22916979_5 (_places VARCHAR, principal_city VARCHAR)
SELECT MIN(10), 000 + _places FROM table_22916979_5 WHERE principal_city = "Louisville"
### Context: CREATE TABLE table_22916979_5 (_places VARCHAR, principal_city VARCHAR) ### Question: Name the least 10,000+ places for louisville ### Answer: SELECT MIN(10), 000 + _places FROM table_22916979_5 WHERE principal_city = "Louisville"
Name the density for pennsbury village
CREATE TABLE table_22916979_5 (density VARCHAR, densest_incorporated_place VARCHAR)
SELECT density FROM table_22916979_5 WHERE densest_incorporated_place = "Pennsbury Village"
### Context: CREATE TABLE table_22916979_5 (density VARCHAR, densest_incorporated_place VARCHAR) ### Question: Name the density for pennsbury village ### Answer: SELECT density FROM table_22916979_5 WHERE densest_incorporated_place = "Pennsbury Village"
Name the number of rank for stone park
CREATE TABLE table_22916979_5 (rank VARCHAR, densest_incorporated_place VARCHAR)
SELECT COUNT(rank) FROM table_22916979_5 WHERE densest_incorporated_place = "Stone Park"
### Context: CREATE TABLE table_22916979_5 (rank VARCHAR, densest_incorporated_place VARCHAR) ### Question: Name the number of rank for stone park ### Answer: SELECT COUNT(rank) FROM table_22916979_5 WHERE densest_incorporated_place = "Stone Park"
Name the area for north bay village
CREATE TABLE table_22916979_5 (metropolitan_area VARCHAR, densest_incorporated_place VARCHAR)
SELECT metropolitan_area FROM table_22916979_5 WHERE densest_incorporated_place = "North Bay Village"
### Context: CREATE TABLE table_22916979_5 (metropolitan_area VARCHAR, densest_incorporated_place VARCHAR) ### Question: Name the area for north bay village ### Answer: SELECT metropolitan_area FROM table_22916979_5 WHERE densest_incorporated_place = "North Bay Village"
Where is the PPP 23164 million €?
CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_€_ VARCHAR)
SELECT region___nuts_2006_ FROM table_2293510_1 WHERE ppp__million_€_ = 23164
### Context: CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_€_ VARCHAR) ### Question: Where is the PPP 23164 million €? ### Answer: SELECT region___nuts_2006_ FROM table_2293510_1 WHERE ppp__million_€_ = 23164
What's the total (in million €) in the region where PPP is 21779 million €?
CREATE TABLE table_2293510_1 (total__million_€__ VARCHAR, ppp__million_€_ VARCHAR)
SELECT total__million_€__ FROM table_2293510_1 WHERE ppp__million_€_ = 21779
### Context: CREATE TABLE table_2293510_1 (total__million_€__ VARCHAR, ppp__million_€_ VARCHAR) ### Question: What's the total (in million €) in the region where PPP is 21779 million €? ### Answer: SELECT total__million_€__ FROM table_2293510_1 WHERE ppp__million_€_ = 21779
What's the percentage of EU average GDP (PPP) in the region where € per capita is 2519
CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, €_per_capita__2005_ VARCHAR)
SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ = 2519
### Context: CREATE TABLE table_2293510_1 (_percentage_of_eu_average_gdp__ppp_ VARCHAR, €_per_capita__2005_ VARCHAR) ### Question: What's the percentage of EU average GDP (PPP) in the region where € per capita is 2519 ### Answer: SELECT _percentage_of_eu_average_gdp__ppp_ FROM table_2293510_1 WHERE €_per_capita__2005_ ...
If the winner is Bernhard Eisel, what is the stage maximum?
CREATE TABLE table_22941863_19 (stage INTEGER, winner VARCHAR)
SELECT MAX(stage) FROM table_22941863_19 WHERE winner = "Bernhard Eisel"
### Context: CREATE TABLE table_22941863_19 (stage INTEGER, winner VARCHAR) ### Question: If the winner is Bernhard Eisel, what is the stage maximum? ### Answer: SELECT MAX(stage) FROM table_22941863_19 WHERE winner = "Bernhard Eisel"
What is the mountain classification name if the winner is Bernhard Eisel?
CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Bernhard Eisel"
### Context: CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR) ### Question: What is the mountain classification name if the winner is Bernhard Eisel? ### Answer: SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Bernhard Eisel"
If the stage is 3, what is the points classification name?
CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_22941863_19 WHERE stage = 3
### Context: CREATE TABLE table_22941863_19 (points_classification VARCHAR, stage VARCHAR) ### Question: If the stage is 3, what is the points classification name? ### Answer: SELECT points_classification FROM table_22941863_19 WHERE stage = 3
If the stage is 9, what is the team classification name?
CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR)
SELECT team_classification FROM table_22941863_19 WHERE stage = 9
### Context: CREATE TABLE table_22941863_19 (team_classification VARCHAR, stage VARCHAR) ### Question: If the stage is 9, what is the team classification name? ### Answer: SELECT team_classification FROM table_22941863_19 WHERE stage = 9
If the winner is Michael Albasini, what is the mountains classification name?
CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Michael Albasini"
### Context: CREATE TABLE table_22941863_19 (mountains_classification VARCHAR, winner VARCHAR) ### Question: If the winner is Michael Albasini, what is the mountains classification name? ### Answer: SELECT mountains_classification FROM table_22941863_19 WHERE winner = "Michael Albasini"
What is the name of the winner when the sprints classification is no award?
CREATE TABLE table_22941863_19 (winner VARCHAR, sprints_classification VARCHAR)
SELECT winner FROM table_22941863_19 WHERE sprints_classification = "no award"
### Context: CREATE TABLE table_22941863_19 (winner VARCHAR, sprints_classification VARCHAR) ### Question: What is the name of the winner when the sprints classification is no award? ### Answer: SELECT winner FROM table_22941863_19 WHERE sprints_classification = "no award"
How many viewers (in millions) watched the episode written by deidre shaw?
CREATE TABLE table_22951088_3 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR)
SELECT us_viewers__in_millions_ FROM table_22951088_3 WHERE written_by = "Deidre Shaw"
### Context: CREATE TABLE table_22951088_3 (us_viewers__in_millions_ VARCHAR, written_by VARCHAR) ### Question: How many viewers (in millions) watched the episode written by deidre shaw? ### Answer: SELECT us_viewers__in_millions_ FROM table_22951088_3 WHERE written_by = "Deidre Shaw"
What was the original air date of episode number 1?
CREATE TABLE table_22951088_3 (original_air_date VARCHAR, no VARCHAR)
SELECT original_air_date FROM table_22951088_3 WHERE no = 1
### Context: CREATE TABLE table_22951088_3 (original_air_date VARCHAR, no VARCHAR) ### Question: What was the original air date of episode number 1? ### Answer: SELECT original_air_date FROM table_22951088_3 WHERE no = 1
Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha?
CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)
SELECT bowler FROM table_22962745_35 WHERE batsmen = "Dwaraka Ravi Teja RP Singh Pragyan Ojha"
### Context: CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR) ### Question: Who was the bowler when the batsmen was dwaraka ravi teja rp singh pragyan ojha? ### Answer: SELECT bowler FROM table_22962745_35 WHERE batsmen = "Dwaraka Ravi Teja RP Singh Pragyan Ojha"
How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen?
CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR)
SELECT COUNT(bowler) FROM table_22962745_35 WHERE batsmen = "David Hussey Azhar Mahmood Gurkeerat Singh"
### Context: CREATE TABLE table_22962745_35 (bowler VARCHAR, batsmen VARCHAR) ### Question: How many bowlers were there when david hussey azhar mahmood gurkeerat singh was the batsmen? ### Answer: SELECT COUNT(bowler) FROM table_22962745_35 WHERE batsmen = "David Hussey Azhar Mahmood Gurkeerat Singh"
What season was herschelle gibbs andrew symonds venugopal rao batsmen?
CREATE TABLE table_22962745_35 (season VARCHAR, batsmen VARCHAR)
SELECT season FROM table_22962745_35 WHERE batsmen = "Herschelle Gibbs Andrew Symonds Venugopal Rao"
### Context: CREATE TABLE table_22962745_35 (season VARCHAR, batsmen VARCHAR) ### Question: What season was herschelle gibbs andrew symonds venugopal rao batsmen? ### Answer: SELECT season FROM table_22962745_35 WHERE batsmen = "Herschelle Gibbs Andrew Symonds Venugopal Rao"
What was the scorecard when robin uthappa mark boucher jacques kallis was the batsmen?
CREATE TABLE table_22962745_35 (scorecard VARCHAR, batsmen VARCHAR)
SELECT scorecard FROM table_22962745_35 WHERE batsmen = "Robin Uthappa Mark Boucher Jacques Kallis"
### Context: CREATE TABLE table_22962745_35 (scorecard VARCHAR, batsmen VARCHAR) ### Question: What was the scorecard when robin uthappa mark boucher jacques kallis was the batsmen? ### Answer: SELECT scorecard FROM table_22962745_35 WHERE batsmen = "Robin Uthappa Mark Boucher Jacques Kallis"
What is the number when against is rajasthan royals?
CREATE TABLE table_22962745_35 (no INTEGER, against VARCHAR)
SELECT MAX(no) FROM table_22962745_35 WHERE against = "Rajasthan Royals"
### Context: CREATE TABLE table_22962745_35 (no INTEGER, against VARCHAR) ### Question: What is the number when against is rajasthan royals? ### Answer: SELECT MAX(no) FROM table_22962745_35 WHERE against = "Rajasthan Royals"
Name number of stellar classification for 3 neptune planets < 1 au
CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR)
SELECT COUNT(stellar_classification) FROM table_2296507_1 WHERE system = "3 Neptune planets < 1 AU"
### Context: CREATE TABLE table_2296507_1 (stellar_classification VARCHAR, system VARCHAR) ### Question: Name number of stellar classification for 3 neptune planets < 1 au ### Answer: SELECT COUNT(stellar_classification) FROM table_2296507_1 WHERE system = "3 Neptune planets < 1 AU"
Name the system for aries
CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR)
SELECT system FROM table_2296507_1 WHERE constellation = "Aries"
### Context: CREATE TABLE table_2296507_1 (system VARCHAR, constellation VARCHAR) ### Question: Name the system for aries ### Answer: SELECT system FROM table_2296507_1 WHERE constellation = "Aries"
Name the stellar age for f3v
CREATE TABLE table_2296507_1 (stellar_age__myr_ VARCHAR, stellar_classification VARCHAR)
SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = "F3V"
### Context: CREATE TABLE table_2296507_1 (stellar_age__myr_ VARCHAR, stellar_classification VARCHAR) ### Question: Name the stellar age for f3v ### Answer: SELECT stellar_age__myr_ FROM table_2296507_1 WHERE stellar_classification = "F3V"
Name the dust for star being hd 69830
CREATE TABLE table_2296507_1 (dust__or_debris__location__au_ VARCHAR, star VARCHAR)
SELECT dust__or_debris__location__au_ FROM table_2296507_1 WHERE star = "HD 69830"
### Context: CREATE TABLE table_2296507_1 (dust__or_debris__location__au_ VARCHAR, star VARCHAR) ### Question: Name the dust for star being hd 69830 ### Answer: SELECT dust__or_debris__location__au_ FROM table_2296507_1 WHERE star = "HD 69830"
Name the number of names for exeter chiefs
CREATE TABLE table_22977424_8 (name VARCHAR, promoted_from_league VARCHAR)
SELECT COUNT(name) FROM table_22977424_8 WHERE promoted_from_league = "Exeter Chiefs"
### Context: CREATE TABLE table_22977424_8 (name VARCHAR, promoted_from_league VARCHAR) ### Question: Name the number of names for exeter chiefs ### Answer: SELECT COUNT(name) FROM table_22977424_8 WHERE promoted_from_league = "Exeter Chiefs"
Name the name for henley manchester
CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Henley Manchester"
### Context: CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR) ### Question: Name the name for henley manchester ### Answer: SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Henley Manchester"
Name the name for doncaster newbury
CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Doncaster Newbury"
### Context: CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR) ### Question: Name the name for doncaster newbury ### Answer: SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Doncaster Newbury"
Name the season for rotherham titans
CREATE TABLE table_22977424_8 (season VARCHAR, promoted_from_league VARCHAR)
SELECT season FROM table_22977424_8 WHERE promoted_from_league = "Rotherham Titans"
### Context: CREATE TABLE table_22977424_8 (season VARCHAR, promoted_from_league VARCHAR) ### Question: Name the season for rotherham titans ### Answer: SELECT season FROM table_22977424_8 WHERE promoted_from_league = "Rotherham Titans"
Name the name for plymouth albion orrell
CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR)
SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Plymouth Albion Orrell"
### Context: CREATE TABLE table_22977424_8 (name VARCHAR, promoted_to_league VARCHAR) ### Question: Name the name for plymouth albion orrell ### Answer: SELECT name FROM table_22977424_8 WHERE promoted_to_league = "Plymouth Albion Orrell"
What's the tail number of the airplane involved in the accident described as crashed?
CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR)
SELECT tail_number FROM table_229917_2 WHERE brief_description = "Crashed"
### Context: CREATE TABLE table_229917_2 (tail_number VARCHAR, brief_description VARCHAR) ### Question: What's the tail number of the airplane involved in the accident described as crashed? ### Answer: SELECT tail_number FROM table_229917_2 WHERE brief_description = "Crashed"
How many different brief descriptions are there for crashes with 0/161 fatalities?
CREATE TABLE table_229917_2 (brief_description VARCHAR, fatalities VARCHAR)
SELECT COUNT(brief_description) FROM table_229917_2 WHERE fatalities = "0/161"
### Context: CREATE TABLE table_229917_2 (brief_description VARCHAR, fatalities VARCHAR) ### Question: How many different brief descriptions are there for crashes with 0/161 fatalities? ### Answer: SELECT COUNT(brief_description) FROM table_229917_2 WHERE fatalities = "0/161"
When did the airplane with tail number RA-85282 crash?
CREATE TABLE table_229917_2 (date__ddmmyyyy_ VARCHAR, tail_number VARCHAR)
SELECT date__ddmmyyyy_ FROM table_229917_2 WHERE tail_number = "RA-85282"
### Context: CREATE TABLE table_229917_2 (date__ddmmyyyy_ VARCHAR, tail_number VARCHAR) ### Question: When did the airplane with tail number RA-85282 crash? ### Answer: SELECT date__ddmmyyyy_ FROM table_229917_2 WHERE tail_number = "RA-85282"
How many fatalities were there in the crash described as ditched 300 m short of runway?
CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)
SELECT fatalities FROM table_229917_2 WHERE brief_description = "Ditched 300 m short of runway"
### Context: CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR) ### Question: How many fatalities were there in the crash described as ditched 300 m short of runway? ### Answer: SELECT fatalities FROM table_229917_2 WHERE brief_description = "Ditched 300 m short of runway"
How many fatalities were there in the crash described as crashed at take-off due to engine failure?
CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR)
SELECT fatalities FROM table_229917_2 WHERE brief_description = "Crashed at take-off due to engine failure"
### Context: CREATE TABLE table_229917_2 (fatalities VARCHAR, brief_description VARCHAR) ### Question: How many fatalities were there in the crash described as crashed at take-off due to engine failure? ### Answer: SELECT fatalities FROM table_229917_2 WHERE brief_description = "Crashed at take-off due to engine failur...
What class year was Vencie Glenn from?
CREATE TABLE table_22982552_9 (class_year INTEGER, player VARCHAR)
SELECT MIN(class_year) FROM table_22982552_9 WHERE player = "Vencie Glenn"
### Context: CREATE TABLE table_22982552_9 (class_year INTEGER, player VARCHAR) ### Question: What class year was Vencie Glenn from? ### Answer: SELECT MIN(class_year) FROM table_22982552_9 WHERE player = "Vencie Glenn"
What position did the player whose highlights were 5 career INTs play?
CREATE TABLE table_22982552_9 (position VARCHAR, highlight_s_ VARCHAR)
SELECT position FROM table_22982552_9 WHERE highlight_s_ = "5 career INTs"
### Context: CREATE TABLE table_22982552_9 (position VARCHAR, highlight_s_ VARCHAR) ### Question: What position did the player whose highlights were 5 career INTs play? ### Answer: SELECT position FROM table_22982552_9 WHERE highlight_s_ = "5 career INTs"
What class year was the player whose highlights were 35 career INTs from?
CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR)
SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = "35 career INTs"
### Context: CREATE TABLE table_22982552_9 (class_year INTEGER, highlight_s_ VARCHAR) ### Question: What class year was the player whose highlights were 35 career INTs from? ### Answer: SELECT MIN(class_year) FROM table_22982552_9 WHERE highlight_s_ = "35 career INTs"
What class year was the player who played for Buffalo from?
CREATE TABLE table_22982552_9 (class_year INTEGER, teams VARCHAR)
SELECT MIN(class_year) FROM table_22982552_9 WHERE teams = "Buffalo"
### Context: CREATE TABLE table_22982552_9 (class_year INTEGER, teams VARCHAR) ### Question: What class year was the player who played for Buffalo from? ### Answer: SELECT MIN(class_year) FROM table_22982552_9 WHERE teams = "Buffalo"
Name the gore number for others # 6.6%
CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR)
SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = "6.6%"
### Context: CREATE TABLE table_23014476_1 (gore__number INTEGER, others__number VARCHAR) ### Question: Name the gore number for others # 6.6% ### Answer: SELECT MIN(gore__number) FROM table_23014476_1 WHERE others__number = "6.6%"
Name the others % for bush number 1372
CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR)
SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372
### Context: CREATE TABLE table_23014476_1 (others__percentage VARCHAR, bush__number VARCHAR) ### Question: Name the others % for bush number 1372 ### Answer: SELECT others__percentage FROM table_23014476_1 WHERE bush__number = 1372
Name the gore number for others % being 5.3%
CREATE TABLE table_23014476_1 (gore__number VARCHAR, others__percentage VARCHAR)
SELECT gore__number FROM table_23014476_1 WHERE others__percentage = "5.3%"
### Context: CREATE TABLE table_23014476_1 (gore__number VARCHAR, others__percentage VARCHAR) ### Question: Name the gore number for others % being 5.3% ### Answer: SELECT gore__number FROM table_23014476_1 WHERE others__percentage = "5.3%"
Name the couty for others% 5.8
CREATE TABLE table_23014476_1 (county VARCHAR, others__percentage VARCHAR)
SELECT county FROM table_23014476_1 WHERE others__percentage = "5.8"
### Context: CREATE TABLE table_23014476_1 (county VARCHAR, others__percentage VARCHAR) ### Question: Name the couty for others% 5.8 ### Answer: SELECT county FROM table_23014476_1 WHERE others__percentage = "5.8"
Name the number of bush % for elko
CREATE TABLE table_23014476_1 (bush__percentage VARCHAR, county VARCHAR)
SELECT COUNT(bush__percentage) FROM table_23014476_1 WHERE county = "Elko"
### Context: CREATE TABLE table_23014476_1 (bush__percentage VARCHAR, county VARCHAR) ### Question: Name the number of bush % for elko ### Answer: SELECT COUNT(bush__percentage) FROM table_23014476_1 WHERE county = "Elko"
If the series is ADAC GT Masters and poles is 1, what is the name of the team?
CREATE TABLE table_22998777_1 (team VARCHAR, poles VARCHAR, series VARCHAR)
SELECT team FROM table_22998777_1 WHERE poles = 1 AND series = "ADAC GT Masters"
### Context: CREATE TABLE table_22998777_1 (team VARCHAR, poles VARCHAR, series VARCHAR) ### Question: If the series is ADAC GT Masters and poles is 1, what is the name of the team? ### Answer: SELECT team FROM table_22998777_1 WHERE poles = 1 AND series = "ADAC GT Masters"
If the position of 26th what is the season total number?
CREATE TABLE table_22998777_1 (season VARCHAR, position VARCHAR)
SELECT COUNT(season) FROM table_22998777_1 WHERE position = "26th"
### Context: CREATE TABLE table_22998777_1 (season VARCHAR, position VARCHAR) ### Question: If the position of 26th what is the season total number? ### Answer: SELECT COUNT(season) FROM table_22998777_1 WHERE position = "26th"
If the points is 41, what is the season?
CREATE TABLE table_22998777_1 (season VARCHAR, points VARCHAR)
SELECT season FROM table_22998777_1 WHERE points = "41"
### Context: CREATE TABLE table_22998777_1 (season VARCHAR, points VARCHAR) ### Question: If the points is 41, what is the season? ### Answer: SELECT season FROM table_22998777_1 WHERE points = "41"
If the primary (South) winners is Inter The Bloomfield, what is the season total number?
CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)
SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Inter The Bloomfield"
### Context: CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR) ### Question: If the primary (South) winners is Inter The Bloomfield, what is the season total number? ### Answer: SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Inter The Bloomfield"
What is the season total number if the primary (South) winners is Ridings High 'A'?
CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR)
SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Ridings High 'A'"
### Context: CREATE TABLE table_23014923_1 (season VARCHAR, primary__south__winners VARCHAR) ### Question: What is the season total number if the primary (South) winners is Ridings High 'A'? ### Answer: SELECT COUNT(season) FROM table_23014923_1 WHERE primary__south__winners = "Ridings High 'A'"
What is the year of the season if the intermediate (South) winners is Southmead Athletic?
CREATE TABLE table_23014923_1 (season VARCHAR, intermediate__south__winners VARCHAR)
SELECT season FROM table_23014923_1 WHERE intermediate__south__winners = "Southmead Athletic"
### Context: CREATE TABLE table_23014923_1 (season VARCHAR, intermediate__south__winners VARCHAR) ### Question: What is the year of the season if the intermediate (South) winners is Southmead Athletic? ### Answer: SELECT season FROM table_23014923_1 WHERE intermediate__south__winners = "Southmead Athletic"
What is the season date if the minor (South) winners is Bristol Sanctuary XI?
CREATE TABLE table_23014923_1 (season VARCHAR, minor__south__winners VARCHAR)
SELECT season FROM table_23014923_1 WHERE minor__south__winners = "Bristol Sanctuary XI"
### Context: CREATE TABLE table_23014923_1 (season VARCHAR, minor__south__winners VARCHAR) ### Question: What is the season date if the minor (South) winners is Bristol Sanctuary XI? ### Answer: SELECT season FROM table_23014923_1 WHERE minor__south__winners = "Bristol Sanctuary XI"
What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate?
CREATE TABLE table_23014923_1 (minor__south__winners VARCHAR, primary__south__winners VARCHAR)
SELECT COUNT(minor__south__winners) FROM table_23014923_1 WHERE primary__south__winners = "Mendip Gate"
### Context: CREATE TABLE table_23014923_1 (minor__south__winners VARCHAR, primary__south__winners VARCHAR) ### Question: What isthe minor (South) winners total number is the primary (South) winners is Mendip Gate? ### Answer: SELECT COUNT(minor__south__winners) FROM table_23014923_1 WHERE primary__south__winners = "Me...
What area was damaged when King Khalid Military City was targeted?
CREATE TABLE table_23014685_1 (area_damaged VARCHAR, target VARCHAR)
SELECT area_damaged FROM table_23014685_1 WHERE target = "King Khalid Military City"
### Context: CREATE TABLE table_23014685_1 (area_damaged VARCHAR, target VARCHAR) ### Question: What area was damaged when King Khalid Military City was targeted? ### Answer: SELECT area_damaged FROM table_23014685_1 WHERE target = "King Khalid Military City"
What was the place and date that the Apartments area was damaged?
CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR)
SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = "Apartments area"
### Context: CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR) ### Question: What was the place and date that the Apartments area was damaged? ### Answer: SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = "Apartments area"
Was the missile intercepted by patriot when the parking lot was damaged?
CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR)
SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = "Parking lot"
### Context: CREATE TABLE table_23014685_1 (intercepted_by_patriot VARCHAR, area_damaged VARCHAR) ### Question: Was the missile intercepted by patriot when the parking lot was damaged? ### Answer: SELECT intercepted_by_patriot FROM table_23014685_1 WHERE area_damaged = "Parking lot"
What number missile led to damage to the Islamic University campus?
CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR)
SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = "Islamic University campus"
### Context: CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR) ### Question: What number missile led to damage to the Islamic University campus? ### Answer: SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = "Islamic University campus"
Name the number of year for mark martin
CREATE TABLE table_23015396_1 (year VARCHAR, driver VARCHAR)
SELECT COUNT(year) FROM table_23015396_1 WHERE driver = "Mark Martin"
### Context: CREATE TABLE table_23015396_1 (year VARCHAR, driver VARCHAR) ### Question: Name the number of year for mark martin ### Answer: SELECT COUNT(year) FROM table_23015396_1 WHERE driver = "Mark Martin"
Name the number of year for june 30
CREATE TABLE table_23015396_1 (year VARCHAR, date VARCHAR)
SELECT COUNT(year) FROM table_23015396_1 WHERE date = "June 30"
### Context: CREATE TABLE table_23015396_1 (year VARCHAR, date VARCHAR) ### Question: Name the number of year for june 30 ### Answer: SELECT COUNT(year) FROM table_23015396_1 WHERE date = "June 30"
What is the model number for part numbers of cm80616003177acbx80616i5660?
CREATE TABLE table_23028629_2 (model_number VARCHAR, part_number_s_ VARCHAR)
SELECT model_number FROM table_23028629_2 WHERE part_number_s_ = "CM80616003177ACBX80616I5660"
### Context: CREATE TABLE table_23028629_2 (model_number VARCHAR, part_number_s_ VARCHAR) ### Question: What is the model number for part numbers of cm80616003177acbx80616i5660? ### Answer: SELECT model_number FROM table_23028629_2 WHERE part_number_s_ = "CM80616003177ACBX80616I5660"
What is every release price(USD) for model number core i5-650?
CREATE TABLE table_23028629_2 (release_price___usd__ VARCHAR, model_number VARCHAR)
SELECT release_price___usd__ FROM table_23028629_2 WHERE model_number = "Core i5-650"
### Context: CREATE TABLE table_23028629_2 (release_price___usd__ VARCHAR, model_number VARCHAR) ### Question: What is every release price(USD) for model number core i5-650? ### Answer: SELECT release_price___usd__ FROM table_23028629_2 WHERE model_number = "Core i5-650"
How many frequencies have a model number of core i5-655k?
CREATE TABLE table_23028629_2 (frequency VARCHAR, model_number VARCHAR)
SELECT COUNT(frequency) FROM table_23028629_2 WHERE model_number = "Core i5-655K"
### Context: CREATE TABLE table_23028629_2 (frequency VARCHAR, model_number VARCHAR) ### Question: How many frequencies have a model number of core i5-655k? ### Answer: SELECT COUNT(frequency) FROM table_23028629_2 WHERE model_number = "Core i5-655K"