Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
28,500
<question>: What is the name of the player who played in 2009 only? <context>: CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR)
SELECT player_name FROM table_12321870_32 WHERE period = "2009"
28,501
<question>: How many goals have been scored by Tiago Gomes? <context>: CREATE TABLE table_12321870_32 (goals VARCHAR, player_name VARCHAR)
SELECT goals FROM table_12321870_32 WHERE player_name = "Tiago Gomes"
28,502
<question>: Which athlete is from Mexico City? <context>: CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
SELECT athlete FROM table_1231316_7 WHERE location = "Mexico City"
28,503
<question>: What is the athlete from Edwardsville? <context>: CREATE TABLE table_1231316_7 (athlete VARCHAR, location VARCHAR)
SELECT athlete FROM table_1231316_7 WHERE location = "Edwardsville"
28,504
<question>: What was the wind on 21 june 1976? <context>: CREATE TABLE table_1231316_7 (wind__m_s_ VARCHAR, date VARCHAR)
SELECT wind__m_s_ FROM table_1231316_7 WHERE date = "21 June 1976"
28,505
<question>: What is the number of locations with the fastest times of 11.13? <context>: CREATE TABLE table_1231316_7 (location VARCHAR, fastest_time__s_ VARCHAR)
SELECT COUNT(location) FROM table_1231316_7 WHERE fastest_time__s_ = "11.13"
28,506
<question>: What's the title of the episode with a broadcast order s04 e01? <context>: CREATE TABLE table_1231892_4 (title VARCHAR, broadcast_order VARCHAR)
SELECT title FROM table_1231892_4 WHERE broadcast_order = "S04 E01"
28,507
<question>: What's the number of episodes with a broadcast order s04 e07? <context>: 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"
28,508
<question>: what's the total number of episodes with a US air date of january 15, 2005? <context>: 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"
28,509
<question>: What's the original air date of the episode with a broadcast order s04 e01? <context>: 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"
28,510
<question>: What's the series number of the episode with a broadcast order s04 e07? <context>: 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"
28,511
<question>: Which police force serves a population of 17000? <context>: CREATE TABLE table_12340907_1 (police_force VARCHAR, population VARCHAR)
SELECT police_force FROM table_12340907_1 WHERE population = 17000
28,512
<question>: When total costs (2005) are $700,116, what is the cost per capita? <context>: 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"
28,513
<question>: What is the cost per capita in the Courtenay municipality? <context>: CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, municipality VARCHAR)
SELECT cost_per_capita FROM table_12340907_1 WHERE municipality = "Courtenay"
28,514
<question>: Which crime rate per 1,000 people is associated with a cost per capita of $152? <context>: 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"
28,515
<question>: If the number of police officers is 94, what is the lowest population number? <context>: CREATE TABLE table_12340907_1 (population INTEGER, police_officers VARCHAR)
SELECT MIN(population) FROM table_12340907_1 WHERE police_officers = 94
28,516
<question>: What is the value of total costs (2005) in the Coldstream municipality? <context>: CREATE TABLE table_12340907_1 (total_costs__2005_ VARCHAR, municipality VARCHAR)
SELECT total_costs__2005_ FROM table_12340907_1 WHERE municipality = "Coldstream"
28,517
<question>: What is the interview score for the state of Virginia? <context>: CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)
SELECT interview FROM table_12338595_1 WHERE state = "Virginia"
28,518
<question>: How much is the average score for New York state? <context>: CREATE TABLE table_12338595_1 (average VARCHAR, state VARCHAR)
SELECT average FROM table_12338595_1 WHERE state = "New York"
28,519
<question>: Which interview score corresponds with the evening gown score of 8.977? <context>: CREATE TABLE table_12338595_1 (interview VARCHAR, evening_gown VARCHAR)
SELECT interview FROM table_12338595_1 WHERE evening_gown = "8.977"
28,520
<question>: What is the preliminary score associated with the interview score of 8.488? <context>: CREATE TABLE table_12338595_1 (preliminaries VARCHAR, interview VARCHAR)
SELECT COUNT(preliminaries) FROM table_12338595_1 WHERE interview = "8.488"
28,521
<question>: What swimsuit score did the state of Virginia contestant achieve? <context>: CREATE TABLE table_12338595_1 (swimsuit VARCHAR, state VARCHAR)
SELECT COUNT(swimsuit) FROM table_12338595_1 WHERE state = "Virginia"
28,522
<question>: Which interview score belongs to the state of Nevada contestant? <context>: CREATE TABLE table_12338595_1 (interview VARCHAR, state VARCHAR)
SELECT interview FROM table_12338595_1 WHERE state = "Nevada"
28,523
<question>: For the competition Mithras Cup 2nd Rd (2nd Leg), what is the date and time? <context>: 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)"
28,524
<question>: Is the biggest win recorded as home or away? <context>: CREATE TABLE table_1233808_2 (home_or_away VARCHAR, record VARCHAR)
SELECT home_or_away FROM table_1233808_2 WHERE record = "Biggest win"
28,525
<question>: What competitions record a date and time of 17.04.1920 at 15:00? <context>: 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"
28,526
<question>: What records are hit where the opponent is Aylesbury United? <context>: CREATE TABLE table_1233808_2 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_1233808_2 WHERE opponent = "Aylesbury United"
28,527
<question>: Who was the opponent during the biggest defeat? <context>: CREATE TABLE table_1233808_2 (opponent VARCHAR, record VARCHAR)
SELECT opponent FROM table_1233808_2 WHERE record = "Biggest defeat"
28,528
<question>: How many results are there with the original title of ani ohev otach roza (אני אוהב אותך רוזה)? <context>: CREATE TABLE table_12369913_1 (result VARCHAR, original_title VARCHAR)
SELECT COUNT(result) FROM table_12369913_1 WHERE original_title = "Ani Ohev Otach Roza (אני אוהב אותך רוזה)"
28,529
<question>: What is the power when ch# is tv-26 and dyfj-tv? <context>: 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"
28,530
<question>: What is the coverage for relay tv-37? <context>: 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"
28,531
<question>: What is the ch# of dwlj-tv? <context>: CREATE TABLE table_12379297_1 (ch__number VARCHAR, callsign VARCHAR)
SELECT ch__number FROM table_12379297_1 WHERE callsign = "DWLJ-TV"
28,532
<question>: What is the coverage of relay 5kw of dyfj-tv? <context>: 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"
28,533
<question>: What is the running of marlene sanchez? <context>: CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)
SELECT running FROM table_12407546_2 WHERE athlete = "Marlene Sanchez"
28,534
<question>: What is the numberof running wiht pamela zapata? <context>: CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)
SELECT COUNT(running) FROM table_12407546_2 WHERE athlete = "Pamela Zapata"
28,535
<question>: What's Luis Siri's shooting score? <context>: CREATE TABLE table_12407546_1 (shooting VARCHAR, athlete__noc_ VARCHAR)
SELECT shooting FROM table_12407546_1 WHERE athlete__noc_ = "Luis Siri"
28,536
<question>: What's Eduardo Salas' riding score? <context>: CREATE TABLE table_12407546_1 (riding VARCHAR, athlete__noc_ VARCHAR)
SELECT riding FROM table_12407546_1 WHERE athlete__noc_ = "Eduardo Salas"
28,537
<question>: What's the number of the player with 68.46 (1144 pts) in riding? <context>: CREATE TABLE table_12407546_1 (_number INTEGER, riding VARCHAR)
SELECT MAX(_number) FROM table_12407546_1 WHERE riding = "68.46 (1144 pts)"
28,538
<question>: Who's the player with 2:05.63 (1296 pts) swimming score? <context>: CREATE TABLE table_12407546_1 (athlete__noc_ VARCHAR, swimming VARCHAR)
SELECT athlete__noc_ FROM table_12407546_1 WHERE swimming = "2:05.63 (1296 pts)"
28,539
<question>: What's the fencing score of the player with 9:40.31 (1080 pts) in running? <context>: CREATE TABLE table_12407546_1 (fencing VARCHAR, running VARCHAR)
SELECT fencing FROM table_12407546_1 WHERE running = "9:40.31 (1080 pts)"
28,540
<question>: What's Eli Bremer's fencing score? <context>: CREATE TABLE table_12407546_1 (fencing VARCHAR, athlete__noc_ VARCHAR)
SELECT fencing FROM table_12407546_1 WHERE athlete__noc_ = "Eli Bremer"
28,541
<question>: What is the total number of titles written by Casey Johnson? <context>: CREATE TABLE table_12419515_4 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_12419515_4 WHERE written_by = "Casey Johnson"
28,542
<question>: Who wrote the title that received 1.211 million total viewers? <context>: 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"
28,543
<question>: Who directed the title that was written by Adam Milch? <context>: CREATE TABLE table_12419515_4 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_12419515_4 WHERE written_by = "Adam Milch"
28,544
<question>: How many millions of total viewers watched series #57? <context>: 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
28,545
<question>: How many millions of total viewers watched season #8? <context>: 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
28,546
<question>: What is the English spelling of the strongs transliteration: 'adoniyah? <context>: CREATE TABLE table_1242447_2 (english_spelling VARCHAR, strongs_transliteration VARCHAR)
SELECT english_spelling FROM table_1242447_2 WHERE strongs_transliteration = "'Adoniyah"
28,547
<question>: What is the hebrew word listed for strongs # 5418? <context>: CREATE TABLE table_1242447_2 (hebrew_word VARCHAR, strongs__number VARCHAR)
SELECT hebrew_word FROM table_1242447_2 WHERE strongs__number = "5418"
28,548
<question>: List the hebrew word for the strongs words compounded of 'adown [# 113] & yahu <context>: 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"
28,549
<question>: What is the strongs # for the hebrew word יִרְמְיָה? <context>: CREATE TABLE table_1242447_2 (strongs__number VARCHAR, hebrew_word VARCHAR)
SELECT strongs__number FROM table_1242447_2 WHERE hebrew_word = "יִרְמְיָה"
28,550
<question>: What is the strongs # for the english spelling of the word jirmejah? <context>: CREATE TABLE table_1242447_2 (strongs__number VARCHAR, english_spelling VARCHAR)
SELECT strongs__number FROM table_1242447_2 WHERE english_spelling = "Jirmejah"
28,551
<question>: What is the latest year that 6th, Heartland is regular season? <context>: CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)
SELECT MAX(year) FROM table_1241987_1 WHERE regular_season = "6th, Heartland"
28,552
<question>: Which regular season contains playoffs in division finals? <context>: CREATE TABLE table_1241987_1 (regular_season VARCHAR, playoffs VARCHAR)
SELECT regular_season FROM table_1241987_1 WHERE playoffs = "division Finals"
28,553
<question>: What is the lowest year that regular season is 4th, Rocky Mountain? <context>: CREATE TABLE table_1241987_1 (year INTEGER, regular_season VARCHAR)
SELECT MIN(year) FROM table_1241987_1 WHERE regular_season = "4th, Rocky Mountain"
28,554
<question>: How many players lost to eventual winner in the season when ASC Jeanne d'Arc lost to eventual runner up? <context>: 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"
28,555
<question>: What's the number of seasons i which USC Bassam lost to eventual runner-up? <context>: 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"
28,556
<question>: In which season was Jeanne d'Arc (Bamako) the runner-up? <context>: CREATE TABLE table_12444503_1 (season VARCHAR, runner_up VARCHAR)
SELECT season FROM table_12444503_1 WHERE runner_up = "Jeanne d'Arc (Bamako)"
28,557
<question>: What was the regular season listing in 2007? <context>: CREATE TABLE table_1243601_1 (regular_season VARCHAR, year VARCHAR)
SELECT regular_season FROM table_1243601_1 WHERE year = "2007"
28,558
<question>: What was the playoff result in 2002? <context>: CREATE TABLE table_1243601_1 (playoffs VARCHAR, year VARCHAR)
SELECT playoffs FROM table_1243601_1 WHERE year = "2002"
28,559
<question>: What was the open cup results in 2004? <context>: CREATE TABLE table_1243601_1 (open_cup VARCHAR, year VARCHAR)
SELECT open_cup FROM table_1243601_1 WHERE year = "2004"
28,560
<question>: How many divisions were listed in 2006? <context>: CREATE TABLE table_1243601_1 (division VARCHAR, year VARCHAR)
SELECT COUNT(division) FROM table_1243601_1 WHERE year = "2006"
28,561
<question>: Kevin lucas appears in which seasons? <context>: CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Kevin Lucas"
28,562
<question>: How many people named Nick Lucas are on the show? <context>: CREATE TABLE table_12441518_1 (portrayed_by VARCHAR, character VARCHAR)
SELECT COUNT(portrayed_by) FROM table_12441518_1 WHERE character = "Nick Lucas"
28,563
<question>: What seasons does stella malone appear? <context>: CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Stella Malone"
28,564
<question>: What seasons does Nick lucas appear? <context>: CREATE TABLE table_12441518_1 (main_cast_seasons VARCHAR, character VARCHAR)
SELECT main_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
28,565
<question>: What seasons does Kevin Jonas appear? <context>: 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"
28,566
<question>: What seasons does Nick Lucas appear in? <context>: CREATE TABLE table_12441518_1 (recurring_cast_seasons VARCHAR, character VARCHAR)
SELECT recurring_cast_seasons FROM table_12441518_1 WHERE character = "Nick Lucas"
28,567
<question>: How many networks aired the franchise in 1981 only? <context>: CREATE TABLE table_12438767_1 (network VARCHAR, dates_aired VARCHAR)
SELECT COUNT(network) FROM table_12438767_1 WHERE dates_aired = "1981"
28,568
<question>: In how many networks the local name of the franchise was "in sickness and in health"? <context>: 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"
28,569
<question>: What is the title of season 3 ep# 12? <context>: CREATE TABLE table_12451376_3 (title VARCHAR, season_3_ep__number VARCHAR)
SELECT title FROM table_12451376_3 WHERE season_3_ep__number = 12
28,570
<question>: What is the length of the track named michigan international speedway? <context>: CREATE TABLE table_1245148_1 (length VARCHAR, track_name VARCHAR)
SELECT length FROM table_1245148_1 WHERE track_name = "Michigan International Speedway"
28,571
<question>: Where is the track that opened in 1995? <context>: CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)
SELECT location FROM table_1245148_1 WHERE year_opened = 1995
28,572
<question>: What is the location of the daytona international speedway? <context>: CREATE TABLE table_1245148_1 (location VARCHAR, track_name VARCHAR)
SELECT location FROM table_1245148_1 WHERE track_name = "Daytona International Speedway"
28,573
<question>: What is the location of the track that opened in 1950? <context>: CREATE TABLE table_1245148_1 (location VARCHAR, year_opened VARCHAR)
SELECT location FROM table_1245148_1 WHERE year_opened = 1950
28,574
<question>: What is the power of the 3.2i v8 32v? <context>: CREATE TABLE table_1245350_1 (power VARCHAR, quattroporte_iv VARCHAR)
SELECT power FROM table_1245350_1 WHERE quattroporte_iv = "3.2i V8 32v"
28,575
<question>: What type of quattroporte iv only produced 340 units? <context>: CREATE TABLE table_1245350_1 (quattroporte_iv VARCHAR, units_produced VARCHAR)
SELECT quattroporte_iv FROM table_1245350_1 WHERE units_produced = 340
28,576
<question>: When were 668 units produced? <context>: CREATE TABLE table_1245350_1 (production_period VARCHAR, units_produced VARCHAR)
SELECT production_period FROM table_1245350_1 WHERE units_produced = 668
28,577
<question>: what is the overall record when the club is dallas burn? <context>: CREATE TABLE table_1246208_5 (overall_record VARCHAR, club VARCHAR)
SELECT overall_record FROM table_1246208_5 WHERE club = "Dallas Burn"
28,578
<question>: what is the goals for when the club is new england revolution? <context>: CREATE TABLE table_1246208_5 (goals_for VARCHAR, club VARCHAR)
SELECT goals_for FROM table_1246208_5 WHERE club = "New England Revolution"
28,579
<question>: What was the total prize money where John Tabatabai was the runner-up? <context>: CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "John Tabatabai"
28,580
<question>: Who is the winner where the losing hand is Ah 7s? <context>: CREATE TABLE table_12454156_1 (winner VARCHAR, losing_hand VARCHAR)
SELECT winner FROM table_12454156_1 WHERE losing_hand = "Ah 7s"
28,581
<question>: What was the losing hand where the winning hand was 7h 7s? <context>: CREATE TABLE table_12454156_1 (losing_hand VARCHAR, winning_hand VARCHAR)
SELECT losing_hand FROM table_12454156_1 WHERE winning_hand = "7h 7s"
28,582
<question>: How many losing hands are there before 2007? <context>: CREATE TABLE table_12454156_1 (losing_hand VARCHAR, year VARCHAR)
SELECT COUNT(losing_hand) FROM table_12454156_1 WHERE year = 2007
28,583
<question>: When Fabrizio Baldassari is the runner-up what is the total prize money? <context>: CREATE TABLE table_12454156_1 (prize_money VARCHAR, runner_up VARCHAR)
SELECT prize_money FROM table_12454156_1 WHERE runner_up = "Fabrizio Baldassari"
28,584
<question>: What is the August 15, 2012 population when the population density of 2012 is 307? <context>: 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
28,585
<question>: What is the sector when the population change 2002-2012 (%) is 79.6? <context>: 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"
28,586
<question>: For the sector of Gatunda how many entires are show for the August 15, 2012 population? <context>: 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"
28,587
<question>: When the population change 2002-2012 (%) is 35.5 what is the rank in nyagatare sectors? <context>: 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"
28,588
<question>: What is the population density for 2012 for Gatunda sector? <context>: 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"
28,589
<question>: What is the highest population for the <context>: CREATE TABLE table_12496904_1 (_august_15 VARCHAR, _2002 VARCHAR, population INTEGER)
SELECT MAX(population), _august_15, _2002 FROM table_12496904_1
28,590
<question>: What is the biggended for 1947? <context>: CREATE TABLE table_12526990_1 (biggenden INTEGER, year VARCHAR)
SELECT MAX(biggenden) FROM table_12526990_1 WHERE year = 1947
28,591
<question>: What is the monto where the total region is 11230? <context>: CREATE TABLE table_12526990_1 (monto VARCHAR, total_region VARCHAR)
SELECT COUNT(monto) FROM table_12526990_1 WHERE total_region = 11230
28,592
<question>: What is the gayndah when perry is 304? <context>: CREATE TABLE table_12526990_1 (gayndah INTEGER, perry VARCHAR)
SELECT MAX(gayndah) FROM table_12526990_1 WHERE perry = 304
28,593
<question>: What is the minimum mundubbera when biggenden is 1882 <context>: CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR)
SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882
28,594
<question>: The Dallas Burn had a 12-9-7 record and what number of goals for? <context>: CREATE TABLE table_1253396_5 (goals_for VARCHAR, overall_record VARCHAR)
SELECT goals_for FROM table_1253396_5 WHERE overall_record = "12-9-7"
28,595
<question>: What is the highest value under the column goals against? <context>: CREATE TABLE table_1255110_7 (goals_against INTEGER)
SELECT MAX(goals_against) FROM table_1255110_7
28,596
<question>: what is the date (from) where date (to) is 1919? <context>: CREATE TABLE table_12562214_1 (date__from_ VARCHAR, date__to_ VARCHAR)
SELECT date__from_ FROM table_12562214_1 WHERE date__to_ = "1919"
28,597
<question>: how many times is the date (to) 1919? <context>: CREATE TABLE table_12562214_1 (notes VARCHAR, date__to_ VARCHAR)
SELECT COUNT(notes) FROM table_12562214_1 WHERE date__to_ = "1919"
28,598
<question>: what is the date (from) where the notes are apeldoornsche tramweg-maatschappij? <context>: CREATE TABLE table_12562214_1 (date__from_ VARCHAR, notes VARCHAR)
SELECT date__from_ FROM table_12562214_1 WHERE notes = "Apeldoornsche Tramweg-Maatschappij"
28,599
<question>: how many notes are form the date (from) 14 march 1910? <context>: CREATE TABLE table_12562214_1 (notes VARCHAR, date__from_ VARCHAR)
SELECT COUNT(notes) FROM table_12562214_1 WHERE date__from_ = "14 March 1910"