question
stringlengths
15
152
context
stringlengths
58
202
answer
stringlengths
37
161
When the change (2010 to 2011) is +1.0% what is the change (2011 to 2012)?
columns: - name: change__2011_to_2012_ type: VARCHAR - name: change__2010_to_2011_ type: VARCHAR table: table_14752049_6
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE change__2010_to_2011_ = "+1.0%"
How many seasons in the top division for the team that finished 005 5th in 2012-2013
columns: - name: number_of_seasons_in_top_division type: VARCHAR - name: position_in_2012_13 type: VARCHAR table: table_1510519_1
SELECT COUNT(number_of_seasons_in_top_division) FROM table_1510519_1 WHERE position_in_2012_13 = "005 5th"
Who are the candidates in the race where Wright Patman is the incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_42
SELECT candidates FROM table_1342315_42 WHERE incumbent = "Wright Patman"
What was the result of the election in the Texas 4 district?
columns: - name: result type: VARCHAR - name: district type: VARCHAR table: table_1342149_43
SELECT result FROM table_1342149_43 WHERE district = "Texas 4"
What was the last round the team drafted?
columns: - name: round type: INTEGER table: table_14999879_2
SELECT MAX(round) FROM table_14999879_2
How many incumbent candidates in the election featuring sam m. gibbons (d) unopposed?
columns: - name: incumbent type: VARCHAR - name: candidates type: VARCHAR table: table_1341690_9
SELECT COUNT(incumbent) FROM table_1341690_9 WHERE candidates = "Sam M. Gibbons (D) Unopposed"
Who was perfomer one on 30 January 1988?
columns: - name: performer_1 type: VARCHAR - name: date type: VARCHAR table: table_14934885_1
SELECT performer_1 FROM table_14934885_1 WHERE date = "30 January 1988"
What is the least amount of field goals made by a player?
columns: - name: field_goals type: INTEGER table: table_14342367_7
SELECT MIN(field_goals) FROM table_14342367_7
Who's the incumbent of the Louisiana 1 district?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341604_19
SELECT incumbent FROM table_1341604_19 WHERE district = "Louisiana 1"
On what dates were episodes written by Robert Carlock aired?
columns: - name: original_air_date type: VARCHAR - name: written_by type: VARCHAR table: table_14889988_1
SELECT original_air_date FROM table_14889988_1 WHERE written_by = "Robert Carlock"
how many result with candidates being richard j. welch (r) unopposed
columns: - name: result type: VARCHAR - name: candidates type: VARCHAR table: table_1342233_6
SELECT COUNT(result) FROM table_1342233_6 WHERE candidates = "Richard J. Welch (R) Unopposed"
what's the district  with first elected being 1938
columns: - name: district type: VARCHAR - name: first_elected type: VARCHAR table: table_1342292_2
SELECT district FROM table_1342292_2 WHERE first_elected = 1938
what is the maximum aircraft movements with airport being liverpool
columns: - name: aircraft_movements type: INTEGER - name: airport type: VARCHAR table: table_13836704_9
SELECT MAX(aircraft_movements) FROM table_13836704_9 WHERE airport = "Liverpool"
What is the result for first elected in 1944
columns: - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_1341930_5
SELECT result FROM table_1341930_5 WHERE first_elected = 1944
William Fadjo Cravens is the only candidate who was first elected in 1939.
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1342270_5
SELECT COUNT(first_elected) FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens"
When was the first elected when the party was republican and the candidate were robert h. michel (r) 66.1% rosa lee fox (d) 33.9%?
columns: - name: first_elected type: INTEGER - name: party type: VARCHAR - name: candidates type: VARCHAR table: table_1341718_14
SELECT MIN(first_elected) FROM table_1341718_14 WHERE party = "Republican" AND candidates = "Robert H. Michel (R) 66.1% Rosa Lee Fox (D) 33.9%"
what is the party when the incumbent is sidney r. yates?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_1341718_14
SELECT party FROM table_1341718_14 WHERE incumbent = "Sidney R. Yates"
who danced 11 and finished at more than a 2.0
columns: - name: couple type: VARCHAR - name: number_of_dances type: VARCHAR - name: competition_finish type: VARCHAR table: table_1354805_6
SELECT couple FROM table_1354805_6 WHERE number_of_dances = 11 AND competition_finish > 2.0
Who was the incumbent in Pennsylvania 27?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1342256_38
SELECT incumbent FROM table_1342256_38 WHERE district = "Pennsylvania 27"
What is the french word for the Russian word filtrovat (фильтровать)?
columns: - name: french type: VARCHAR - name: russian type: VARCHAR table: table_15040_8
SELECT french FROM table_15040_8 WHERE russian = "filtrovat (фильтровать)"
What TV channel had a license from Boston?
columns: - name: channel_tv___dt__ type: VARCHAR - name: city_of_license_market type: VARCHAR table: table_1353096_2
SELECT channel_tv___dt__ FROM table_1353096_2 WHERE city_of_license_market = "Boston"
what's the college with position being placekicker
columns: - name: college type: VARCHAR - name: position type: VARCHAR table: table_14655985_1
SELECT college FROM table_14655985_1 WHERE position = "Placekicker"
who is the the incumbent with candidates being percy e. quin (d) unopposed
columns: - name: incumbent type: VARCHAR - name: candidates type: VARCHAR table: table_1342379_23
SELECT incumbent FROM table_1342379_23 WHERE candidates = "Percy E. Quin (D) Unopposed"
What was the record on September 22, 1974?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_14954150_1
SELECT record FROM table_14954150_1 WHERE date = "September 22, 1974"
What is the number of appearances where the most recent final result is 1999, beat Genk 3-1?
columns: - name: _number_appearances type: VARCHAR - name: most_recent_final type: VARCHAR table: table_1463332_2
SELECT COUNT(_number_appearances) FROM table_1463332_2 WHERE most_recent_final = "1999, beat Genk 3-1"
how many height m ( ft ) with notes being via wccv; formerly w236aj
columns: - name: height_m___ft__ type: VARCHAR - name: notes type: VARCHAR table: table_13998897_1
SELECT COUNT(height_m___ft__) FROM table_13998897_1 WHERE notes = "via WCCV; formerly W236AJ"
What was the highest number of students in Fall 09 in the state that had 3821 in Fall 06?
columns: - name: fall_09 type: INTEGER - name: fall_06 type: VARCHAR table: table_15055594_6
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_06 = 3821
What district is incumbent albert w. johnson from?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_40
SELECT district FROM table_1341865_40 WHERE incumbent = "Albert W. Johnson"
Name the most extra points for right halfback
columns: - name: extra_points type: INTEGER - name: position type: VARCHAR table: table_14342480_5
SELECT MAX(extra_points) FROM table_14342480_5 WHERE position = "Right halfback"
What party was the winning one in the elections in the California 30 district?
columns: - name: party type: VARCHAR - name: district type: VARCHAR table: table_1341663_6
SELECT party FROM table_1341663_6 WHERE district = "California 30"
What is the highest number of students with a teacher:student ratio of 20.8?
columns: - name: students type: INTEGER - name: pupil_teacher_ratio type: VARCHAR table: table_1414743_1
SELECT MAX(students) FROM table_1414743_1 WHERE pupil_teacher_ratio = "20.8"
Who is the second performer in episode 5?
columns: - name: performer_2 type: VARCHAR - name: episode type: VARCHAR table: table_14934885_1
SELECT performer_2 FROM table_14934885_1 WHERE episode = 5
What country's capital is buenos aires?
columns: - name: country_or_territory_with_flag type: VARCHAR - name: capital type: VARCHAR table: table_14098_1
SELECT country_or_territory_with_flag FROM table_14098_1 WHERE capital = "Buenos Aires"
How many times did the 2nd season have a finale?
columns: - name: season type: VARCHAR table: table_1348989_2
SELECT COUNT(season) AS Finale FROM table_1348989_2 WHERE season = "2nd"
What is the lowest number of games played for deportivo español?
columns: - name: played type: INTEGER - name: team type: VARCHAR table: table_14460085_3
SELECT MIN(played) FROM table_14460085_3 WHERE team = "Deportivo Español"
What was the original air date (atv) of episode 1?
columns: - name: original_air_date__atv_ type: VARCHAR - name: episode_no type: VARCHAR table: table_1439096_1
SELECT original_air_date__atv_ FROM table_1439096_1 WHERE episode_no = 1
What is the number of students in Fall 09 from the state that had 3940 in Fall 07?
columns: - name: fall_09 type: INTEGER - name: fall_07 type: VARCHAR table: table_15055594_6
SELECT MAX(fall_09) FROM table_15055594_6 WHERE fall_07 = 3940
Name the population when the capital is tarnopol
columns: - name: population__1931__in_1 type: VARCHAR - name: capital type: VARCHAR table: table_14245_3
SELECT population__1931__in_1, 000 AS s FROM table_14245_3 WHERE capital = "Tarnopol"
How many games has the club with 29-24 goals for/against score played?
columns: - name: games_played type: VARCHAR - name: goals_for_against type: VARCHAR table: table_13713206_1
SELECT games_played FROM table_13713206_1 WHERE goals_for_against = "29-24"
what's the highest point with lowest point being belle fourche river at south dakota border
columns: - name: highest_point type: VARCHAR - name: lowest_point type: VARCHAR table: table_1416612_1
SELECT highest_point FROM table_1416612_1 WHERE lowest_point = "Belle Fourche River at South Dakota border"
what's the currency name with highest monthly inflation rate being 29,500%
columns: - name: currency_name type: VARCHAR - name: highest_monthly_inflation_rate type: VARCHAR table: table_13681_2
SELECT currency_name FROM table_13681_2 WHERE highest_monthly_inflation_rate = "29,500%"
who is the the mens singles with mens doubles being kaj lindfors kaj osterberg
columns: - name: mens_singles type: VARCHAR - name: mens_doubles type: VARCHAR table: table_13857700_1
SELECT mens_singles FROM table_13857700_1 WHERE mens_doubles = "Kaj Lindfors Kaj Osterberg"
Which episodes have Patrick Lau as the director and Lisa Holdsworth as the writer?
columns: - name: title type: VARCHAR - name: director type: VARCHAR - name: writer type: VARCHAR table: table_14330096_4
SELECT title FROM table_14330096_4 WHERE director = "Patrick Lau" AND writer = "Lisa Holdsworth"
What nhl team does dwight bialowas play for?
columns: - name: nhl_team type: VARCHAR - name: player type: VARCHAR table: table_1473672_2
SELECT nhl_team FROM table_1473672_2 WHERE player = "Dwight Bialowas"
what's the drawn with points for being 350
columns: - name: drawn type: VARCHAR - name: points_for type: VARCHAR table: table_14058433_4
SELECT drawn FROM table_14058433_4 WHERE points_for = "350"
In what year did Tom Sneva win a race?
columns: - name: season type: VARCHAR - name: winning_driver type: VARCHAR table: table_1405704_1
SELECT season FROM table_1405704_1 WHERE winning_driver = "Tom Sneva"
what is the arrival time where the station code is awy?
columns: - name: arrival type: VARCHAR - name: station_code type: VARCHAR table: table_14688744_2
SELECT arrival FROM table_14688744_2 WHERE station_code = "AWY"
What is the first electedfor district ohio 18
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1342249_35
SELECT first_elected FROM table_1342249_35 WHERE district = "Ohio 18"
Name the candidates for l. mendel rivers
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341930_40
SELECT COUNT(candidates) FROM table_1341930_40 WHERE incumbent = "L. Mendel Rivers"
what is the name of the borough where station uses is 28702?
columns: - name: borough type: VARCHAR - name: station_users_2008_9 type: VARCHAR table: table_14748457_1
SELECT borough FROM table_14748457_1 WHERE station_users_2008_9 = "28702"
Which position did the player hold that played for the Philadelphia Flyers in NHL?
columns: - name: position type: VARCHAR - name: nhl_team type: VARCHAR table: table_1473672_3
SELECT position FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
What party did the incumbent from the Illinois 12 district belong to?
columns: - name: party type: VARCHAR - name: district type: VARCHAR table: table_1341707_15
SELECT party FROM table_1341707_15 WHERE district = "Illinois 12"
how many people work with N Rawiller
columns: - name: trainer type: VARCHAR - name: jockey type: VARCHAR table: table_13498403_1
SELECT COUNT(trainer) FROM table_13498403_1 WHERE jockey = "N Rawiller"
WHAT ARE THE NAMES OF THE MENS DOUBLES WHEN THE WOMENS DOUBLES WAS PIRET HAMER HELEN REINO?
columns: - name: mens_doubles type: VARCHAR - name: womens_doubles type: VARCHAR table: table_14903627_1
SELECT mens_doubles FROM table_14903627_1 WHERE womens_doubles = "Piret Hamer Helen Reino"
who are the candidates with district being kansas 4
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342359_15
SELECT candidates FROM table_1342359_15 WHERE district = "Kansas 4"
What candidates ran in the election that featured harry lane englebright?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342370_5
SELECT candidates FROM table_1342370_5 WHERE incumbent = "Harry Lane Englebright"
Who is the incumbent first elected in 1944?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1342013_20
SELECT incumbent FROM table_1342013_20 WHERE first_elected = 1944
what is the political affiliation of ray roberts
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_1341884_45
SELECT party FROM table_1341884_45 WHERE incumbent = "Ray Roberts"
What teams won in 2007?
columns: - name: team_s_ type: VARCHAR - name: year type: VARCHAR table: table_1507423_4
SELECT team_s_ FROM table_1507423_4 WHERE year = 2007
Who are all runner-ups for No. 2?
columns: - name: runner_up type: VARCHAR - name: 'no' type: VARCHAR table: table_1507431_1
SELECT runner_up FROM table_1507431_1 WHERE no = 2
Who were the umpires when Paul Vines (S) won the Simpson Medal?
columns: - name: umpires type: VARCHAR - name: simpson_medal type: VARCHAR table: table_13514348_7
SELECT umpires FROM table_13514348_7 WHERE simpson_medal = "Paul Vines (S)"
Name the minimum for 2500-3000 ft for scotland
columns: - name: country type: VARCHAR table: table_1456056_1
SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = "Scotland"
how many tries against with lost being 11
columns: - name: tries_against type: VARCHAR - name: lost type: VARCHAR table: table_14058433_4
SELECT COUNT(tries_against) FROM table_14058433_4 WHERE lost = "11"
Where was held the ceremony for the 12th Pride of Britain Awards?
columns: - name: location type: VARCHAR - name: episode type: VARCHAR table: table_13943239_1
SELECT location FROM table_13943239_1 WHERE episode = "12th Pride of Britain Awards"
What is the exited day where the celebrity is vic reeves?
columns: - name: exited type: VARCHAR - name: celebrity type: VARCHAR table: table_14345690_5
SELECT exited FROM table_14345690_5 WHERE celebrity = "Vic Reeves"
who is the the place with per capita income being $14,793
columns: - name: place type: VARCHAR - name: per_capita_income type: VARCHAR table: table_1350350_2
SELECT place FROM table_1350350_2 WHERE per_capita_income = "$14,793"
who were the candidates when the incumbent was ed derwinski?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341718_14
SELECT candidates FROM table_1341718_14 WHERE incumbent = "Ed Derwinski"
What is the district that has Bob Wilson as an incumbent?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341663_6
SELECT district FROM table_1341663_6 WHERE incumbent = "Bob Wilson"
What was the result of Robert L. F. Sikes' election bid?
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1342256_10
SELECT result FROM table_1342256_10 WHERE incumbent = "Robert L. F. Sikes"
What series have Caroline Flack as a main presenter?
columns: - name: series type: VARCHAR - name: main_presenter type: VARCHAR table: table_14345690_15
SELECT series FROM table_14345690_15 WHERE main_presenter = "Caroline Flack"
Who are the candidates in the election in the Ohio 9 district?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342218_35
SELECT candidates FROM table_1342218_35 WHERE district = "Ohio 9"
Name the number of draws for when conceded is 25
columns: - name: draws type: VARCHAR - name: conceded type: VARCHAR table: table_14889048_1
SELECT COUNT(draws) FROM table_14889048_1 WHERE conceded = 25
What is the first elected for georgia 4?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1341930_11
SELECT first_elected FROM table_1341930_11 WHERE district = "Georgia 4"
Name the mens singles when womens singles is wang lin and mixed doubles is joachim fischer nielsen christinna pedersen
columns: - name: mens_singles type: VARCHAR - name: womens_singles type: VARCHAR - name: mixed_doubles type: VARCHAR table: table_14496232_2
SELECT mens_singles FROM table_14496232_2 WHERE womens_singles = "Wang Lin" AND mixed_doubles = "Joachim Fischer Nielsen Christinna Pedersen"
Who's the incumbent in the district first elected in 1976?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1341604_19
SELECT incumbent FROM table_1341604_19 WHERE first_elected = 1976
what's the percentage of votes with number of deputies being 112
columns: - name: percentage_of_votes type: VARCHAR - name: number_of_deputies type: VARCHAR table: table_13746866_2
SELECT percentage_of_votes FROM table_13746866_2 WHERE number_of_deputies = 112
what's the won with tries for being 84
columns: - name: won type: VARCHAR - name: tries_for type: VARCHAR table: table_14058433_5
SELECT won FROM table_14058433_5 WHERE tries_for = "84"
How many players led Game #66 in scoring?
columns: - name: high_points type: VARCHAR - name: game type: VARCHAR table: table_13619053_8
SELECT COUNT(high_points) FROM table_13619053_8 WHERE game = 66
Name the french actor with javier romano
columns: - name: french_voice_actor type: VARCHAR - name: spanish_voice_actor type: VARCHAR table: table_14960574_6
SELECT COUNT(french_voice_actor) FROM table_14960574_6 WHERE spanish_voice_actor = "Javier Romano"
Who won the rookie award the week the transition award was given to Brodie Merrill and the offensive award was given to Pat Maddalena?
columns: - name: rookie type: VARCHAR - name: transition type: VARCHAR - name: offensive type: VARCHAR table: table_14132239_3
SELECT rookie FROM table_14132239_3 WHERE transition = "Brodie Merrill" AND offensive = "Pat Maddalena"
who is the the mixed doubles with mens singles being peter moritz
columns: - name: mixed_doubles type: VARCHAR - name: mens_singles type: VARCHAR table: table_15002265_1
SELECT mixed_doubles FROM table_15002265_1 WHERE mens_singles = "Peter Moritz"
What are all values for 'to par' for the winning score of 67-67-69-69=272?
columns: - name: to_par type: VARCHAR - name: winning_score type: VARCHAR table: table_1507431_1
SELECT to_par FROM table_1507431_1 WHERE winning_score = 67 - 67 - 69 - 69 = 272
What was the least amount for Goals Olimpia?
columns: - name: goals_olimpia type: INTEGER table: table_13688489_1
SELECT MIN(goals_olimpia) FROM table_13688489_1
Name the total number of telephone 052 for 362.81
columns: - name: telephone__052_ type: VARCHAR - name: area__km_2__ type: VARCHAR table: table_14465924_1
SELECT COUNT(telephone__052_) FROM table_14465924_1 WHERE area__km_2__ = "362.81"
what's the position with player being ray boutin
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_1473672_9
SELECT position FROM table_1473672_9 WHERE player = "Ray Boutin"
Who is the incumbent in the Alabama 6 voting district?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341973_3
SELECT incumbent FROM table_1341973_3 WHERE district = "Alabama 6"
What mechanical has lpm regulation?
columns: - name: mechanical type: VARCHAR - name: regulating type: VARCHAR table: table_1348246_3
SELECT mechanical FROM table_1348246_3 WHERE regulating = "LPM"
what's the wine style with village being puligny-montrachet [d ]
columns: - name: wine_style type: VARCHAR - name: village type: VARCHAR table: table_13981938_1
SELECT wine_style FROM table_13981938_1 WHERE village = "Puligny-Montrachet [d ]"
Nantyglo RFC had 546 points for and how many points?
columns: - name: points type: VARCHAR - name: points_for type: VARCHAR table: table_13741576_6
SELECT points FROM table_13741576_6 WHERE points_for = "546"
what is the highest number where people got done at 31.1
columns: - name: competition_finish type: INTEGER - name: average type: VARCHAR table: table_1354805_6
SELECT MAX(competition_finish) FROM table_1354805_6 WHERE average = "31.1"
Name the total number of population 2000 census for mesquita
columns: - name: population_2000_census type: VARCHAR - name: administrative_division type: VARCHAR table: table_14986292_1
SELECT COUNT(population_2000_census) FROM table_14986292_1 WHERE administrative_division = "Mesquita"
When did construction start on the Power station with a net MWE of 1190
columns: - name: construction_started type: INTEGER - name: net_mwe type: VARCHAR table: table_143352_1
SELECT MIN(construction_started) FROM table_143352_1 WHERE net_mwe = 1190
what's the result with dbeingtrict being florida 4
columns: - name: result type: VARCHAR - name: district type: VARCHAR table: table_1342013_9
SELECT result FROM table_1342013_9 WHERE district = "Florida 4"
Who is the incumbent in district Texas 15?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341707_45
SELECT incumbent FROM table_1341707_45 WHERE district = "Texas 15"
what was the extra score when the overall score was 52
columns: - name: losing_bonus type: VARCHAR - name: tries_for type: VARCHAR table: table_14070062_4
SELECT losing_bonus FROM table_14070062_4 WHERE tries_for = "52"
How many locations had a density (pop/km²) of 91.8 in the 2011 census?
columns: - name: "density__pop_km\xB2_" type: VARCHAR table: table_1425958_1
SELECT COUNT(2011 AS _census) FROM table_1425958_1 WHERE density__pop_km²_ = "91.8"
What district is Charles H. Wilson the incumbent of?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341663_6
SELECT district FROM table_1341663_6 WHERE incumbent = "Charles H. Wilson"
how many bush% with total# being 191269
columns: - name: bush_percentage type: VARCHAR - name: total_number type: VARCHAR table: table_13608101_1
SELECT COUNT(bush_percentage) FROM table_13608101_1 WHERE total_number = 191269
The tournament Buick Classic occured on what dates?
columns: - name: date type: VARCHAR - name: tournament type: VARCHAR table: table_1507431_1
SELECT date FROM table_1507431_1 WHERE tournament = "Buick Classic"
How many people directed the show written by Chris Sheridan?
columns: - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_14724369_1
SELECT COUNT(directed_by) FROM table_14724369_1 WHERE written_by = "Chris Sheridan"