question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the name of the player who played in 2009 only?
CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR)
SELECT player_name FROM table_12321870_32 WHERE period = "2009"
### Context: CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR) ### Question: What is the name of the player who played in 2009 only? ### Answer: SELECT player_name FROM table_12321870_32 WHERE period = "2009"
How many goals have been scored by Tiago Gomes?
CREATE TABLE table_12321870_32 (goals VARCHAR, player_name VARCHAR)
SELECT goals FROM table_12321870_32 WHERE player_name = "Tiago Gomes"
### Context: CREATE TABLE table_12321870_32 (goals VARCHAR, player_name VARCHAR) ### Question: How many goals have been scored by Tiago Gomes? ### Answer: SELECT goals FROM table_12321870_32 WHERE player_name = "Tiago Gomes"
Which athlete is from Mexico City?
CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
SELECT athlete FROM table_1231316_7 WHERE location = "Mexico City"
### Context: CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR) ### Question: Which athlete is from Mexico City? ### Answer: SELECT athlete FROM table_1231316_7 WHERE location = "Mexico City"
What is the athlete from Edwardsville?
CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville"
### Context: CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR) ### Question: What is the athlete from Edwardsville? ### Answer: SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville"
What was the wind on 21 june 1976?
CREATE TABLE table_1231316_7 (wind__m_s_ VARCHAR, date VARCHAR)
SELECT wind__m_s_ FROM table_1231316_7 WHERE date = "21 June 1976"
### Context: CREATE TABLE table_1231316_7 (wind__m_s_ VARCHAR, date VARCHAR) ### Question: What was the wind on 21 june 1976? ### Answer: SELECT wind__m_s_ FROM table_1231316_7 WHERE date = "21 June 1976"
What is the number of locations with the fastest times of 11.13?
CREATE TABLE table_1231316_7 (location VARCHAR, fastest_time__s_ VARCHAR)
SELECT COUNT(location) FROM table_1231316_7 WHERE fastest_time__s_ = "11.13"
### Context: CREATE TABLE table_1231316_7 (location VARCHAR, fastest_time__s_ VARCHAR) ### Question: What is the number of locations with the fastest times of 11.13? ### Answer: SELECT COUNT(location) FROM table_1231316_7 WHERE fastest_time__s_ = "11.13"
What's the title of the episode with a broadcast order s04 e01?
CREATE TABLE table_1231892_4 (title VARCHAR, broadcast_order VARCHAR)
SELECT title FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
### Context: CREATE TABLE table_1231892_4 (title VARCHAR, broadcast_order VARCHAR) ### Question: What's the title of the episode with a broadcast order s04 e01? ### Answer: SELECT title FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
What's the number of episodes with a broadcast order s04 e07?
CREATE TABLE table_1231892_4 (number_in_series VARCHAR, broadcast_order VARCHAR)
SELECT COUNT(number_in_series) FROM table_1231892_4 WHERE broadcast_order = "S04 E07"
### Context: CREATE TABLE table_1231892_4 (number_in_series VARCHAR, broadcast_order VARCHAR) ### Question: What's the number of episodes with a broadcast order s04 e07? ### Answer: SELECT COUNT(number_in_series) FROM table_1231892_4 WHERE broadcast_order = "S04 E07"
what's the total number of episodes with a US air date of january 15, 2005?
CREATE TABLE table_1231892_4 (production_code VARCHAR, us_air_date VARCHAR)
SELECT COUNT(production_code) FROM table_1231892_4 WHERE us_air_date = "January 15, 2005"
### Context: CREATE TABLE table_1231892_4 (production_code VARCHAR, us_air_date VARCHAR) ### Question: what's the total number of episodes with a US air date of january 15, 2005? ### Answer: SELECT COUNT(production_code) FROM table_1231892_4 WHERE us_air_date = "January 15, 2005"
What's the original air date of the episode with a broadcast order s04 e01?
CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR)
SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
### Context: CREATE TABLE table_1231892_4 (us_air_date VARCHAR, broadcast_order VARCHAR) ### Question: What's the original air date of the episode with a broadcast order s04 e01? ### Answer: SELECT us_air_date FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
What's the series number of the episode with a broadcast order s04 e07?
CREATE TABLE table_1231892_4 (number_in_series INTEGER, broadcast_order VARCHAR)
SELECT MAX(number_in_series) FROM table_1231892_4 WHERE broadcast_order = "S04 E07"
### Context: CREATE TABLE table_1231892_4 (number_in_series INTEGER, broadcast_order VARCHAR) ### Question: What's the series number of the episode with a broadcast order s04 e07? ### Answer: SELECT MAX(number_in_series) FROM table_1231892_4 WHERE broadcast_order = "S04 E07"
Which police force serves a population of 17000?
CREATE TABLE table_12340907_1 (police_force VARCHAR, population VARCHAR)
SELECT police_force FROM table_12340907_1 WHERE population = 17000
### Context: CREATE TABLE table_12340907_1 (police_force VARCHAR, population VARCHAR) ### Question: Which police force serves a population of 17000? ### Answer: SELECT police_force FROM table_12340907_1 WHERE population = 17000
When total costs (2005) are $700,116, what is the cost per capita?
CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, total_costs__2005_ VARCHAR)
SELECT cost_per_capita FROM table_12340907_1 WHERE total_costs__2005_ = "$700,116"
### Context: CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, total_costs__2005_ VARCHAR) ### Question: When total costs (2005) are $700,116, what is the cost per capita? ### Answer: SELECT cost_per_capita FROM table_12340907_1 WHERE total_costs__2005_ = "$700,116"
What is the cost per capita in the Courtenay municipality?
CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, municipality VARCHAR)
SELECT cost_per_capita FROM table_12340907_1 WHERE municipality = "Courtenay"
### Context: CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, municipality VARCHAR) ### Question: What is the cost per capita in the Courtenay municipality? ### Answer: SELECT cost_per_capita FROM table_12340907_1 WHERE municipality = "Courtenay"
Which crime rate per 1,000 people is associated with a cost per capita of $152?
CREATE TABLE table_12340907_1 (crime_rate_per_1 INTEGER, cost_per_capita VARCHAR)
SELECT MAX(crime_rate_per_1), 000 AS _people FROM table_12340907_1 WHERE cost_per_capita = "$152"
### Context: CREATE TABLE table_12340907_1 (crime_rate_per_1 INTEGER, cost_per_capita VARCHAR) ### Question: Which crime rate per 1,000 people is associated with a cost per capita of $152? ### Answer: SELECT MAX(crime_rate_per_1), 000 AS _people FROM table_12340907_1 WHERE cost_per_capita = "$152"
If the number of police officers is 94, what is the lowest population number?
CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR)
SELECT MIN(population) FROM table_12340907_1 WHERE police_officers = 94
### Context: CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR) ### Question: If the number of police officers is 94, what is the lowest population number? ### Answer: SELECT MIN(population) FROM table_12340907_1 WHERE police_officers = 94
What is the value of total costs (2005) in the Coldstream municipality?
CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR)
SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = "Coldstream"
### Context: CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR) ### Question: What is the value of total costs (2005) in the Coldstream municipality? ### Answer: SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = "Coldstream"
What is the interview score for the state of Virginia?
CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)
SELECT interview FROM table_12338595_1 WHERE state = "Virginia"
### Context: CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR) ### Question: What is the interview score for the state of Virginia? ### Answer: SELECT interview FROM table_12338595_1 WHERE state = "Virginia"
How much is the average score for New York state?
CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR)
SELECT average FROM table_12338595_1 WHERE state = "New York"
### Context: CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR) ### Question: How much is the average score for New York state? ### Answer: SELECT average FROM table_12338595_1 WHERE state = "New York"
Which interview score corresponds with the evening gown score of 8.977?
CREATE TABLE table_12338595_1 (interview VARCHAR, evening_gown VARCHAR)
SELECT interview FROM table_12338595_1 WHERE evening_gown = "8.977"
### Context: CREATE TABLE table_12338595_1 (interview VARCHAR, evening_gown VARCHAR) ### Question: Which interview score corresponds with the evening gown score of 8.977? ### Answer: SELECT interview FROM table_12338595_1 WHERE evening_gown = "8.977"
What is the preliminary score associated with the interview score of 8.488?
CREATE TABLE table_12338595_1 (preliminaries VARCHAR, interview VARCHAR)
SELECT COUNT(preliminaries) FROM table_12338595_1 WHERE interview = "8.488"
### Context: CREATE TABLE table_12338595_1 (preliminaries VARCHAR, interview VARCHAR) ### Question: What is the preliminary score associated with the interview score of 8.488? ### Answer: SELECT COUNT(preliminaries) FROM table_12338595_1 WHERE interview = "8.488"
What swimsuit score did the state of Virginia contestant achieve?
CREATE TABLE table_12338595_1 (swimsuit VARCHAR, state VARCHAR)
SELECT COUNT(swimsuit) FROM table_12338595_1 WHERE state = "Virginia"
### Context: CREATE TABLE table_12338595_1 (swimsuit VARCHAR, state VARCHAR) ### Question: What swimsuit score did the state of Virginia contestant achieve? ### Answer: SELECT COUNT(swimsuit) FROM table_12338595_1 WHERE state = "Virginia"
Which interview score belongs to the state of Nevada contestant?
CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)
SELECT interview FROM table_12338595_1 WHERE state = "Nevada"
### Context: CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR) ### Question: Which interview score belongs to the state of Nevada contestant? ### Answer: SELECT interview FROM table_12338595_1 WHERE state = "Nevada"
For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time?
CREATE TABLE table_1233808_2 (date_and_time VARCHAR, competition VARCHAR)
SELECT date_and_time FROM table_1233808_2 WHERE competition = "Mithras Cup 2nd Rd (2nd Leg)"
### Context: CREATE TABLE table_1233808_2 (date_and_time VARCHAR, competition VARCHAR) ### Question: For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time? ### Answer: SELECT date_and_time FROM table_1233808_2 WHERE competition = "Mithras Cup 2nd Rd (2nd Leg)"
Is the biggest win recorded as home or away?
CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR)
SELECT home_or_away FROM table_1233808_2 WHERE record = "Biggest win"
### Context: CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR) ### Question: Is the biggest win recorded as home or away? ### Answer: SELECT home_or_away FROM table_1233808_2 WHERE record = "Biggest win"
What competitions record a date and time of 17.04.1920 at 15:00?
CREATE TABLE table_1233808_2 (competition VARCHAR, date_and_time VARCHAR)
SELECT competition FROM table_1233808_2 WHERE date_and_time = "17.04.1920 at 15:00"
### Context: CREATE TABLE table_1233808_2 (competition VARCHAR, date_and_time VARCHAR) ### Question: What competitions record a date and time of 17.04.1920 at 15:00? ### Answer: SELECT competition FROM table_1233808_2 WHERE date_and_time = "17.04.1920 at 15:00"
What records are hit where the opponent is Aylesbury United?
CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_1233808_2 WHERE opponent = "Aylesbury United"
### Context: CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR) ### Question: What records are hit where the opponent is Aylesbury United? ### Answer: SELECT record FROM table_1233808_2 WHERE opponent = "Aylesbury United"
Who was the opponent during the biggest defeat?
CREATE TABLE table_1233808_2 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_1233808_2 WHERE record = "Biggest defeat"
### Context: CREATE TABLE table_1233808_2 (opponent VARCHAR, record VARCHAR) ### Question: Who was the opponent during the biggest defeat? ### Answer: SELECT opponent FROM table_1233808_2 WHERE record = "Biggest defeat"
How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)?
CREATE TABLE table_12369913_1 (result VARCHAR, original_title VARCHAR)
SELECT COUNT(result) FROM table_12369913_1 WHERE original_title = "Ani Ohev Otach Roza (אני אוהב אותך רוזה)"
### Context: CREATE TABLE table_12369913_1 (result VARCHAR, original_title VARCHAR) ### Question: How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)? ### Answer: SELECT COUNT(result) FROM table_12369913_1 WHERE original_title = "Ani Ohev Otach Roza (אני אוהב אותך רוזה)"
What is the power when ch# is tv-26 and dyfj-tv?
CREATE TABLE table_12379297_1 (power__kw_ VARCHAR, ch__number VARCHAR, callsign VARCHAR)
SELECT power__kw_ FROM table_12379297_1 WHERE ch__number = "TV-26" AND callsign = "DYFJ-TV"
### Context: CREATE TABLE table_12379297_1 (power__kw_ VARCHAR, ch__number VARCHAR, callsign VARCHAR) ### Question: What is the power when ch# is tv-26 and dyfj-tv? ### Answer: SELECT power__kw_ FROM table_12379297_1 WHERE ch__number = "TV-26" AND callsign = "DYFJ-TV"
What is the coverage for relay tv-37?
CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, station_type VARCHAR, ch__number VARCHAR)
SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND ch__number = "TV-37"
### Context: CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, station_type VARCHAR, ch__number VARCHAR) ### Question: What is the coverage for relay tv-37? ### Answer: SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND ch__number = "TV-37"
What is the ch# of dwlj-tv?
CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR)
SELECT ch__number FROM table_12379297_1 WHERE callsign = "DWLJ-TV"
### Context: CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR) ### Question: What is the ch# of dwlj-tv? ### Answer: SELECT ch__number FROM table_12379297_1 WHERE callsign = "DWLJ-TV"
What is the coverage of relay 5kw of dyfj-tv?
CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR)
SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND power__kw_ = "5kW" AND callsign = "DYFJ-TV"
### Context: CREATE TABLE table_12379297_1 (coverage__transmitter_site_ VARCHAR, callsign VARCHAR, station_type VARCHAR, power__kw_ VARCHAR) ### Question: What is the coverage of relay 5kw of dyfj-tv? ### Answer: SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = "Relay" AND power__kw_ = "5kW...
What is the running of marlene sanchez?
CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)
SELECT running FROM table_12407546_2 WHERE athlete = "Marlene Sanchez"
### Context: CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR) ### Question: What is the running of marlene sanchez? ### Answer: SELECT running FROM table_12407546_2 WHERE athlete = "Marlene Sanchez"
What is the numberof running wiht pamela zapata?
CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)
SELECT COUNT(running) FROM table_12407546_2 WHERE athlete = "Pamela Zapata"
### Context: CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR) ### Question: What is the numberof running wiht pamela zapata? ### Answer: SELECT COUNT(running) FROM table_12407546_2 WHERE athlete = "Pamela Zapata"
What's Luis Siri's shooting score?
CREATE TABLE table_12407546_1 (shooting VARCHAR, athlete__noc_ VARCHAR)
SELECT shooting FROM table_12407546_1 WHERE athlete__noc_ = "Luis Siri"
### Context: CREATE TABLE table_12407546_1 (shooting VARCHAR, athlete__noc_ VARCHAR) ### Question: What's Luis Siri's shooting score? ### Answer: SELECT shooting FROM table_12407546_1 WHERE athlete__noc_ = "Luis Siri"
What's Eduardo Salas' riding score?
CREATE TABLE table_12407546_1 (riding VARCHAR, athlete__noc_ VARCHAR)
SELECT riding FROM table_12407546_1 WHERE athlete__noc_ = "Eduardo Salas"
### Context: CREATE TABLE table_12407546_1 (riding VARCHAR, athlete__noc_ VARCHAR) ### Question: What's Eduardo Salas' riding score? ### Answer: SELECT riding FROM table_12407546_1 WHERE athlete__noc_ = "Eduardo Salas"
What's the number of the player with 68.46 (1144 pts) in riding?
CREATE TABLE table_12407546_1 (_number INTEGER, riding VARCHAR)
SELECT MAX(_number) FROM table_12407546_1 WHERE riding = "68.46 (1144 pts)"
### Context: CREATE TABLE table_12407546_1 (_number INTEGER, riding VARCHAR) ### Question: What's the number of the player with 68.46 (1144 pts) in riding? ### Answer: SELECT MAX(_number) FROM table_12407546_1 WHERE riding = "68.46 (1144 pts)"
Who's the player with 2:05.63 (1296 pts) swimming score?
CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR)
SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = "2:05.63 (1296 pts)"
### Context: CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR) ### Question: Who's the player with 2:05.63 (1296 pts) swimming score? ### Answer: SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = "2:05.63 (1296 pts)"
What's the fencing score of the player with 9:40.31 (1080 pts) in running?
CREATE TABLE table_12407546_1 (fencing VARCHAR, running VARCHAR)
SELECT fencing FROM table_12407546_1 WHERE running = "9:40.31 (1080 pts)"
### Context: CREATE TABLE table_12407546_1 (fencing VARCHAR, running VARCHAR) ### Question: What's the fencing score of the player with 9:40.31 (1080 pts) in running? ### Answer: SELECT fencing FROM table_12407546_1 WHERE running = "9:40.31 (1080 pts)"
What's Eli Bremer's fencing score?
CREATE TABLE table_12407546_1 (fencing VARCHAR, athlete__noc_ VARCHAR)
SELECT fencing FROM table_12407546_1 WHERE athlete__noc_ = "Eli Bremer"
### Context: CREATE TABLE table_12407546_1 (fencing VARCHAR, athlete__noc_ VARCHAR) ### Question: What's Eli Bremer's fencing score? ### Answer: SELECT fencing FROM table_12407546_1 WHERE athlete__noc_ = "Eli Bremer"
What is the total number of titles written by Casey Johnson?
CREATE TABLE table_12419515_4 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_12419515_4 WHERE written_by = "Casey Johnson"
### Context: CREATE TABLE table_12419515_4 (title VARCHAR, written_by VARCHAR) ### Question: What is the total number of titles written by Casey Johnson? ### Answer: SELECT COUNT(title) FROM table_12419515_4 WHERE written_by = "Casey Johnson"
Who wrote the title that received 1.211 million total viewers?
CREATE TABLE table_12419515_4 (written_by VARCHAR, total_viewers__in_millions_ VARCHAR)
SELECT written_by FROM table_12419515_4 WHERE total_viewers__in_millions_ = "1.211"
### Context: CREATE TABLE table_12419515_4 (written_by VARCHAR, total_viewers__in_millions_ VARCHAR) ### Question: Who wrote the title that received 1.211 million total viewers? ### Answer: SELECT written_by FROM table_12419515_4 WHERE total_viewers__in_millions_ = "1.211"
Who directed the title that was written by Adam Milch?
CREATE TABLE table_12419515_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_12419515_4 WHERE written_by = "Adam Milch"
### Context: CREATE TABLE table_12419515_4 (directed_by VARCHAR, written_by VARCHAR) ### Question: Who directed the title that was written by Adam Milch? ### Answer: SELECT directed_by FROM table_12419515_4 WHERE written_by = "Adam Milch"
How many millions of total viewers watched series #57?
CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, series__number VARCHAR)
SELECT COUNT(total_viewers__in_millions_) FROM table_12419515_4 WHERE series__number = 57
### Context: CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, series__number VARCHAR) ### Question: How many millions of total viewers watched series #57? ### Answer: SELECT COUNT(total_viewers__in_millions_) FROM table_12419515_4 WHERE series__number = 57
How many millions of total viewers watched season #8?
CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, season__number VARCHAR)
SELECT total_viewers__in_millions_ FROM table_12419515_4 WHERE season__number = 8
### Context: CREATE TABLE table_12419515_4 (total_viewers__in_millions_ VARCHAR, season__number VARCHAR) ### Question: How many millions of total viewers watched season #8? ### Answer: SELECT total_viewers__in_millions_ FROM table_12419515_4 WHERE season__number = 8
What is the English spelling of the strongs transliteration: 'adoniyah?
CREATE TABLE table_1242447_2 (english_spelling VARCHAR, strongs_transliteration VARCHAR)
SELECT english_spelling FROM table_1242447_2 WHERE strongs_transliteration = "'Adoniyah"
### Context: CREATE TABLE table_1242447_2 (english_spelling VARCHAR, strongs_transliteration VARCHAR) ### Question: What is the English spelling of the strongs transliteration: 'adoniyah? ### Answer: SELECT english_spelling FROM table_1242447_2 WHERE strongs_transliteration = "'Adoniyah"
What is the hebrew word listed for strongs # 5418?
CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs__number VARCHAR)
SELECT hebrew_word FROM table_1242447_2 WHERE strongs__number = "5418"
### Context: CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs__number VARCHAR) ### Question: What is the hebrew word listed for strongs # 5418? ### Answer: SELECT hebrew_word FROM table_1242447_2 WHERE strongs__number = "5418"
List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu
CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR)
SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = "'adown [# 113] & Yahu"
### Context: CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs_words_compounded VARCHAR) ### Question: List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu ### Answer: SELECT hebrew_word FROM table_1242447_2 WHERE strongs_words_compounded = "'adown [# 113] & Yahu"
What is the strongs # for the hebrew word יִרְמְיָה?
CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR)
SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה"
### Context: CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR) ### Question: What is the strongs # for the hebrew word יִרְמְיָה? ### Answer: SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה"
What is the strongs # for the english spelling of the word jirmejah?
CREATE TABLE table_1242447_2 (strongs__number VARCHAR, english_spelling VARCHAR)
SELECT strongs__number FROM table_1242447_2 WHERE english_spelling = "Jirmejah"
### Context: CREATE TABLE table_1242447_2 (strongs__number VARCHAR, english_spelling VARCHAR) ### Question: What is the strongs # for the english spelling of the word jirmejah? ### Answer: SELECT strongs__number FROM table_1242447_2 WHERE english_spelling = "Jirmejah"
What is the latest year that 6th, Heartland is regular season?
CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)
SELECT MAX(year) FROM table_1241987_1 WHERE regular_season = "6th, Heartland"
### Context: CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR) ### Question: What is the latest year that 6th, Heartland is regular season? ### Answer: SELECT MAX(year) FROM table_1241987_1 WHERE regular_season = "6th, Heartland"
Which regular season contains playoffs in division finals?
CREATE TABLE table_1241987_1 (regular_season VARCHAR, playoffs VARCHAR)
SELECT regular_season FROM table_1241987_1 WHERE playoffs = "division Finals"
### Context: CREATE TABLE table_1241987_1 (regular_season VARCHAR, playoffs VARCHAR) ### Question: Which regular season contains playoffs in division finals? ### Answer: SELECT regular_season FROM table_1241987_1 WHERE playoffs = "division Finals"
What is the lowest year that regular season is 4th, Rocky Mountain?
CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)
SELECT MIN(year) FROM table_1241987_1 WHERE regular_season = "4th, Rocky Mountain"
### Context: CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR) ### Question: What is the lowest year that regular season is 4th, Rocky Mountain? ### Answer: SELECT MIN(year) FROM table_1241987_1 WHERE regular_season = "4th, Rocky Mountain"
How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up?
CREATE TABLE table_12444503_1 (lost_to_eventual_winner VARCHAR, lost_to_eventual_runner_up VARCHAR)
SELECT COUNT(lost_to_eventual_winner) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = "ASC Jeanne d'Arc"
### Context: CREATE TABLE table_12444503_1 (lost_to_eventual_winner VARCHAR, lost_to_eventual_runner_up VARCHAR) ### Question: How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up? ### Answer: SELECT COUNT(lost_to_eventual_winner) FROM table_12444503_1 WHERE lost_to_ev...
What's the number of seasons i which USC Bassam lost to eventual runner-up?
CREATE TABLE table_12444503_1 (season VARCHAR, lost_to_eventual_runner_up VARCHAR)
SELECT COUNT(season) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = "USC Bassam"
### Context: CREATE TABLE table_12444503_1 (season VARCHAR, lost_to_eventual_runner_up VARCHAR) ### Question: What's the number of seasons i which USC Bassam lost to eventual runner-up? ### Answer: SELECT COUNT(season) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = "USC Bassam"
In which season was Jeanne d'Arc (Bamako) the runner-up?
CREATE TABLE table_12444503_1 (season VARCHAR, runner_up VARCHAR)
SELECT season FROM table_12444503_1 WHERE runner_up = "Jeanne d'Arc (Bamako)"
### Context: CREATE TABLE table_12444503_1 (season VARCHAR, runner_up VARCHAR) ### Question: In which season was Jeanne d'Arc (Bamako) the runner-up? ### Answer: SELECT season FROM table_12444503_1 WHERE runner_up = "Jeanne d'Arc (Bamako)"
What was the regular season listing in 2007?
CREATE TABLE table_1243601_1 (regular_season VARCHAR, year VARCHAR)
SELECT regular_season FROM table_1243601_1 WHERE year = "2007"
### Context: CREATE TABLE table_1243601_1 (regular_season VARCHAR, year VARCHAR) ### Question: What was the regular season listing in 2007? ### Answer: SELECT regular_season FROM table_1243601_1 WHERE year = "2007"
What was the playoff result in 2002?
CREATE TABLE table_1243601_1 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_1243601_1 WHERE year = "2002"
### Context: CREATE TABLE table_1243601_1 (playoffs VARCHAR, year VARCHAR) ### Question: What was the playoff result in 2002? ### Answer: SELECT playoffs FROM table_1243601_1 WHERE year = "2002"
What was the open cup results in 2004?
CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR)
SELECT open_cup FROM table_1243601_1 WHERE year = "2004"
### Context: CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR) ### Question: What was the open cup results in 2004? ### Answer: SELECT open_cup FROM table_1243601_1 WHERE year = "2004"
How many divisions were listed in 2006?
CREATE TABLE table_1243601_1 (division VARCHAR, year VARCHAR)
SELECT COUNT(division) FROM table_1243601_1 WHERE year = "2006"
### Context: CREATE TABLE table_1243601_1 (division VARCHAR, year VARCHAR) ### Question: How many divisions were listed in 2006? ### Answer: SELECT COUNT(division) FROM table_1243601_1 WHERE year = "2006"
Kevin lucas appears in which seasons?
CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Kevin Lucas"
### Context: CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR) ### Question: Kevin lucas appears in which seasons? ### Answer: SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Kevin Lucas"
How many people named Nick Lucas are on the show?
CREATE TABLE table_12441518_1 (portrayed_by VARCHAR, character VARCHAR)
SELECT COUNT(portrayed_by) FROM table_12441518_1 WHERE character = "Nick Lucas"
### Context: CREATE TABLE table_12441518_1 (portrayed_by VARCHAR, character VARCHAR) ### Question: How many people named Nick Lucas are on the show? ### Answer: SELECT COUNT(portrayed_by) FROM table_12441518_1 WHERE character = "Nick Lucas"
What seasons does stella malone appear?
CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Stella Malone"
### Context: CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR) ### Question: What seasons does stella malone appear? ### Answer: SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Stella Malone"
What seasons does Nick lucas appear?
CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
### Context: CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR) ### Question: What seasons does Nick lucas appear? ### Answer: SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
What seasons does Kevin Jonas appear?
CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, portrayed_by VARCHAR)
SELECT main_cast_seasons FROM table_12441518_1 WHERE portrayed_by = "Kevin Jonas"
### Context: CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, portrayed_by VARCHAR) ### Question: What seasons does Kevin Jonas appear? ### Answer: SELECT main_cast_seasons FROM table_12441518_1 WHERE portrayed_by = "Kevin Jonas"
What seasons does Nick Lucas appear in?
CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
### Context: CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR) ### Question: What seasons does Nick Lucas appear in? ### Answer: SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
How many networks aired the franchise in 1981 only?
CREATE TABLE table_12438767_1 (network VARCHAR, dates_aired VARCHAR)
SELECT COUNT(network) FROM table_12438767_1 WHERE dates_aired = "1981"
### Context: CREATE TABLE table_12438767_1 (network VARCHAR, dates_aired VARCHAR) ### Question: How many networks aired the franchise in 1981 only? ### Answer: SELECT COUNT(network) FROM table_12438767_1 WHERE dates_aired = "1981"
In how many networks the local name of the franchise was "in sickness and in health"?
CREATE TABLE table_12438767_1 (network VARCHAR, local_name VARCHAR)
SELECT COUNT(network) FROM table_12438767_1 WHERE local_name = "In Sickness and in Health"
### Context: CREATE TABLE table_12438767_1 (network VARCHAR, local_name VARCHAR) ### Question: In how many networks the local name of the franchise was "in sickness and in health"? ### Answer: SELECT COUNT(network) FROM table_12438767_1 WHERE local_name = "In Sickness and in Health"
What is the title of season 3 ep# 12?
CREATE TABLE table_12451376_3 (title VARCHAR, season_3_ep__number VARCHAR)
SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12
### Context: CREATE TABLE table_12451376_3 (title VARCHAR, season_3_ep__number VARCHAR) ### Question: What is the title of season 3 ep# 12? ### Answer: SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12
What is the length of the track named michigan international speedway?
CREATE TABLE table_1245148_1 (length VARCHAR, track_name VARCHAR)
SELECT length FROM table_1245148_1 WHERE track_name = "Michigan International Speedway"
### Context: CREATE TABLE table_1245148_1 (length VARCHAR, track_name VARCHAR) ### Question: What is the length of the track named michigan international speedway? ### Answer: SELECT length FROM table_1245148_1 WHERE track_name = "Michigan International Speedway"
Where is the track that opened in 1995?
CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)
SELECT location FROM table_1245148_1 WHERE year_opened = 1995
### Context: CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR) ### Question: Where is the track that opened in 1995? ### Answer: SELECT location FROM table_1245148_1 WHERE year_opened = 1995
What is the location of the daytona international speedway?
CREATE TABLE table_1245148_1 (location VARCHAR, track_name VARCHAR)
SELECT location FROM table_1245148_1 WHERE track_name = "Daytona International Speedway"
### Context: CREATE TABLE table_1245148_1 (location VARCHAR, track_name VARCHAR) ### Question: What is the location of the daytona international speedway? ### Answer: SELECT location FROM table_1245148_1 WHERE track_name = "Daytona International Speedway"
What is the location of the track that opened in 1950?
CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)
SELECT location FROM table_1245148_1 WHERE year_opened = 1950
### Context: CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR) ### Question: What is the location of the track that opened in 1950? ### Answer: SELECT location FROM table_1245148_1 WHERE year_opened = 1950
What is the power of the 3.2i v8 32v?
CREATE TABLE table_1245350_1 (power VARCHAR, quattroporte_iv VARCHAR)
SELECT power FROM table_1245350_1 WHERE quattroporte_iv = "3.2i V8 32v"
### Context: CREATE TABLE table_1245350_1 (power VARCHAR, quattroporte_iv VARCHAR) ### Question: What is the power of the 3.2i v8 32v? ### Answer: SELECT power FROM table_1245350_1 WHERE quattroporte_iv = "3.2i V8 32v"
What type of quattroporte iv only produced 340 units?
CREATE TABLE table_1245350_1 (quattroporte_iv VARCHAR, units_produced VARCHAR)
SELECT quattroporte_iv FROM table_1245350_1 WHERE units_produced = 340
### Context: CREATE TABLE table_1245350_1 (quattroporte_iv VARCHAR, units_produced VARCHAR) ### Question: What type of quattroporte iv only produced 340 units? ### Answer: SELECT quattroporte_iv FROM table_1245350_1 WHERE units_produced = 340
When were 668 units produced?
CREATE TABLE table_1245350_1 (production_period VARCHAR, units_produced VARCHAR)
SELECT production_period FROM table_1245350_1 WHERE units_produced = 668
### Context: CREATE TABLE table_1245350_1 (production_period VARCHAR, units_produced VARCHAR) ### Question: When were 668 units produced? ### Answer: SELECT production_period FROM table_1245350_1 WHERE units_produced = 668
what is the overall record when the club is dallas burn?
CREATE TABLE table_1246208_5 (overall_record VARCHAR, club VARCHAR)
SELECT overall_record FROM table_1246208_5 WHERE club = "Dallas Burn"
### Context: CREATE TABLE table_1246208_5 (overall_record VARCHAR, club VARCHAR) ### Question: what is the overall record when the club is dallas burn? ### Answer: SELECT overall_record FROM table_1246208_5 WHERE club = "Dallas Burn"
what is the goals for when the club is new england revolution?
CREATE TABLE table_1246208_5 (goals_for VARCHAR, club VARCHAR)
SELECT goals_for FROM table_1246208_5 WHERE club = "New England Revolution"
### Context: CREATE TABLE table_1246208_5 (goals_for VARCHAR, club VARCHAR) ### Question: what is the goals for when the club is new england revolution? ### Answer: SELECT goals_for FROM table_1246208_5 WHERE club = "New England Revolution"
What was the total prize money where John Tabatabai was the runner-up?
CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
### Context: CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR) ### Question: What was the total prize money where John Tabatabai was the runner-up? ### Answer: SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
Who is the winner where the losing hand is Ah 7s?
CREATE TABLE table_12454156_1 (winner VARCHAR, losing_hand VARCHAR)
SELECT winner FROM table_12454156_1 WHERE losing_hand = "Ah 7s"
### Context: CREATE TABLE table_12454156_1 (winner VARCHAR, losing_hand VARCHAR) ### Question: Who is the winner where the losing hand is Ah 7s? ### Answer: SELECT winner FROM table_12454156_1 WHERE losing_hand = "Ah 7s"
What was the losing hand where the winning hand was 7h 7s?
CREATE TABLE table_12454156_1 (losing_hand VARCHAR, winning_hand VARCHAR)
SELECT losing_hand FROM table_12454156_1 WHERE winning_hand = "7h 7s"
### Context: CREATE TABLE table_12454156_1 (losing_hand VARCHAR, winning_hand VARCHAR) ### Question: What was the losing hand where the winning hand was 7h 7s? ### Answer: SELECT losing_hand FROM table_12454156_1 WHERE winning_hand = "7h 7s"
How many losing hands are there before 2007?
CREATE TABLE table_12454156_1 (losing_hand VARCHAR, year VARCHAR)
SELECT COUNT(losing_hand) FROM table_12454156_1 WHERE year = 2007
### Context: CREATE TABLE table_12454156_1 (losing_hand VARCHAR, year VARCHAR) ### Question: How many losing hands are there before 2007? ### Answer: SELECT COUNT(losing_hand) FROM table_12454156_1 WHERE year = 2007
When Fabrizio Baldassari is the runner-up what is the total prize money?
CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"
### Context: CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR) ### Question: When Fabrizio Baldassari is the runner-up what is the total prize money? ### Answer: SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"
What is the August 15, 2012 population when the population density of 2012 is 307?
CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR)
SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307
### Context: CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 INTEGER, population_density_2012__km_2__ VARCHAR) ### Question: What is the August 15, 2012 population when the population density of 2012 is 307? ### Answer: SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_d...
What is the sector when the population change 2002-2012 (%) is 79.6?
CREATE TABLE table_12496904_1 (sector VARCHAR, population_change_2002_2012___percentage_ VARCHAR)
SELECT sector FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "79.6"
### Context: CREATE TABLE table_12496904_1 (sector VARCHAR, population_change_2002_2012___percentage_ VARCHAR) ### Question: What is the sector when the population change 2002-2012 (%) is 79.6? ### Answer: SELECT sector FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "79.6"
For the sector of Gatunda how many entires are show for the August 15, 2012 population?
CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 VARCHAR, sector VARCHAR)
SELECT COUNT(population_august_15), _2012 FROM table_12496904_1 WHERE sector = "Gatunda"
### Context: CREATE TABLE table_12496904_1 (_2012 VARCHAR, population_august_15 VARCHAR, sector VARCHAR) ### Question: For the sector of Gatunda how many entires are show for the August 15, 2012 population? ### Answer: SELECT COUNT(population_august_15), _2012 FROM table_12496904_1 WHERE sector = "Gatunda"
When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors?
CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR)
SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = "35.5"
### Context: CREATE TABLE table_12496904_1 (_2012 VARCHAR, rank_in_nyagatare_sectors INTEGER, population_change_2002_2012___percentage_ VARCHAR) ### Question: When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? ### Answer: SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496...
What is the population density for 2012 for Gatunda sector?
CREATE TABLE table_12496904_1 (population_density_2012__km_2__ INTEGER, sector VARCHAR)
SELECT MIN(population_density_2012__km_2__) FROM table_12496904_1 WHERE sector = "Gatunda"
### Context: CREATE TABLE table_12496904_1 (population_density_2012__km_2__ INTEGER, sector VARCHAR) ### Question: What is the population density for 2012 for Gatunda sector? ### Answer: SELECT MIN(population_density_2012__km_2__) FROM table_12496904_1 WHERE sector = "Gatunda"
What is the highest population for the
CREATE TABLE table_12496904_1 (_august_15 VARCHAR, _2002 VARCHAR, population INTEGER)
SELECT MAX(population), _august_15, _2002 FROM table_12496904_1
### Context: CREATE TABLE table_12496904_1 (_august_15 VARCHAR, _2002 VARCHAR, population INTEGER) ### Question: What is the highest population for the ### Answer: SELECT MAX(population), _august_15, _2002 FROM table_12496904_1
What is the biggended for 1947?
CREATE TABLE table_12526990_1 (biggenden INTEGER, year VARCHAR)
SELECT MAX(biggenden) FROM table_12526990_1 WHERE year = 1947
### Context: CREATE TABLE table_12526990_1 (biggenden INTEGER, year VARCHAR) ### Question: What is the biggended for 1947? ### Answer: SELECT MAX(biggenden) FROM table_12526990_1 WHERE year = 1947
What is the monto where the total region is 11230?
CREATE TABLE table_12526990_1 (monto VARCHAR, total_region VARCHAR)
SELECT COUNT(monto) FROM table_12526990_1 WHERE total_region = 11230
### Context: CREATE TABLE table_12526990_1 (monto VARCHAR, total_region VARCHAR) ### Question: What is the monto where the total region is 11230? ### Answer: SELECT COUNT(monto) FROM table_12526990_1 WHERE total_region = 11230
What is the gayndah when perry is 304?
CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR)
SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304
### Context: CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR) ### Question: What is the gayndah when perry is 304? ### Answer: SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304
What is the minimum mundubbera when biggenden is 1882
CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR)
SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882
### Context: CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR) ### Question: What is the minimum mundubbera when biggenden is 1882 ### Answer: SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882
The Dallas Burn had a 12-9-7 record and what number of goals for?
CREATE TABLE table_1253396_5 (goals_for VARCHAR, overall_record VARCHAR)
SELECT goals_for FROM table_1253396_5 WHERE overall_record = "12-9-7"
### Context: CREATE TABLE table_1253396_5 (goals_for VARCHAR, overall_record VARCHAR) ### Question: The Dallas Burn had a 12-9-7 record and what number of goals for? ### Answer: SELECT goals_for FROM table_1253396_5 WHERE overall_record = "12-9-7"
What is the highest value under the column goals against?
CREATE TABLE table_1255110_7 (goals_against INTEGER)
SELECT MAX(goals_against) FROM table_1255110_7
### Context: CREATE TABLE table_1255110_7 (goals_against INTEGER) ### Question: What is the highest value under the column goals against? ### Answer: SELECT MAX(goals_against) FROM table_1255110_7
what is the date (from) where date (to) is 1919?
CREATE TABLE table_12562214_1 (date__from_ VARCHAR, date__to_ VARCHAR)
SELECT date__from_ FROM table_12562214_1 WHERE date__to_ = "1919"
### Context: CREATE TABLE table_12562214_1 (date__from_ VARCHAR, date__to_ VARCHAR) ### Question: what is the date (from) where date (to) is 1919? ### Answer: SELECT date__from_ FROM table_12562214_1 WHERE date__to_ = "1919"
how many times is the date (to) 1919?
CREATE TABLE table_12562214_1 (notes VARCHAR, date__to_ VARCHAR)
SELECT COUNT(notes) FROM table_12562214_1 WHERE date__to_ = "1919"
### Context: CREATE TABLE table_12562214_1 (notes VARCHAR, date__to_ VARCHAR) ### Question: how many times is the date (to) 1919? ### Answer: SELECT COUNT(notes) FROM table_12562214_1 WHERE date__to_ = "1919"
what is the date (from) where the notes are apeldoornsche tramweg-maatschappij?
CREATE TABLE table_12562214_1 (date__from_ VARCHAR, notes VARCHAR)
SELECT date__from_ FROM table_12562214_1 WHERE notes = "Apeldoornsche Tramweg-Maatschappij"
### Context: CREATE TABLE table_12562214_1 (date__from_ VARCHAR, notes VARCHAR) ### Question: what is the date (from) where the notes are apeldoornsche tramweg-maatschappij? ### Answer: SELECT date__from_ FROM table_12562214_1 WHERE notes = "Apeldoornsche Tramweg-Maatschappij"
how many notes are form the date (from) 14 march 1910?
CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)
SELECT COUNT(notes) FROM table_12562214_1 WHERE date__from_ = "14 March 1910"
### Context: CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR) ### Question: how many notes are form the date (from) 14 march 1910? ### Answer: SELECT COUNT(notes) FROM table_12562214_1 WHERE date__from_ = "14 March 1910"