question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the name of the player who played in 2009 only?
CREATE TABLE table_12321870_32 (player_name VARCHAR, period VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT coverage__transmitter_site_ FROM table_12379297_1 WHERE station_type = \"Relay\" AND power__kw_ = \"5kW\" AND callsign = \"DYFJ-TV\"" }
What is the running of marlene sanchez?
CREATE TABLE table_12407546_2 (running VARCHAR, athlete VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(lost_to_eventual_winner) FROM table_12444503_1 WHERE lost_to_eventual_runner_up = \"ASC Jeanne d'Arc\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(population_august_15), _2012 FROM table_12496904_1 WHERE population_density_2012__km_2__ = 307" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(rank_in_nyagatare_sectors), _2012 FROM table_12496904_1 WHERE population_change_2002_2012___percentage_ = \"35.5\"" }
What is the population density for 2012 for Gatunda sector?
CREATE TABLE table_12496904_1 (population_density_2012__km_2__ INTEGER, sector VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(notes) FROM table_12562214_1 WHERE date__from_ = \"14 March 1910\"" }