question
stringlengths
15
152
context
stringlengths
58
202
answer
stringlengths
37
161
How many candidates represent the district of kenneth a. roberts?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341897_3
SELECT COUNT(candidates) FROM table_1341897_3 WHERE incumbent = "Kenneth A. Roberts"
United kingdom is the country what is the change (2011 to 2012)?
columns: - name: change__2011_to_2012_ type: VARCHAR - name: country type: VARCHAR table: table_14752049_6
SELECT change__2011_to_2012_ FROM table_14752049_6 WHERE country = "United Kingdom"
What year was Skyline High School founded?
columns: - name: founded type: VARCHAR - name: high_school type: VARCHAR table: table_13759592_1
SELECT COUNT(founded) FROM table_13759592_1 WHERE high_school = "Skyline"
how many player with nhl team being vancouver canucks
columns: - name: player type: VARCHAR - name: nhl_team type: VARCHAR table: table_1473672_9
SELECT COUNT(player) FROM table_1473672_9 WHERE nhl_team = "Vancouver Canucks"
Who was the winner of the race at Belmont?
columns: - name: winner_2nd type: VARCHAR - name: venue type: VARCHAR table: table_1358608_4
SELECT winner_2nd FROM table_1358608_4 WHERE venue = "Belmont"
How many incumbents resulted in a lost renomination republican gain?
columns: - name: incumbent type: VARCHAR - name: result type: VARCHAR table: table_1341690_18
SELECT COUNT(incumbent) FROM table_1341690_18 WHERE result = "Lost renomination Republican gain"
In how many stages did Jose Vicente Garcia Acosta won?
columns: - name: stage type: VARCHAR - name: winner type: VARCHAR table: table_15088557_1
SELECT COUNT(stage) FROM table_15088557_1 WHERE winner = "Jose Vicente Garcia Acosta"
For teams that played 5 games, what was the smallest number of wins?
columns: - name: win type: INTEGER - name: played type: VARCHAR table: table_14288212_1
SELECT MIN(win) FROM table_14288212_1 WHERE played = 5
What is the total number of population in the year 2005 where the population density 35.9 (/km 2)?
columns: - name: population__2005_ type: VARCHAR - name: population_density___km_2__ type: VARCHAR table: table_1480455_1
SELECT COUNT(population__2005_) FROM table_1480455_1 WHERE population_density___km_2__ = "35.9"
In which district is the incumbent Carl W. Rich?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_37
SELECT district FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
What is the result of the game against the Chicago Bears?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_14966537_1
SELECT result FROM table_14966537_1 WHERE opponent = "Chicago Bears"
which is the new pageant from spain?
columns: - name: new_pageant type: VARCHAR - name: country_territory type: VARCHAR table: table_14308895_2
SELECT new_pageant FROM table_14308895_2 WHERE country_territory = "Spain"
What candidates were featured in the 1974 election?
columns: - name: candidates type: VARCHAR - name: first_elected type: VARCHAR table: table_1341640_14
SELECT candidates FROM table_1341640_14 WHERE first_elected = 1974
What is the English word for the Russian words loshad, kobyla (лошадь, кобыла)?
columns: - name: english type: VARCHAR - name: russian type: VARCHAR table: table_15040_8
SELECT english FROM table_15040_8 WHERE russian = "loshad, kobyla (лошадь, кобыла)"
what's the incumbent with candidates being sam hobbs (d) 88.2% c. w. mckay (r) 11.8%
columns: - name: incumbent type: VARCHAR - name: candidates type: VARCHAR table: table_1342292_2
SELECT incumbent FROM table_1342292_2 WHERE candidates = "Sam Hobbs (D) 88.2% C. W. McKay (R) 11.8%"
who is the the incumbent with dbeingtrict being arkansas 1
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1342331_5
SELECT incumbent FROM table_1342331_5 WHERE district = "Arkansas 1"
Name number first elected for tennessee 2?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1341586_43
SELECT COUNT(first_elected) FROM table_1341586_43 WHERE district = "Tennessee 2"
what's the country/region with seasons and winners being season 1, 2012: demetra malalan
columns: - name: country_region type: VARCHAR - name: seasons_and_winners type: VARCHAR table: table_13779832_1
SELECT country_region FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2012: Demetra Malalan"
Who are all the candidates when Sam Rayburn was incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342292_42
SELECT candidates FROM table_1342292_42 WHERE incumbent = "Sam Rayburn"
who is the the womens doubles with mens doubles being reinhold pum karl buchart and mixed doubles being hermann fröhlich lore voit
columns: - name: womens_doubles type: VARCHAR - name: mens_doubles type: VARCHAR - name: mixed_doubles type: VARCHAR table: table_15002265_1
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Reinhold Pum Karl Buchart" AND mixed_doubles = "Hermann Fröhlich Lore Voit"
What year was first-elected for the row of Texas 2?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1342218_43
SELECT first_elected FROM table_1342218_43 WHERE district = "Texas 2"
what's the lowest elevation with highest point being charles mound
columns: - name: lowest_elevation type: VARCHAR - name: highest_point type: VARCHAR table: table_1416612_1
SELECT lowest_elevation FROM table_1416612_1 WHERE highest_point = "Charles Mound"
what's the chroma format with name being high profile
columns: - name: chroma_format type: VARCHAR - name: name type: VARCHAR table: table_1376890_2
SELECT chroma_format FROM table_1376890_2 WHERE name = "High profile"
How many points for when the points was 53?
columns: - name: points_for type: VARCHAR - name: points type: VARCHAR table: table_13564637_4
SELECT points_for FROM table_13564637_4 WHERE points = "53"
What years have a total of 139?
columns: - name: years type: VARCHAR - name: total type: VARCHAR table: table_14962287_2
SELECT years FROM table_14962287_2 WHERE total = "139"
what's the county with code being 2
columns: - name: county type: VARCHAR - name: code type: VARCHAR table: table_1404456_1
SELECT county FROM table_1404456_1 WHERE code = 2
what's the jp -210- with title and source being fun! fun! minigolf
columns: - name: jp__210_ type: VARCHAR - name: title_and_source type: VARCHAR table: table_13663434_1
SELECT jp__210_ FROM table_13663434_1 WHERE title_and_source = "Fun! Fun! Minigolf"
Name the maximum clock rate mhz
columns: - name: clock_rate__mhz_ type: INTEGER table: table_142573_1
SELECT MAX(clock_rate__mhz_) FROM table_142573_1
How many home team scores have a time of 4:40 PM?
columns: - name: home_team type: VARCHAR - name: time type: VARCHAR table: table_14425454_1
SELECT COUNT(home_team) AS score FROM table_14425454_1 WHERE time = "4:40 PM"
what district is Brooks Hays in
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342013_4
SELECT district FROM table_1342013_4 WHERE incumbent = "Brooks Hays"
what's the mission with primary payload(s) being spacelab life sciences-2
columns: - name: mission type: VARCHAR - name: primary_payload_s_ type: VARCHAR table: table_14118521_1
SELECT mission FROM table_14118521_1 WHERE primary_payload_s_ = "Spacelab Life Sciences-2"
What was the scoring rank for Angela Stanford in 2009?
columns: - name: scoring_rank type: VARCHAR - name: year type: VARCHAR table: table_14836185_3
SELECT scoring_rank FROM table_14836185_3 WHERE year = 2009
How many counties have an area of 1,205.4 km2?
columns: - name: code type: VARCHAR - name: area__km_2__ type: VARCHAR table: table_1404414_2
SELECT COUNT(code) FROM table_1404414_2 WHERE area__km_2__ = "1,205.4"
How many countries does honoree Roberto de Vicenzo represent?
columns: - name: country type: VARCHAR - name: honoree_s_ type: VARCHAR table: table_1515346_2
SELECT COUNT(country) FROM table_1515346_2 WHERE honoree_s_ = "Roberto De Vicenzo"
Which party had a person who has been in the seat since 1914?
columns: - name: party type: VARCHAR - name: first_elected type: VARCHAR table: table_1342013_10
SELECT party FROM table_1342013_10 WHERE first_elected = 1914
What was the number of rounds on the Hidden Valley Raceway?
columns: - name: rd type: VARCHAR - name: circuit type: VARCHAR table: table_14016079_1
SELECT COUNT(rd) FROM table_14016079_1 WHERE circuit = "Hidden Valley Raceway"
Which team played on April 1?
columns: - name: team type: VARCHAR - name: date type: VARCHAR table: table_13619053_9
SELECT team FROM table_13619053_9 WHERE date = "April 1"
What is the year leicester was established?
columns: - name: established type: INTEGER - name: location type: VARCHAR table: table_142950_1
SELECT MAX(established) FROM table_142950_1 WHERE location = "Leicester"
How many times was there a class A winner when Gregory-Portland was the class AAAA?
columns: - name: class_a type: VARCHAR - name: class_aAAA type: VARCHAR - name: Gregory type: VARCHAR - name: Portland type: VARCHAR table: table_14603057_2
SELECT COUNT(class_a) FROM table_14603057_2 WHERE class_aAAA = Gregory - Portland
Was there a starter when 3 touchdowns were scored?
columns: - name: starter type: VARCHAR - name: touchdowns type: VARCHAR table: table_14342592_7
SELECT starter FROM table_14342592_7 WHERE touchdowns = 3
Which venue did Luke Blackwell serve as captain?
columns: - name: venue type: VARCHAR - name: captain type: VARCHAR table: table_13514348_7
SELECT venue FROM table_13514348_7 WHERE captain = "Luke Blackwell"
How many times was frank m. clark the incumbent?
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_40
SELECT COUNT(result) FROM table_1341865_40 WHERE incumbent = "Frank M. Clark"
How many jockeys are listed running at the Sir Rupert Clarke Stakes?
columns: - name: jockey type: VARCHAR - name: race type: VARCHAR table: table_14981555_3
SELECT COUNT(jockey) FROM table_14981555_3 WHERE race = "Sir Rupert Clarke Stakes"
What was the least amount of camp mates?
columns: - name: camp_mates type: INTEGER table: table_14345690_1
SELECT MIN(camp_mates) FROM table_14345690_1
How many results for minimum first elected incumbent Noble Jones Gregory?
columns: - name: first_elected type: INTEGER - name: incumbent type: VARCHAR table: table_1342198_17
SELECT MIN(first_elected) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
how many years has сенки been nominated?
columns: - name: year__ceremony_ type: VARCHAR - name: original_title type: VARCHAR table: table_14928423_1
SELECT COUNT(year__ceremony_) FROM table_14928423_1 WHERE original_title = "Сенки"
On which date was the game played at Tiger Stadium?
columns: - name: date type: VARCHAR - name: game_site type: VARCHAR table: table_14958620_1
SELECT date FROM table_14958620_1 WHERE game_site = "Tiger Stadium"
How many descriptions are there when the attribute is "ondragstart"?
columns: - name: description type: VARCHAR - name: attribute type: VARCHAR table: table_1507852_1
SELECT COUNT(description) FROM table_1507852_1 WHERE attribute = "ondragstart"
where is the district where the incumbent is del latta?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341598_36
SELECT district FROM table_1341598_36 WHERE incumbent = "Del Latta"
Which party is associated with the candidate Albert Sidney Camp (D) unopposed?
columns: - name: party type: VARCHAR - name: candidates type: VARCHAR table: table_1342233_11
SELECT COUNT(party) FROM table_1342233_11 WHERE candidates = "Albert Sidney Camp (D) Unopposed"
which country has miss universe Hungary as former pageant?
columns: - name: country_territory type: VARCHAR - name: former_pageant type: VARCHAR table: table_14308895_2
SELECT country_territory FROM table_14308895_2 WHERE former_pageant = "Miss Universe Hungary"
How many candidates were there in the election for William Jennings Bryan Dorn's seat?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341897_42
SELECT COUNT(candidates) FROM table_1341897_42 WHERE incumbent = "William Jennings Bryan Dorn"
What title was used in the nomination for the title Biola Tak Berdawai?
columns: - name: film_title_used_in_nomination type: VARCHAR - name: original_title type: VARCHAR table: table_13719788_1
SELECT film_title_used_in_nomination FROM table_13719788_1 WHERE original_title = "Biola tak berdawai"
Who were the candidates when Henry Garland Dupré was incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342451_16
SELECT candidates FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
Which District was the incumbent Julius Kahn from? Answer: California 4th district
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1346118_5
SELECT COUNT(district) FROM table_1346118_5 WHERE incumbent = "Julius Kahn"
Who won in 1927
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1342359_17
SELECT incumbent FROM table_1342359_17 WHERE first_elected = 1927
How many first elections have Claude Fuller as incumbent?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_4
SELECT COUNT(first_elected) FROM table_1342315_4 WHERE incumbent = "Claude Fuller"
what is the minimum points with highest position being 1
columns: - name: points type: INTEGER - name: highest_position type: VARCHAR table: table_13789248_2
SELECT MIN(points) FROM table_13789248_2 WHERE highest_position = 1
What is the community with a wind power of 1042?
columns: - name: autonomous_community type: VARCHAR - name: wind_power type: VARCHAR table: table_13566548_1
SELECT autonomous_community FROM table_13566548_1 WHERE wind_power = 1042
What was the yield of the K-4 explosion?
columns: - name: yield__approximate_ type: VARCHAR - name: explosion type: VARCHAR table: table_148578_1
SELECT yield__approximate_ FROM table_148578_1 WHERE explosion = "K-4"
What is the highest year that a candidate was first elected?
columns: - name: first_elected type: INTEGER table: table_1341738_11
SELECT MAX(first_elected) FROM table_1341738_11
How many results for incumbent Noble Jones Gregory?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342198_17
SELECT COUNT(district) FROM table_1342198_17 WHERE incumbent = "Noble Jones Gregory"
Which district is republican?
columns: - name: district type: VARCHAR - name: party type: VARCHAR table: table_1341663_44
SELECT district FROM table_1341663_44 WHERE party = "Republican"
What's the maximum crowd when scg is the ground?
columns: - name: crowd type: INTEGER - name: ground type: VARCHAR table: table_14312471_4
SELECT MAX(crowd) FROM table_14312471_4 WHERE ground = "SCG"
Find the least value of attendance?
columns: - name: attendance type: INTEGER table: table_14656147_2
SELECT MIN(attendance) FROM table_14656147_2
who is the the player where pick # is 64
columns: - name: player type: VARCHAR - name: pick__number type: VARCHAR table: table_14655985_1
SELECT player FROM table_14655985_1 WHERE pick__number = 64
What is the title of series #1?
columns: - name: title type: VARCHAR - name: series__number type: VARCHAR table: table_14346353_1
SELECT title FROM table_14346353_1 WHERE series__number = 1
how many location attendance with team being charlotte
columns: - name: location_attendance type: VARCHAR - name: team type: VARCHAR table: table_13557843_7
SELECT COUNT(location_attendance) FROM table_13557843_7 WHERE team = "Charlotte"
what's the height (ft) with name being 52-54 lime street
columns: - name: height__ft_ type: VARCHAR - name: name type: VARCHAR table: table_13463790_2
SELECT height__ft_ FROM table_13463790_2 WHERE name = "52-54 Lime Street"
What is the die size(mm 2) for model sgx531?
columns: - name: die_size__mm_2___ type: VARCHAR - name: model type: VARCHAR table: table_1439045_5
SELECT die_size__mm_2___[1] FROM table_1439045_5 WHERE model = "SGX531"
On what date was it announced that an asset was acquired for US$9 Million?
columns: - name: date_announced type: VARCHAR - name: reported_cost type: VARCHAR table: table_1373542_1
SELECT date_announced FROM table_1373542_1 WHERE reported_cost = "US$9 million"
how many chroma format with name being high profile
columns: - name: chroma_format type: VARCHAR - name: name type: VARCHAR table: table_1376890_2
SELECT COUNT(chroma_format) FROM table_1376890_2 WHERE name = "High profile"
Which candidates were in the election where Frank W. Boykin was an incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341973_3
SELECT candidates FROM table_1341973_3 WHERE incumbent = "Frank W. Boykin"
How many communities had a total renewable generation of 1375?
columns: - name: autonomous_community type: VARCHAR - name: total_renewable_generation type: VARCHAR table: table_13566548_1
SELECT COUNT(autonomous_community) FROM table_13566548_1 WHERE total_renewable_generation = 1375
What number picked were players from arizona state picked?
columns: - name: pick__number type: VARCHAR - name: college type: VARCHAR table: table_14650373_1
SELECT pick__number FROM table_14650373_1 WHERE college = "Arizona State"
Name the least clock rate mhz
columns: - name: clock_rate__mhz_ type: INTEGER table: table_142573_1
SELECT MIN(clock_rate__mhz_) FROM table_142573_1
What is the most recent release date?
columns: - name: release_date type: INTEGER table: table_1467951_4
SELECT MAX(release_date) FROM table_1467951_4
What positions did Paul Jones play?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_14342367_7
SELECT position FROM table_14342367_7 WHERE player = "Paul Jones"
What is the Malayalam word that is listed as #10 in the table?
columns: - name: "malayalam_\u0D2E\u0D32\u0D2F\u0D3E\u0D33\u0D02" type: VARCHAR - name: _number type: VARCHAR table: table_1408397_3
SELECT malayalam_മലയാളം FROM table_1408397_3 WHERE _number = 10
what's the wine style with grand cru being romanée-conti
columns: - name: wine_style type: VARCHAR - name: grand_cru type: VARCHAR table: table_13981938_1
SELECT wine_style FROM table_13981938_1 WHERE grand_cru = "Romanée-Conti"
Lorne Henning has the lowest pick# of?
columns: - name: pick__number type: INTEGER table: table_1473672_2
SELECT MIN(pick__number) FROM table_1473672_2
Who was the losing pitcher when 40583 attended?
columns: - name: losing_pitcher type: VARCHAR - name: attendance type: VARCHAR table: table_13710464_1
SELECT losing_pitcher FROM table_13710464_1 WHERE attendance = 40583
What is the percentage of females where in India and are maharashtra?
columns: - name: females___percentage_ type: VARCHAR - name: india_state_ut type: VARCHAR table: table_14598_9
SELECT females___percentage_ FROM table_14598_9 WHERE india_state_ut = "Maharashtra"
How many films titled Gie have been nominated?
columns: - name: original_title type: VARCHAR - name: film_title_used_in_nomination type: VARCHAR table: table_13719788_1
SELECT COUNT(original_title) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Gie"
Name the german voice actor for alain dorval
columns: - name: german_voice_actor type: VARCHAR - name: french_voice_actor type: VARCHAR table: table_14960574_6
SELECT german_voice_actor FROM table_14960574_6 WHERE french_voice_actor = "Alain Dorval"
Election results of 1976
columns: - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_1341640_43
SELECT result FROM table_1341640_43 WHERE first_elected = 1976
Name the number of won for maesteg harlequins rfc
columns: - name: won type: VARCHAR - name: club type: VARCHAR table: table_13564702_3
SELECT COUNT(won) FROM table_13564702_3 WHERE club = "Maesteg Harlequins RFC"
WHo won men's singles in 1994?
columns: - name: mens_singles type: VARCHAR - name: year type: VARCHAR table: table_14904221_1
SELECT mens_singles FROM table_14904221_1 WHERE year = 1994
Who was everyone first elected when incumbent was John J. Hemphill?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1431467_4
SELECT first_elected FROM table_1431467_4 WHERE incumbent = "John J. Hemphill"
What club has 536 points for?
columns: - name: club type: VARCHAR - name: points_for type: VARCHAR table: table_13741576_6
SELECT club FROM table_13741576_6 WHERE points_for = "536"
What year was the first election when Fritz G. Lanham was elected?
columns: - name: first_elected type: INTEGER - name: incumbent type: VARCHAR table: table_1342331_43
SELECT MAX(first_elected) FROM table_1342331_43 WHERE incumbent = "Fritz G. Lanham"
who is the the artbeingt with position being 32
columns: - name: artist type: VARCHAR - name: position type: VARCHAR table: table_13789248_2
SELECT artist FROM table_13789248_2 WHERE position = 32
Name the german voice actor for rafael torres
columns: - name: german_voice_actor type: VARCHAR - name: spanish_voice_actor type: VARCHAR table: table_14960574_6
SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = "Rafael Torres"
When temperley is the home (2nd leg) what is the home (1st leg)?
columns: - name: home__1st_leg_ type: VARCHAR - name: home__2nd_leg_ type: VARCHAR table: table_14219514_2
SELECT home__1st_leg_ FROM table_14219514_2 WHERE home__2nd_leg_ = "Temperley"
In what location was the fastest time 1:37.071s?
columns: - name: location type: VARCHAR - name: record type: VARCHAR table: table_14884844_2
SELECT location FROM table_14884844_2 WHERE record = "1:37.071s"
How many points were made when the tries for was 83?
columns: - name: points type: VARCHAR - name: tries_for type: VARCHAR table: table_14058433_3
SELECT points FROM table_14058433_3 WHERE tries_for = "83"
what's the result with district being kansas 1
columns: - name: result type: VARCHAR - name: district type: VARCHAR table: table_1342359_15
SELECT result FROM table_1342359_15 WHERE district = "Kansas 1"
What is the production code for episode 229?
columns: - name: production_code type: INTEGER - name: no_in_series type: VARCHAR table: table_14889988_1
SELECT MAX(production_code) FROM table_14889988_1 WHERE no_in_series = 229
When was Paul Rogers first elected?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1341930_10
SELECT first_elected FROM table_1341930_10 WHERE incumbent = "Paul Rogers"
Who was featured in the election of charles edward bennett redistricted from 2nd?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341843_10
SELECT candidates FROM table_1341843_10 WHERE incumbent = "Charles Edward Bennett Redistricted from 2nd"