question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the latest episode number with the title of Jerusalem?
CREATE TABLE table_19517621_4 (episode__number INTEGER, title VARCHAR)
SELECT MAX(episode__number) FROM table_19517621_4 WHERE title = "Jerusalem"
### Context: CREATE TABLE table_19517621_4 (episode__number INTEGER, title VARCHAR) ### Question: What is the latest episode number with the title of Jerusalem? ### Answer: SELECT MAX(episode__number) FROM table_19517621_4 WHERE title = "Jerusalem"
What was the original air date of the episode written by Michelle Offen?
CREATE TABLE table_19517621_4 (original_airdate VARCHAR, written_by VARCHAR)
SELECT original_airdate FROM table_19517621_4 WHERE written_by = "Michelle Offen"
### Context: CREATE TABLE table_19517621_4 (original_airdate VARCHAR, written_by VARCHAR) ### Question: What was the original air date of the episode written by Michelle Offen? ### Answer: SELECT original_airdate FROM table_19517621_4 WHERE written_by = "Michelle Offen"
What is the title of the episode written by Vanessa Bates?
CREATE TABLE table_19517621_4 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_19517621_4 WHERE written_by = "Vanessa Bates"
### Context: CREATE TABLE table_19517621_4 (title VARCHAR, written_by VARCHAR) ### Question: What is the title of the episode written by Vanessa Bates? ### Answer: SELECT title FROM table_19517621_4 WHERE written_by = "Vanessa Bates"
What was the original air date for the episode Calle, The Transit of Venus?
CREATE TABLE table_19517621_4 (original_airdate VARCHAR, title VARCHAR)
SELECT original_airdate FROM table_19517621_4 WHERE title = "The Transit of Venus"
### Context: CREATE TABLE table_19517621_4 (original_airdate VARCHAR, title VARCHAR) ### Question: What was the original air date for the episode Calle, The Transit of Venus? ### Answer: SELECT original_airdate FROM table_19517621_4 WHERE title = "The Transit of Venus"
What is the completion percentage when yards per attempt was done by Steve McNair : 2003?
CREATE TABLE table_19517448_3 (completion_percentage VARCHAR, yards_per_attempt VARCHAR)
SELECT completion_percentage FROM table_19517448_3 WHERE yards_per_attempt = "Steve McNair : 2003"
### Context: CREATE TABLE table_19517448_3 (completion_percentage VARCHAR, yards_per_attempt VARCHAR) ### Question: What is the completion percentage when yards per attempt was done by Steve McNair : 2003? ### Answer: SELECT completion_percentage FROM table_19517448_3 WHERE yards_per_attempt = "Steve McNair : 2003"
What rank has a rating of 146.8?
CREATE TABLE table_19517448_3 (rank VARCHAR, rating VARCHAR)
SELECT rank FROM table_19517448_3 WHERE rating = "146.8"
### Context: CREATE TABLE table_19517448_3 (rank VARCHAR, rating VARCHAR) ### Question: What rank has a rating of 146.8? ### Answer: SELECT rank FROM table_19517448_3 WHERE rating = "146.8"
How many yards per attempt were there when total yards were 513?
CREATE TABLE table_19517448_3 (yards_per_attempt VARCHAR, total_yards VARCHAR)
SELECT yards_per_attempt FROM table_19517448_3 WHERE total_yards = "513"
### Context: CREATE TABLE table_19517448_3 (yards_per_attempt VARCHAR, total_yards VARCHAR) ### Question: How many yards per attempt were there when total yards were 513? ### Answer: SELECT yards_per_attempt FROM table_19517448_3 WHERE total_yards = "513"
What is the series number for the episode written by Kristen Dunphy and David Ogilvy?
CREATE TABLE table_19517621_3 (series__number INTEGER, written_by VARCHAR)
SELECT MAX(series__number) FROM table_19517621_3 WHERE written_by = "Kristen Dunphy and David Ogilvy"
### Context: CREATE TABLE table_19517621_3 (series__number INTEGER, written_by VARCHAR) ### Question: What is the series number for the episode written by Kristen Dunphy and David Ogilvy? ### Answer: SELECT MAX(series__number) FROM table_19517621_3 WHERE written_by = "Kristen Dunphy and David Ogilvy"
If the title if the Lost Boy, how many directors were there?
CREATE TABLE table_19517621_3 (directed_by VARCHAR, title VARCHAR)
SELECT COUNT(directed_by) FROM table_19517621_3 WHERE title = "The Lost Boy"
### Context: CREATE TABLE table_19517621_3 (directed_by VARCHAR, title VARCHAR) ### Question: If the title if the Lost Boy, how many directors were there? ### Answer: SELECT COUNT(directed_by) FROM table_19517621_3 WHERE title = "The Lost Boy"
What is the title for the episode that written by Michael Miller?
CREATE TABLE table_19517621_3 (title VARCHAR, written_by VARCHAR)
SELECT title FROM table_19517621_3 WHERE written_by = "Michael Miller"
### Context: CREATE TABLE table_19517621_3 (title VARCHAR, written_by VARCHAR) ### Question: What is the title for the episode that written by Michael Miller? ### Answer: SELECT title FROM table_19517621_3 WHERE written_by = "Michael Miller"
If the playoff berth is 17, what is the AFC championship number?
CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR)
SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 17
### Context: CREATE TABLE table_1952057_5 (afc_championships VARCHAR, playoff_berths VARCHAR) ### Question: If the playoff berth is 17, what is the AFC championship number? ### Answer: SELECT afc_championships FROM table_1952057_5 WHERE playoff_berths = 17
If the team in the New England Patriots, what is the super bowl championship minimum number?
CREATE TABLE table_1952057_5 (super_bowl_championships INTEGER, team VARCHAR)
SELECT MIN(super_bowl_championships) FROM table_1952057_5 WHERE team = "New England Patriots"
### Context: CREATE TABLE table_1952057_5 (super_bowl_championships INTEGER, team VARCHAR) ### Question: If the team in the New England Patriots, what is the super bowl championship minimum number? ### Answer: SELECT MIN(super_bowl_championships) FROM table_1952057_5 WHERE team = "New England Patriots"
What is the maximum number of AFC championships?
CREATE TABLE table_1952057_5 (afc_championships INTEGER)
SELECT MAX(afc_championships) FROM table_1952057_5
### Context: CREATE TABLE table_1952057_5 (afc_championships INTEGER) ### Question: What is the maximum number of AFC championships? ### Answer: SELECT MAX(afc_championships) FROM table_1952057_5
How many authors are present when the original was Carry On?
CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR)
SELECT COUNT(authors) FROM table_19523708_1 WHERE original = "Carry On"
### Context: CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR) ### Question: How many authors are present when the original was Carry On? ### Answer: SELECT COUNT(authors) FROM table_19523708_1 WHERE original = "Carry On"
What was the draw for the english meaning Eyes that Never Lie?
CREATE TABLE table_19523708_1 (draw VARCHAR, language VARCHAR, english_meaning VARCHAR)
SELECT draw FROM table_19523708_1 WHERE language = "English" AND english_meaning = "Eyes That Never Lie"
### Context: CREATE TABLE table_19523708_1 (draw VARCHAR, language VARCHAR, english_meaning VARCHAR) ### Question: What was the draw for the english meaning Eyes that Never Lie? ### Answer: SELECT draw FROM table_19523708_1 WHERE language = "English" AND english_meaning = "Eyes That Never Lie"
What is the highest draw represented?
CREATE TABLE table_19523708_1 (draw INTEGER)
SELECT MAX(draw) FROM table_19523708_1
### Context: CREATE TABLE table_19523708_1 (draw INTEGER) ### Question: What is the highest draw represented? ### Answer: SELECT MAX(draw) FROM table_19523708_1
Who was the artist for the origin Shake it, Europe?
CREATE TABLE table_19523708_1 (artist VARCHAR, original VARCHAR)
SELECT artist FROM table_19523708_1 WHERE original = "Shake It, Europe"
### Context: CREATE TABLE table_19523708_1 (artist VARCHAR, original VARCHAR) ### Question: Who was the artist for the origin Shake it, Europe? ### Answer: SELECT artist FROM table_19523708_1 WHERE original = "Shake It, Europe"
What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich?
CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR)
SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = "Yuriy Korotkevich"
### Context: CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR) ### Question: What is the arena capacity of the arena in the town whose head coach is Yuriy Korotkevich? ### Answer: SELECT COUNT(arena__capacity_) FROM table_19526911_1 WHERE head_coach = "Yuriy Korotkevich"
What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti?
CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR)
SELECT arena__capacity_ FROM table_19526911_1 WHERE head_coach = "Roberto Serniotti"
### Context: CREATE TABLE table_19526911_1 (arena__capacity_ VARCHAR, head_coach VARCHAR) ### Question: What is the arena capacity of the arena in the town whose head coach is Roberto Serniotti? ### Answer: SELECT arena__capacity_ FROM table_19526911_1 WHERE head_coach = "Roberto Serniotti"
Who are the foreign players on team/s that play in Moscow?
CREATE TABLE table_19526911_1 (foreign_players__max_2_ VARCHAR, town VARCHAR)
SELECT foreign_players__max_2_ FROM table_19526911_1 WHERE town = "Moscow"
### Context: CREATE TABLE table_19526911_1 (foreign_players__max_2_ VARCHAR, town VARCHAR) ### Question: Who are the foreign players on team/s that play in Moscow? ### Answer: SELECT foreign_players__max_2_ FROM table_19526911_1 WHERE town = "Moscow"
What are the previous season ranks of teams whose website is www.novavolley.narod.ru?
CREATE TABLE table_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR)
SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = "www.novavolley.narod.ru"
### Context: CREATE TABLE table_19526911_1 (previous_season_2007_2008 VARCHAR, website VARCHAR) ### Question: What are the previous season ranks of teams whose website is www.novavolley.narod.ru? ### Answer: SELECT previous_season_2007_2008 FROM table_19526911_1 WHERE website = "www.novavolley.narod.ru"
What are the minimum indoor results that have a 5 for inspection?
CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR)
SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5
### Context: CREATE TABLE table_19534874_2 (indoor INTEGER, inspection VARCHAR) ### Question: What are the minimum indoor results that have a 5 for inspection? ### Answer: SELECT MIN(indoor) FROM table_19534874_2 WHERE inspection = 5
What was the maximum number in written when the standard was 2?
CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR)
SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2
### Context: CREATE TABLE table_19534874_2 (written INTEGER, standard VARCHAR) ### Question: What was the maximum number in written when the standard was 2? ### Answer: SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2
How many point categories are there for the 3 mile run?
CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR)
SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3
### Context: CREATE TABLE table_19534874_2 (points VARCHAR, mile_run VARCHAR) ### Question: How many point categories are there for the 3 mile run? ### Answer: SELECT COUNT(points) FROM table_19534874_2 WHERE mile_run = 3
What is the indoor number for the NJ wing/
CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR)
SELECT indoor FROM table_19534874_2 WHERE wing = "NJ"
### Context: CREATE TABLE table_19534874_2 (indoor VARCHAR, wing VARCHAR) ### Question: What is the indoor number for the NJ wing/ ### Answer: SELECT indoor FROM table_19534874_2 WHERE wing = "NJ"
What is the indoor number for the NER region?
CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR)
SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = "NER"
### Context: CREATE TABLE table_19534874_2 (indoor VARCHAR, region VARCHAR) ### Question: What is the indoor number for the NER region? ### Answer: SELECT COUNT(indoor) FROM table_19534874_2 WHERE region = "NER"
What is the winning span of the name martin kaymer?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE name = "Martin Kaymer"
### Context: CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) ### Question: What is the winning span of the name martin kaymer? ### Answer: SELECT winning_span FROM table_1953516_1 WHERE name = "Martin Kaymer"
What is the winning span in the country of England with the name of paul casey?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, country VARCHAR, name VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE country = "England" AND name = "Paul Casey"
### Context: CREATE TABLE table_1953516_1 (winning_span VARCHAR, country VARCHAR, name VARCHAR) ### Question: What is the winning span in the country of England with the name of paul casey? ### Answer: SELECT winning_span FROM table_1953516_1 WHERE country = "England" AND name = "Paul Casey"
What is the winning span for the name of bernard gallacher?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE name = "Bernard Gallacher"
### Context: CREATE TABLE table_1953516_1 (winning_span VARCHAR, name VARCHAR) ### Question: What is the winning span for the name of bernard gallacher? ### Answer: SELECT winning_span FROM table_1953516_1 WHERE name = "Bernard Gallacher"
What is the winning span with the rank of 5?
CREATE TABLE table_1953516_1 (winning_span VARCHAR, rank VARCHAR)
SELECT winning_span FROM table_1953516_1 WHERE rank = "5"
### Context: CREATE TABLE table_1953516_1 (winning_span VARCHAR, rank VARCHAR) ### Question: What is the winning span with the rank of 5? ### Answer: SELECT winning_span FROM table_1953516_1 WHERE rank = "5"
How many scorecards are there for the match on October 28?
CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR)
SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = "October 28"
### Context: CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR) ### Question: How many scorecards are there for the match on October 28? ### Answer: SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = "October 28"
How many venues were there for the match on November 6?
CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)
SELECT COUNT(venue) FROM table_19576091_1 WHERE date = "November 6"
### Context: CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) ### Question: How many venues were there for the match on November 6? ### Answer: SELECT COUNT(venue) FROM table_19576091_1 WHERE date = "November 6"
What was the venue for the match on October 10?
CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_19576091_1 WHERE date = "October 10"
### Context: CREATE TABLE table_19576091_1 (venue VARCHAR, date VARCHAR) ### Question: What was the venue for the match on October 10? ### Answer: SELECT venue FROM table_19576091_1 WHERE date = "October 10"
Who was the man of the match when the Rockets won by 9 wickets?
CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR)
SELECT man_of_the_match FROM table_19576091_1 WHERE result = "Rockets won by 9 wickets"
### Context: CREATE TABLE table_19576091_1 (man_of_the_match VARCHAR, result VARCHAR) ### Question: Who was the man of the match when the Rockets won by 9 wickets? ### Answer: SELECT man_of_the_match FROM table_19576091_1 WHERE result = "Rockets won by 9 wickets"
Name the vacator for wisconsin 1st
CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR)
SELECT vacator FROM table_1958768_3 WHERE district = "Wisconsin 1st"
### Context: CREATE TABLE table_1958768_3 (vacator VARCHAR, district VARCHAR) ### Question: Name the vacator for wisconsin 1st ### Answer: SELECT vacator FROM table_1958768_3 WHERE district = "Wisconsin 1st"
Name the successor for pennsylvania 15th
CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR)
SELECT successor FROM table_1958768_3 WHERE district = "Pennsylvania 15th"
### Context: CREATE TABLE table_1958768_3 (successor VARCHAR, district VARCHAR) ### Question: Name the successor for pennsylvania 15th ### Answer: SELECT successor FROM table_1958768_3 WHERE district = "Pennsylvania 15th"
Name the circuit for #47 orbit racing
CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR)
SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = "#47 Orbit Racing"
### Context: CREATE TABLE table_19598014_2 (circuit VARCHAR, challenge_winning_team VARCHAR) ### Question: Name the circuit for #47 orbit racing ### Answer: SELECT circuit FROM table_19598014_2 WHERE challenge_winning_team = "#47 Orbit Racing"
Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin
CREATE TABLE table_19598014_2 (gt2_winning_team VARCHAR, lmp2_winning_team VARCHAR)
SELECT gt2_winning_team FROM table_19598014_2 WHERE lmp2_winning_team = "Butch Leitzinger Marino Franchitti Ben Devlin"
### Context: CREATE TABLE table_19598014_2 (gt2_winning_team VARCHAR, lmp2_winning_team VARCHAR) ### Question: Name the gt2 winning team where lmp2 winning team and butch leitzinger marino franchitti ben devlin ### Answer: SELECT gt2_winning_team FROM table_19598014_2 WHERE lmp2_winning_team = "Butch Leitzinger Marino ...
Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz
CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR)
SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = "Adrian Fernández Luis Díaz"
### Context: CREATE TABLE table_19598014_2 (lmp1_winning_team VARCHAR, rnd VARCHAR, lmp2_winning_team VARCHAR) ### Question: Name the lmp 1 winning team for rnd being 2 and adrian fernández luis díaz ### Answer: SELECT lmp1_winning_team FROM table_19598014_2 WHERE rnd = 2 AND lmp2_winning_team = "Adrian Fernández Luis ...
Which capitals have an area of exactly 377930 square km?
CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR)
SELECT capital FROM table_19605700_1 WHERE area_km² = 377930
### Context: CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) ### Question: Which capitals have an area of exactly 377930 square km? ### Answer: SELECT capital FROM table_19605700_1 WHERE area_km² = 377930
What is the total number of capitals that have an area of exactly 1104 square km?
CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR)
SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km² = 1104
### Context: CREATE TABLE table_19605700_1 (capital VARCHAR, area_km² VARCHAR) ### Question: What is the total number of capitals that have an area of exactly 1104 square km? ### Answer: SELECT COUNT(capital) FROM table_19605700_1 WHERE area_km² = 1104
What capital has a population of exactly 1339724852?
CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR)
SELECT capital FROM table_19605700_1 WHERE population = 1339724852
### Context: CREATE TABLE table_19605700_1 (capital VARCHAR, population VARCHAR) ### Question: What capital has a population of exactly 1339724852? ### Answer: SELECT capital FROM table_19605700_1 WHERE population = 1339724852
How many populations have a capital of Hong Kong?
CREATE TABLE table_19605700_1 (population VARCHAR, capital VARCHAR)
SELECT COUNT(population) FROM table_19605700_1 WHERE capital = "Hong Kong"
### Context: CREATE TABLE table_19605700_1 (population VARCHAR, capital VARCHAR) ### Question: How many populations have a capital of Hong Kong? ### Answer: SELECT COUNT(population) FROM table_19605700_1 WHERE capital = "Hong Kong"
What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16?
CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, growth_rate_1991_01 VARCHAR)
SELECT male_population_2001 FROM table_19589113_5 WHERE growth_rate_1991_01 = "36.16"
### Context: CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, growth_rate_1991_01 VARCHAR) ### Question: What are all values for the male population in 2001 with a growth rate in 1991-01 of 36.16? ### Answer: SELECT male_population_2001 FROM table_19589113_5 WHERE growth_rate_1991_01 = "36.16"
What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08?
CREATE TABLE table_19589113_5 (total_population_2001 INTEGER, growth_rate_1991_01 VARCHAR)
SELECT MIN(total_population_2001) FROM table_19589113_5 WHERE growth_rate_1991_01 = "33.08"
### Context: CREATE TABLE table_19589113_5 (total_population_2001 INTEGER, growth_rate_1991_01 VARCHAR) ### Question: What is the least value for total population in 2001 with a growth rate in 1991-01 of 33.08? ### Answer: SELECT MIN(total_population_2001) FROM table_19589113_5 WHERE growth_rate_1991_01 = "33.08"
What are all values for male population in 2001 when sex ratio in 1991 is 896?
CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_‡_1991 VARCHAR)
SELECT male_population_2001 FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 896
### Context: CREATE TABLE table_19589113_5 (male_population_2001 VARCHAR, sex_ratio_‡_1991 VARCHAR) ### Question: What are all values for male population in 2001 when sex ratio in 1991 is 896? ### Answer: SELECT male_population_2001 FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 896
What is every growth rate in 1991-2001 when sex ratio in 2001 is 937?
CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_‡_2001 VARCHAR)
SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937
### Context: CREATE TABLE table_19589113_5 (growth_rate_1991_01 VARCHAR, sex_ratio_‡_2001 VARCHAR) ### Question: What is every growth rate in 1991-2001 when sex ratio in 2001 is 937? ### Answer: SELECT growth_rate_1991_01 FROM table_19589113_5 WHERE sex_ratio_‡_2001 = 937
What districts of Bihar have a sex ratio in 1991 of 864?
CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_‡_1991 VARCHAR)
SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864
### Context: CREATE TABLE table_19589113_5 (districts_of_bihar VARCHAR, sex_ratio_‡_1991 VARCHAR) ### Question: What districts of Bihar have a sex ratio in 1991 of 864? ### Answer: SELECT districts_of_bihar FROM table_19589113_5 WHERE sex_ratio_‡_1991 = 864
How many marriages between women have % same-sex marriages of 1.06?
CREATE TABLE table_19614212_1 (marriages_between_women VARCHAR, _percentage_same_sex_marriages VARCHAR)
SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = "1.06"
### Context: CREATE TABLE table_19614212_1 (marriages_between_women VARCHAR, _percentage_same_sex_marriages VARCHAR) ### Question: How many marriages between women have % same-sex marriages of 1.06? ### Answer: SELECT marriages_between_women FROM table_19614212_1 WHERE _percentage_same_sex_marriages = "1.06"
What is the % of same-sex marriages for the year of 2011?
CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR)
SELECT _percentage_same_sex_marriages FROM table_19614212_1 WHERE year = "2011"
### Context: CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) ### Question: What is the % of same-sex marriages for the year of 2011? ### Answer: SELECT _percentage_same_sex_marriages FROM table_19614212_1 WHERE year = "2011"
How many % same-sex marriages are there for the year 2008?
CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR)
SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = "2008"
### Context: CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, year VARCHAR) ### Question: How many % same-sex marriages are there for the year 2008? ### Answer: SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE year = "2008"
How many % same-sex marriages are marriages between men for 923?
CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR)
SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923
### Context: CREATE TABLE table_19614212_1 (_percentage_same_sex_marriages VARCHAR, marriages_between_men VARCHAR) ### Question: How many % same-sex marriages are marriages between men for 923? ### Answer: SELECT COUNT(_percentage_same_sex_marriages) FROM table_19614212_1 WHERE marriages_between_men = 923
When was the episode number 2 originally aired?
CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR)
SELECT original_air_date FROM table_19632728_1 WHERE episode__number = 2
### Context: CREATE TABLE table_19632728_1 (original_air_date VARCHAR, episode__number VARCHAR) ### Question: When was the episode number 2 originally aired? ### Answer: SELECT original_air_date FROM table_19632728_1 WHERE episode__number = 2
What was the highest season number?
CREATE TABLE table_19632728_1 (season__number INTEGER)
SELECT MAX(season__number) FROM table_19632728_1
### Context: CREATE TABLE table_19632728_1 (season__number INTEGER) ### Question: What was the highest season number? ### Answer: SELECT MAX(season__number) FROM table_19632728_1
What was the margin of victory of Steve Stricker as a runner up?
CREATE TABLE table_19630743_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_19630743_2 WHERE runner_s__up = "Steve Stricker"
### Context: CREATE TABLE table_19630743_2 (margin_of_victory VARCHAR, runner_s__up VARCHAR) ### Question: What was the margin of victory of Steve Stricker as a runner up? ### Answer: SELECT margin_of_victory FROM table_19630743_2 WHERE runner_s__up = "Steve Stricker"
How many to par has the winning score of 69-66-68=203.
CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR)
SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203
### Context: CREATE TABLE table_19630743_2 (to_par VARCHAR, winning_score VARCHAR) ### Question: How many to par has the winning score of 69-66-68=203. ### Answer: SELECT to_par FROM table_19630743_2 WHERE winning_score = 69 - 66 - 68 = 203
What is the minimum number of the bmw championship tournament.
CREATE TABLE table_19630743_2 (no INTEGER, tournament VARCHAR)
SELECT MIN(no) FROM table_19630743_2 WHERE tournament = "BMW Championship"
### Context: CREATE TABLE table_19630743_2 (no INTEGER, tournament VARCHAR) ### Question: What is the minimum number of the bmw championship tournament. ### Answer: SELECT MIN(no) FROM table_19630743_2 WHERE tournament = "BMW Championship"
What is the total number of John Merrick as a runner up?
CREATE TABLE table_19630743_2 (no VARCHAR, runner_s__up VARCHAR)
SELECT COUNT(no) FROM table_19630743_2 WHERE runner_s__up = "John Merrick"
### Context: CREATE TABLE table_19630743_2 (no VARCHAR, runner_s__up VARCHAR) ### Question: What is the total number of John Merrick as a runner up? ### Answer: SELECT COUNT(no) FROM table_19630743_2 WHERE runner_s__up = "John Merrick"
What horses does r. a. Scott own?
CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR)
SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott"
### Context: CREATE TABLE table_19624708_1 (horse VARCHAR, owner VARCHAR) ### Question: What horses does r. a. Scott own? ### Answer: SELECT horse FROM table_19624708_1 WHERE owner = "R. A. Scott"
How many numbers have sp of 20/1 and a finishing position of fence 19?
CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR)
SELECT COUNT(number) FROM table_19624708_1 WHERE sp = "20/1" AND finishing_position = "Fence 19"
### Context: CREATE TABLE table_19624708_1 (number VARCHAR, sp VARCHAR, finishing_position VARCHAR) ### Question: How many numbers have sp of 20/1 and a finishing position of fence 19? ### Answer: SELECT COUNT(number) FROM table_19624708_1 WHERE sp = "20/1" AND finishing_position = "Fence 19"
Which handicap has the horse knowhere?
CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR)
SELECT handicap__st_lb_ FROM table_19624708_1 WHERE horse = "Knowhere"
### Context: CREATE TABLE table_19624708_1 (handicap__st_lb_ VARCHAR, horse VARCHAR) ### Question: Which handicap has the horse knowhere? ### Answer: SELECT handicap__st_lb_ FROM table_19624708_1 WHERE horse = "Knowhere"
What colors does David Langdon use?
CREATE TABLE table_19624708_1 (colours VARCHAR, owner VARCHAR)
SELECT colours FROM table_19624708_1 WHERE owner = "David Langdon"
### Context: CREATE TABLE table_19624708_1 (colours VARCHAR, owner VARCHAR) ### Question: What colors does David Langdon use? ### Answer: SELECT colours FROM table_19624708_1 WHERE owner = "David Langdon"
If the film title nominated is Baran, what was the result?
CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT result FROM table_19625976_1 WHERE film_title_used_in_nomination = "Baran"
### Context: CREATE TABLE table_19625976_1 (result VARCHAR, film_title_used_in_nomination VARCHAR) ### Question: If the film title nominated is Baran, what was the result? ### Answer: SELECT result FROM table_19625976_1 WHERE film_title_used_in_nomination = "Baran"
For the Persian Title میم مثل مادر, what were the results?
CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR)
SELECT result FROM table_19625976_1 WHERE persian_title = "میم مثل مادر"
### Context: CREATE TABLE table_19625976_1 (result VARCHAR, persian_title VARCHAR) ### Question: For the Persian Title میم مثل مادر, what were the results? ### Answer: SELECT result FROM table_19625976_1 WHERE persian_title = "میم مثل مادر"
For the Persian title گبه, What was the film title used for the nomination?
CREATE TABLE table_19625976_1 (film_title_used_in_nomination VARCHAR, persian_title VARCHAR)
SELECT film_title_used_in_nomination FROM table_19625976_1 WHERE persian_title = "گبه"
### Context: CREATE TABLE table_19625976_1 (film_title_used_in_nomination VARCHAR, persian_title VARCHAR) ### Question: For the Persian title گبه, What was the film title used for the nomination? ### Answer: SELECT film_title_used_in_nomination FROM table_19625976_1 WHERE persian_title = "گبه"
What year had an Allison B400R transmission and a model of BRT?
CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR)
SELECT year FROM table_19643196_1 WHERE transmission = "Allison B400R" AND model = "BRT"
### Context: CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, model VARCHAR) ### Question: What year had an Allison B400R transmission and a model of BRT? ### Answer: SELECT year FROM table_19643196_1 WHERE transmission = "Allison B400R" AND model = "BRT"
What is the fleet number when the length (ft) is 30?
CREATE TABLE table_19643196_1 (fleet__number VARCHAR, length__ft_ VARCHAR)
SELECT fleet__number FROM table_19643196_1 WHERE length__ft_ = 30
### Context: CREATE TABLE table_19643196_1 (fleet__number VARCHAR, length__ft_ VARCHAR) ### Question: What is the fleet number when the length (ft) is 30? ### Answer: SELECT fleet__number FROM table_19643196_1 WHERE length__ft_ = 30
What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL?
CREATE TABLE table_19643196_1 (fleet__number VARCHAR, transmission VARCHAR, engine VARCHAR)
SELECT fleet__number FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISL"
### Context: CREATE TABLE table_19643196_1 (fleet__number VARCHAR, transmission VARCHAR, engine VARCHAR) ### Question: What is the fleet number when the transmission is Voith D863.4 and the engine is Cummins ISL? ### Answer: SELECT fleet__number FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cu...
Which year had a transmission of Voith D863.4 and a Cummins ISM engine?
CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR)
SELECT year FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISM"
### Context: CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR) ### Question: Which year had a transmission of Voith D863.4 and a Cummins ISM engine? ### Answer: SELECT year FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISM"
Name the college/junior club team for ian turnbull
CREATE TABLE table_1965650_1 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1965650_1 WHERE player = "Ian Turnbull"
### Context: CREATE TABLE table_1965650_1 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Name the college/junior club team for ian turnbull ### Answer: SELECT college_junior_club_team FROM table_1965650_1 WHERE player = "Ian Turnbull"
Name the position for nhl team being los angeles kings
CREATE TABLE table_1965650_3 (position VARCHAR, nhl_team VARCHAR)
SELECT position FROM table_1965650_3 WHERE nhl_team = "Los Angeles Kings"
### Context: CREATE TABLE table_1965650_3 (position VARCHAR, nhl_team VARCHAR) ### Question: Name the position for nhl team being los angeles kings ### Answer: SELECT position FROM table_1965650_3 WHERE nhl_team = "Los Angeles Kings"
Name the nhl times for jeff jacques
CREATE TABLE table_1965650_3 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_1965650_3 WHERE player = "Jeff Jacques"
### Context: CREATE TABLE table_1965650_3 (nhl_team VARCHAR, player VARCHAR) ### Question: Name the nhl times for jeff jacques ### Answer: SELECT nhl_team FROM table_1965650_3 WHERE player = "Jeff Jacques"
Name the college/junior club team for john campbell
CREATE TABLE table_1965650_3 (college_junior_club_team VARCHAR, player VARCHAR)
SELECT college_junior_club_team FROM table_1965650_3 WHERE player = "John Campbell"
### Context: CREATE TABLE table_1965650_3 (college_junior_club_team VARCHAR, player VARCHAR) ### Question: Name the college/junior club team for john campbell ### Answer: SELECT college_junior_club_team FROM table_1965650_3 WHERE player = "John Campbell"
Name the least pick # for doug gibson
CREATE TABLE table_1965650_3 (pick__number INTEGER, player VARCHAR)
SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = "Doug Gibson"
### Context: CREATE TABLE table_1965650_3 (pick__number INTEGER, player VARCHAR) ### Question: Name the least pick # for doug gibson ### Answer: SELECT MIN(pick__number) FROM table_1965650_3 WHERE player = "Doug Gibson"
How many nationalities does Tom Colley have?
CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR)
SELECT COUNT(nationality) FROM table_1965650_4 WHERE player = "Tom Colley"
### Context: CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) ### Question: How many nationalities does Tom Colley have? ### Answer: SELECT COUNT(nationality) FROM table_1965650_4 WHERE player = "Tom Colley"
What's the NHL team that drafted the player from Sudbury Wolves (OHA)?
CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR)
SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = "Sudbury Wolves (OHA)"
### Context: CREATE TABLE table_1965650_4 (nhl_team VARCHAR, college_junior_club_team VARCHAR) ### Question: What's the NHL team that drafted the player from Sudbury Wolves (OHA)? ### Answer: SELECT nhl_team FROM table_1965650_4 WHERE college_junior_club_team = "Sudbury Wolves (OHA)"
What's the number of positions of the player playing in Minnesota North Stars?
CREATE TABLE table_1965650_4 (position VARCHAR, nhl_team VARCHAR)
SELECT COUNT(position) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars"
### Context: CREATE TABLE table_1965650_4 (position VARCHAR, nhl_team VARCHAR) ### Question: What's the number of positions of the player playing in Minnesota North Stars? ### Answer: SELECT COUNT(position) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars"
What's the smallest pick number of a player playing in Minnesota North Stars?
CREATE TABLE table_1965650_4 (pick__number INTEGER, nhl_team VARCHAR)
SELECT MIN(pick__number) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars"
### Context: CREATE TABLE table_1965650_4 (pick__number INTEGER, nhl_team VARCHAR) ### Question: What's the smallest pick number of a player playing in Minnesota North Stars? ### Answer: SELECT MIN(pick__number) FROM table_1965650_4 WHERE nhl_team = "Minnesota North Stars"
What's the nationality of the player coming from Edmonton Oil Kings (WCHL)?
CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = "Edmonton Oil Kings (WCHL)"
### Context: CREATE TABLE table_1965650_4 (nationality VARCHAR, college_junior_club_team VARCHAR) ### Question: What's the nationality of the player coming from Edmonton Oil Kings (WCHL)? ### Answer: SELECT nationality FROM table_1965650_4 WHERE college_junior_club_team = "Edmonton Oil Kings (WCHL)"
What's Steve Langdon's naitionality?
CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_1965650_4 WHERE player = "Steve Langdon"
### Context: CREATE TABLE table_1965650_4 (nationality VARCHAR, player VARCHAR) ### Question: What's Steve Langdon's naitionality? ### Answer: SELECT nationality FROM table_1965650_4 WHERE player = "Steve Langdon"
When michigan technological university (ncaa) is the college, junior, or club team what is the nationality?
CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Technological University (NCAA)"
### Context: CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) ### Question: When michigan technological university (ncaa) is the college, junior, or club team what is the nationality? ### Answer: SELECT nationality FROM table_1965650_9 WHERE college_junior_club_team = "Michigan Tech...
When kitchener rangers (oha) is the college, junior, or club team team who is the player?
CREATE TABLE table_1965650_9 (player VARCHAR, college_junior_club_team VARCHAR)
SELECT player FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)"
### Context: CREATE TABLE table_1965650_9 (player VARCHAR, college_junior_club_team VARCHAR) ### Question: When kitchener rangers (oha) is the college, junior, or club team team who is the player? ### Answer: SELECT player FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)"
When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there?
CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR)
SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = "Sault Ste. Marie Greyhounds (OHA)"
### Context: CREATE TABLE table_1965650_9 (nationality VARCHAR, college_junior_club_team VARCHAR) ### Question: When sault ste. marie greyhounds (oha) is the college, junior, or club team how many nationalities are there? ### Answer: SELECT COUNT(nationality) FROM table_1965650_9 WHERE college_junior_club_team = "Sau...
When kitchener rangers (oha) is the college, junior, or club team what is the position?
CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)"
### Context: CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR) ### Question: When kitchener rangers (oha) is the college, junior, or club team what is the position? ### Answer: SELECT position FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)"
How many positions for denis patry?
CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR)
SELECT COUNT(position) FROM table_1965650_6 WHERE player = "Denis Patry"
### Context: CREATE TABLE table_1965650_6 (position VARCHAR, player VARCHAR) ### Question: How many positions for denis patry? ### Answer: SELECT COUNT(position) FROM table_1965650_6 WHERE player = "Denis Patry"
What nationality for neil korzack?
CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_1965650_6 WHERE player = "Neil Korzack"
### Context: CREATE TABLE table_1965650_6 (nationality VARCHAR, player VARCHAR) ### Question: What nationality for neil korzack? ### Answer: SELECT nationality FROM table_1965650_6 WHERE player = "Neil Korzack"
Name the college that has 10000 enrolled
CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR)
SELECT institution FROM table_1969577_1 WHERE enrollment = 10000
### Context: CREATE TABLE table_1969577_1 (institution VARCHAR, enrollment VARCHAR) ### Question: Name the college that has 10000 enrolled ### Answer: SELECT institution FROM table_1969577_1 WHERE enrollment = 10000
Name the most joined for molloy college
CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR)
SELECT MAX(joined) FROM table_1969577_1 WHERE institution = "Molloy College"
### Context: CREATE TABLE table_1969577_1 (joined INTEGER, institution VARCHAR) ### Question: Name the most joined for molloy college ### Answer: SELECT MAX(joined) FROM table_1969577_1 WHERE institution = "Molloy College"
how many times was total considered when hancock # was 1394
CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR)
SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394
### Context: CREATE TABLE table_19681738_1 (total VARCHAR, hancock__number VARCHAR) ### Question: how many times was total considered when hancock # was 1394 ### Answer: SELECT COUNT(total) FROM table_19681738_1 WHERE hancock__number = 1394
how many times was hancock % considered when starky % was 20.96%
CREATE TABLE table_19681738_1 (hancock__percentage VARCHAR, starky__percentage VARCHAR)
SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = "20.96%"
### Context: CREATE TABLE table_19681738_1 (hancock__percentage VARCHAR, starky__percentage VARCHAR) ### Question: how many times was hancock % considered when starky % was 20.96% ### Answer: SELECT COUNT(hancock__percentage) FROM table_19681738_1 WHERE starky__percentage = "20.96%"
How many times was country considered when starky % was 20.96%
CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR)
SELECT COUNT(county) FROM table_19681738_1 WHERE starky__percentage = "20.96%"
### Context: CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) ### Question: How many times was country considered when starky % was 20.96% ### Answer: SELECT COUNT(county) FROM table_19681738_1 WHERE starky__percentage = "20.96%"
which country did stary get 17.41%
CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR)
SELECT county FROM table_19681738_1 WHERE starky__percentage = "17.41%"
### Context: CREATE TABLE table_19681738_1 (county VARCHAR, starky__percentage VARCHAR) ### Question: which country did stary get 17.41% ### Answer: SELECT county FROM table_19681738_1 WHERE starky__percentage = "17.41%"
what is the least total in gila
CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR)
SELECT MIN(total) FROM table_19681738_1 WHERE county = "Gila"
### Context: CREATE TABLE table_19681738_1 (total INTEGER, county VARCHAR) ### Question: what is the least total in gila ### Answer: SELECT MIN(total) FROM table_19681738_1 WHERE county = "Gila"
where did hancock get 3.09%
CREATE TABLE table_19681738_1 (county VARCHAR, hancock__percentage VARCHAR)
SELECT county FROM table_19681738_1 WHERE hancock__percentage = "3.09%"
### Context: CREATE TABLE table_19681738_1 (county VARCHAR, hancock__percentage VARCHAR) ### Question: where did hancock get 3.09% ### Answer: SELECT county FROM table_19681738_1 WHERE hancock__percentage = "3.09%"
What is the BBM when the strike rate is 42.2?
CREATE TABLE table_19662262_6 (bbm VARCHAR, strike_rate VARCHAR)
SELECT bbm FROM table_19662262_6 WHERE strike_rate = "42.2"
### Context: CREATE TABLE table_19662262_6 (bbm VARCHAR, strike_rate VARCHAR) ### Question: What is the BBM when the strike rate is 42.2? ### Answer: SELECT bbm FROM table_19662262_6 WHERE strike_rate = "42.2"
What is the economy when the strike rate is 54.0?
CREATE TABLE table_19662262_6 (economy_rate VARCHAR, strike_rate VARCHAR)
SELECT economy_rate FROM table_19662262_6 WHERE strike_rate = "54.0"
### Context: CREATE TABLE table_19662262_6 (economy_rate VARCHAR, strike_rate VARCHAR) ### Question: What is the economy when the strike rate is 54.0? ### Answer: SELECT economy_rate FROM table_19662262_6 WHERE strike_rate = "54.0"
How many averages are there when the economy rate is 2.26?
CREATE TABLE table_19662262_6 (average VARCHAR, economy_rate VARCHAR)
SELECT COUNT(average) FROM table_19662262_6 WHERE economy_rate = "2.26"
### Context: CREATE TABLE table_19662262_6 (average VARCHAR, economy_rate VARCHAR) ### Question: How many averages are there when the economy rate is 2.26? ### Answer: SELECT COUNT(average) FROM table_19662262_6 WHERE economy_rate = "2.26"
How many figures for wickets when the strike rate is 54.0?
CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR)
SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = "54.0"
### Context: CREATE TABLE table_19662262_6 (wickets VARCHAR, strike_rate VARCHAR) ### Question: How many figures for wickets when the strike rate is 54.0? ### Answer: SELECT COUNT(wickets) FROM table_19662262_6 WHERE strike_rate = "54.0"
What is the strike rate when there are 17 wickets?
CREATE TABLE table_19662262_6 (strike_rate VARCHAR, wickets VARCHAR)
SELECT strike_rate FROM table_19662262_6 WHERE wickets = 17
### Context: CREATE TABLE table_19662262_6 (strike_rate VARCHAR, wickets VARCHAR) ### Question: What is the strike rate when there are 17 wickets? ### Answer: SELECT strike_rate FROM table_19662262_6 WHERE wickets = 17
How many areas (km 2) have 151511 as the census 2006 population?
CREATE TABLE table_1966992_1 (area__km_2__ VARCHAR, census_2006_population VARCHAR)
SELECT COUNT(area__km_2__) FROM table_1966992_1 WHERE census_2006_population = 151511
### Context: CREATE TABLE table_1966992_1 (area__km_2__ VARCHAR, census_2006_population VARCHAR) ### Question: How many areas (km 2) have 151511 as the census 2006 population? ### Answer: SELECT COUNT(area__km_2__) FROM table_1966992_1 WHERE census_2006_population = 151511