question
stringlengths
15
152
context
stringlengths
58
202
answer
stringlengths
37
161
tell the number of times where kansas was the location
columns: - name: rnd type: VARCHAR - name: race type: VARCHAR table: table_13512105_3
SELECT COUNT(rnd) FROM table_13512105_3 WHERE race = "Kansas"
how many turns were completed to make a mean of 34.0
columns: - name: number_of_dances type: VARCHAR - name: average type: VARCHAR table: table_1354805_6
SELECT COUNT(number_of_dances) FROM table_1354805_6 WHERE average = "34.0"
Name the virtual for Fox
columns: - name: virtual type: VARCHAR - name: network type: VARCHAR table: table_14623167_1
SELECT COUNT(virtual) FROM table_14623167_1 WHERE network = "Fox"
Who are all the candidates vying for Henry B. Gonzalez' seat?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341586_44
SELECT candidates FROM table_1341586_44 WHERE incumbent = "Henry B. Gonzalez"
how many airport with rank being 4
columns: - name: airport type: VARCHAR - name: rank type: VARCHAR table: table_13836704_9
SELECT COUNT(airport) FROM table_13836704_9 WHERE rank = 4
What round was held at the Queensland Raceway?
columns: - name: rd type: VARCHAR - name: circuit type: VARCHAR table: table_14016079_1
SELECT rd FROM table_14016079_1 WHERE circuit = "Queensland Raceway"
Name the try bonus for tries against is 70
columns: - name: try_bonus type: VARCHAR - name: tries_against type: VARCHAR table: table_13741576_4
SELECT try_bonus FROM table_13741576_4 WHERE tries_against = "70"
How many instances are there of party in the situation where Robert Bauman is the incumbent politician?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_1341690_20
SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
What are the candidates for new york 35?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342233_32
SELECT candidates FROM table_1342233_32 WHERE district = "New York 35"
Which district has a Republican elected?
columns: - name: district type: VARCHAR - name: party type: VARCHAR table: table_1342315_12
SELECT district FROM table_1342315_12 WHERE party = "Republican"
What year was someone first elected?
columns: - name: first_elected type: INTEGER table: table_1342379_45
SELECT MIN(first_elected) FROM table_1342379_45
Who ran in the race for the seat of incumbent Carl W. Rich?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_37
SELECT candidates FROM table_1341865_37 WHERE incumbent = "Carl W. Rich"
Name the most bits 14-12 for output from accumulator to character bus
columns: - name: bits_14_12 type: INTEGER - name: description type: VARCHAR table: table_14249278_1
SELECT MIN(bits_14_12) FROM table_14249278_1 WHERE description = "Output from accumulator to character bus"
How many points does Clark have?
columns: - name: points type: VARCHAR - name: player type: VARCHAR table: table_14342592_3
SELECT points FROM table_14342592_3 WHERE player = "Clark"
which brand have drivers who won with the names of ryan briscoe and tomas scheckter
columns: - name: winning_team type: VARCHAR - name: winning_driver type: VARCHAR - name: fastest_lap type: VARCHAR table: table_13512105_3
SELECT winning_team FROM table_13512105_3 WHERE winning_driver = "Ryan Briscoe" AND fastest_lap = "Tomas Scheckter"
Who was the high scorer in the game when the team was 1-4?
columns: - name: high_points type: VARCHAR - name: record type: VARCHAR table: table_13619105_3
SELECT high_points FROM table_13619105_3 WHERE record = "1-4"
What district did S. William Green belong to?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341663_33
SELECT district FROM table_1341663_33 WHERE incumbent = "S. William Green"
who is the the mixed doubles with year being 1972
columns: - name: mixed_doubles type: VARCHAR - name: year type: VARCHAR table: table_13857700_1
SELECT mixed_doubles FROM table_13857700_1 WHERE year = 1972
What is the incumbent for 1932?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1342149_13
SELECT incumbent FROM table_1342149_13 WHERE first_elected = 1932
What is the # for the episode with viewing figures of 7.02 million ?
columns: - name: _number type: INTEGER - name: viewing_figure type: VARCHAR table: table_15026994_5
SELECT MAX(_number) FROM table_15026994_5 WHERE viewing_figure = "7.02 million"
what are all the result with district being alabama 1
columns: - name: result type: VARCHAR - name: district type: VARCHAR table: table_1342270_3
SELECT result FROM table_1342270_3 WHERE district = "Alabama 1"
what's the duration with mission being sts-87
columns: - name: duration type: VARCHAR - name: mission type: VARCHAR table: table_14118521_1
SELECT duration FROM table_14118521_1 WHERE mission = "STS-87"
How many districts for rené l. derouen?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_17
SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = "René L. DeRouen"
Who was the offensive award winner the week when Bob Watson was given the overall award?
columns: - name: offensive type: VARCHAR - name: overall type: VARCHAR table: table_14132239_3
SELECT offensive FROM table_14132239_3 WHERE overall = "Bob Watson"
What is hte license for beeone smod/hms software?
columns: - name: license type: VARCHAR - name: software type: VARCHAR table: table_15038373_1
SELECT license FROM table_15038373_1 WHERE software = "BeeOne SMOD/HMS"
What was the incumbent of texas 3?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341663_44
SELECT incumbent FROM table_1341663_44 WHERE district = "Texas 3"
Who's the incumbent of the district with first election held in 1950?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1341843_15
SELECT incumbent FROM table_1341843_15 WHERE first_elected = "1950"
Which district was the race between john i. nolan (r) 87% thomas f. feeley (s) 13%?
columns: - name: district type: VARCHAR - name: candidates type: VARCHAR table: table_1346118_5
SELECT district FROM table_1346118_5 WHERE candidates = "John I. Nolan (R) 87% Thomas F. Feeley (S) 13%"
How many goals Olimpia recorded for 32 matches?
columns: - name: goals_olimpia type: VARCHAR - name: matches type: VARCHAR table: table_13688489_1
SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32
How many losses did 12 de Octubre have ?
columns: - name: losses type: INTEGER - name: team type: VARCHAR table: table_14997324_5
SELECT MIN(losses) FROM table_14997324_5 WHERE team = "12 de Octubre"
who is the the judges with seasons and winners being season 1, 2013–2014: upcoming season
columns: - name: judges type: VARCHAR - name: seasons_and_winners type: VARCHAR table: table_13779832_1
SELECT judges FROM table_13779832_1 WHERE seasons_and_winners = "Season 1, 2013–2014: Upcoming season"
Name the candidates for result of lost renomination democratic loss
columns: - name: candidates type: VARCHAR - name: result type: VARCHAR table: table_1342149_24
SELECT candidates FROM table_1342149_24 WHERE result = "Lost renomination Democratic loss"
when did new zealand last compete?
columns: - name: last_competed type: INTEGER - name: country_territory type: VARCHAR table: table_14308895_2
SELECT MAX(last_competed) FROM table_14308895_2 WHERE country_territory = "New Zealand"
Which party is Lawrence H. Fountain part of?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_1341738_34
SELECT party FROM table_1341738_34 WHERE incumbent = "Lawrence H. Fountain"
When a team wins 4, how much is the Maximum amount of points?
columns: - name: points type: INTEGER - name: wins type: VARCHAR table: table_14889048_2
SELECT MAX(points) FROM table_14889048_2 WHERE wins = 4
Name the candidates for south carolina 3
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1341930_40
SELECT candidates FROM table_1341930_40 WHERE district = "South Carolina 3"
Who were the candidates in the election where John Beatty was the incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1434788_5
SELECT candidates FROM table_1434788_5 WHERE incumbent = "John Beatty"
What year were the election results tom loeffler (r) 80.6% joe sullivan (d) 19.4%?
columns: - name: first_elected type: INTEGER - name: candidates type: VARCHAR table: table_1341598_44
SELECT MIN(first_elected) FROM table_1341598_44 WHERE candidates = "Tom Loeffler (R) 80.6% Joe Sullivan (D) 19.4%"
What arena was season 6 played at?
columns: - name: arena__capacity_ type: VARCHAR - name: previous_season type: VARCHAR table: table_14015965_1
SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "6"
what's the total passengers with freight (metric tonnes) being 827
columns: - name: total_passengers type: VARCHAR - name: freight__metric_tonnes_ type: VARCHAR table: table_13836704_9
SELECT total_passengers FROM table_13836704_9 WHERE freight__metric_tonnes_ = 827
Which episode has been viewed 6.34 million times?
columns: - name: episode type: VARCHAR - name: viewing_figure type: VARCHAR table: table_15026994_3
SELECT episode FROM table_15026994_3 WHERE viewing_figure = "6.34 million"
Name the number of wins for when points is 17
columns: - name: wins type: VARCHAR - name: points type: VARCHAR table: table_14889048_1
SELECT COUNT(wins) FROM table_14889048_1 WHERE points = 17
William Fadjo Cravens serves the fourth district of Arkansas.
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342270_5
SELECT district FROM table_1342270_5 WHERE incumbent = "William Fadjo Cravens"
how many candidates with result being retired to run for u. s. senate republican hold
columns: - name: candidates type: VARCHAR - name: result type: VARCHAR table: table_1341586_19
SELECT COUNT(candidates) FROM table_1341586_19 WHERE result = "Retired to run for U. S. Senate Republican hold"
How low was the San Juan income?
columns: - name: income_poverty_f type: VARCHAR - name: district type: VARCHAR table: table_13618358_1
SELECT income_poverty_f FROM table_13618358_1 WHERE district = "San Juan"
In what district is the incumbent Lawrence J. Smith?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341598_10
SELECT district FROM table_1341598_10 WHERE incumbent = "Lawrence J. Smith"
Which candidates are associated with the Georgia 7 district?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342233_11
SELECT candidates FROM table_1342233_11 WHERE district = "Georgia 7"
what is the value for minimum total wins
columns: - name: total_wins type: INTEGER table: table_1458666_4
SELECT MIN(total_wins) FROM table_1458666_4
Name the opponent for week 12
columns: - name: opponent type: VARCHAR - name: week type: VARCHAR table: table_14418812_1
SELECT opponent FROM table_14418812_1 WHERE week = 12
Which providers use version 2008?
columns: - name: provider type: VARCHAR - name: version type: VARCHAR table: table_14465871_2
SELECT provider FROM table_14465871_2 WHERE version = "2008"
What district is incumbent elmer j. holland from?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1341865_40
SELECT district FROM table_1341865_40 WHERE incumbent = "Elmer J. Holland"
Name the number of class aa for bridgeport and 1999-2000
columns: - name: class_aA type: VARCHAR - name: class_aAA type: VARCHAR - name: Bridgeport type: VARCHAR - name: school_year type: VARCHAR table: table_14601528_2
SELECT COUNT(class_aA) FROM table_14601528_2 WHERE class_aAA = Bridgeport AND school_year = "1999-2000"
Name the number of teams for college/junior club for philadelphia flyers
columns: - name: college_junior_club_team type: VARCHAR - name: nhl_team type: VARCHAR table: table_1473672_4
SELECT COUNT(college_junior_club_team) FROM table_1473672_4 WHERE nhl_team = "Philadelphia Flyers"
When did the 55 kg participant race?
columns: - name: date type: VARCHAR - name: weight__kg_ type: VARCHAR table: table_14981555_1
SELECT date FROM table_14981555_1 WHERE weight__kg_ = "55"
In which position is the team Cerro Porteño?
columns: - name: position type: VARCHAR - name: team type: VARCHAR table: table_14911550_5
SELECT position FROM table_14911550_5 WHERE team = "Cerro Porteño"
It was announced on July 2, 2006 that what asset was acquired?
columns: - name: asset_acquired type: VARCHAR - name: date_announced type: VARCHAR table: table_1373542_1
SELECT asset_acquired FROM table_1373542_1 WHERE date_announced = "July 2, 2006"
Which nationality is the player from the Philadelphia Flyers?
columns: - name: nationality type: VARCHAR - name: nhl_team type: VARCHAR table: table_1473672_3
SELECT nationality FROM table_1473672_3 WHERE nhl_team = "Philadelphia Flyers"
What was the margin of victory in the year when the honoree was Tommy Armour?
columns: - name: margin_of_victory type: VARCHAR - name: honoree_s_ type: VARCHAR table: table_1515346_2
SELECT margin_of_victory FROM table_1515346_2 WHERE honoree_s_ = "Tommy Armour"
How many candidates ran in the election in the Arkansas 4 district?
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342359_4
SELECT COUNT(candidates) FROM table_1342359_4 WHERE district = "Arkansas 4"
What year was incumbent joe b. bates first elected?
columns: - name: first_elected type: VARCHAR - name: incumbent type: VARCHAR table: table_1342233_17
SELECT first_elected FROM table_1342233_17 WHERE incumbent = "Joe B. Bates"
What are the records when Elzbieta Urbanczik competed?
columns: - name: record type: VARCHAR - name: athletes type: VARCHAR table: table_14884844_2
SELECT record FROM table_14884844_2 WHERE athletes = "Elzbieta Urbanczik"
who won in the race in the section georgia 5
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1342393_10
SELECT incumbent FROM table_1342393_10 WHERE district = "Georgia 5"
Name the opponent for astrodome
columns: - name: opponent type: VARCHAR - name: game_site type: VARCHAR table: table_14418812_1
SELECT opponent FROM table_14418812_1 WHERE game_site = "Astrodome"
Name the santee sisseton for morning
columns: - name: santee_sisseton type: VARCHAR - name: english_gloss type: VARCHAR table: table_1499791_2
SELECT santee_sisseton FROM table_1499791_2 WHERE english_gloss = "morning"
what's the pts with team being kopron team scot
columns: - name: pts type: VARCHAR - name: team type: VARCHAR table: table_14139408_1
SELECT pts FROM table_14139408_1 WHERE team = "Kopron team Scot"
what's the circuit with rnd being 5
columns: - name: circuit type: VARCHAR - name: rnd type: VARCHAR table: table_14638077_2
SELECT circuit FROM table_14638077_2 WHERE rnd = 5
Name the number of branding for 31 physical
columns: - name: branding type: VARCHAR - name: physical type: VARCHAR table: table_14623167_1
SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31
Who did the Raptors play against when their record was 13-48?
columns: - name: team type: VARCHAR - name: record type: VARCHAR table: table_13619053_8
SELECT team FROM table_13619053_8 WHERE record = "13-48"
Name the publisher for resident evil 4
columns: - name: publisher_s_ type: VARCHAR - name: video_game type: VARCHAR table: table_14325653_2
SELECT publisher_s_ FROM table_14325653_2 WHERE video_game = "Resident Evil 4"
What was the net seat gain in the race john a. elston (r) 88.4% luella twining (s) 11.6%?
columns: - name: result type: VARCHAR - name: candidates type: VARCHAR table: table_1346118_5
SELECT result FROM table_1346118_5 WHERE candidates = "John A. Elston (R) 88.4% Luella Twining (S) 11.6%"
Omar Burleson was the incumbent in what district?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342013_42
SELECT district FROM table_1342013_42 WHERE incumbent = "Omar Burleson"
who directed with original air date being november18,1995
columns: - name: directed_by type: VARCHAR - name: original_air_date type: VARCHAR table: table_14637853_3
SELECT directed_by FROM table_14637853_3 WHERE original_air_date = "November18,1995"
What capital has a population of 596268?
columns: - name: capital type: VARCHAR - name: population_census_2009 type: VARCHAR table: table_1404414_2
SELECT capital FROM table_1404414_2 WHERE population_census_2009 = 596268
what's the fcc info with call sign being w221aw
columns: - name: fcc_info type: VARCHAR - name: call_sign type: VARCHAR table: table_13998897_1
SELECT fcc_info FROM table_13998897_1 WHERE call_sign = "W221AW"
Where is California Lutheran University located?
columns: - name: location type: VARCHAR - name: institution type: VARCHAR table: table_14976504_2
SELECT COUNT(location) FROM table_14976504_2 WHERE institution = "California Lutheran University"
Name the result for william j. driver
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1342426_5
SELECT result FROM table_1342426_5 WHERE incumbent = "William J. Driver"
What is the result in 91-92 for the team with a 1.053 average?
columns: - name: average type: VARCHAR table: table_14368332_1
SELECT 1991 AS _92 FROM table_14368332_1 WHERE average = "1.053"
How many districts have an incumbent first elected in 1940?
columns: - name: district type: VARCHAR - name: first_elected type: VARCHAR table: table_1342256_10
SELECT COUNT(district) FROM table_1342256_10 WHERE first_elected = 1940
How many years have a film that uses the title "Nagabonar" in the nomination?
columns: - name: year__ceremony_ type: VARCHAR - name: film_title_used_in_nomination type: VARCHAR table: table_13719788_1
SELECT COUNT(year__ceremony_) FROM table_13719788_1 WHERE film_title_used_in_nomination = "Nagabonar"
What year was Otto Passman (d) unopposed first elected?
columns: - name: first_elected type: INTEGER - name: candidates type: VARCHAR table: table_1341690_18
SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed"
Name the womens doubles when mens doubles is charalambos kazilas stepan partemian
columns: - name: womens_doubles type: VARCHAR - name: mens_doubles type: VARCHAR table: table_14903881_1
SELECT womens_doubles FROM table_14903881_1 WHERE mens_doubles = "Charalambos Kazilas Stepan Partemian"
what's the trim with fuel mileage (latest epa mpg - us ) being 22 city, 30 hwy, 25 comb
columns: - name: trim type: VARCHAR - name: fuel_mileage__latest_epa_mpg___us__ type: VARCHAR table: table_1373768_1
SELECT trim FROM table_1373768_1 WHERE fuel_mileage__latest_epa_mpg___us__ = "22 city, 30 hwy, 25 comb"
What week of the season did the date December 2, 1962 fall on?
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_14984078_1
SELECT week FROM table_14984078_1 WHERE date = "December 2, 1962"
When was there 8.9% Green-Communist?
columns: - name: date_released type: VARCHAR - name: green_communist type: VARCHAR table: table_1463383_1
SELECT date_released FROM table_1463383_1 WHERE green_communist = "8.9%"
What is the number of candidates for pennsylvania 21
columns: - name: candidates type: VARCHAR - name: district type: VARCHAR table: table_1342198_38
SELECT COUNT(candidates) FROM table_1342198_38 WHERE district = "Pennsylvania 21"
What district has Riley Joseph Wilson as the incumbent?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342331_18
SELECT district FROM table_1342331_18 WHERE incumbent = "Riley Joseph Wilson"
What is the name of the incumbent who was first eleccted in 1940?
columns: - name: incumbent type: VARCHAR - name: first_elected type: VARCHAR table: table_1341738_19
SELECT incumbent FROM table_1341738_19 WHERE first_elected = 1940
How many districts does riley joseph wilson?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342315_17
SELECT COUNT(district) FROM table_1342315_17 WHERE incumbent = "Riley Joseph Wilson"
What was the result of the Tennessee 2 district election?
columns: - name: result type: VARCHAR - name: district type: VARCHAR table: table_1342270_42
SELECT result FROM table_1342270_42 WHERE district = "Tennessee 2"
What was the series count at on May 23?
columns: - name: series type: VARCHAR - name: date type: VARCHAR table: table_13762472_13
SELECT series FROM table_13762472_13 WHERE date = "May 23"
Name the mandate for list pct 12.39%
columns: - name: mandate type: VARCHAR - name: list_pct type: VARCHAR table: table_14834801_1
SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%"
How many members gained university status in 1900?
columns: - name: research_funding__ type: VARCHAR - name: gained_university_status type: VARCHAR table: table_142950_1
SELECT COUNT(research_funding__) AS £, 000 AS _ FROM table_142950_1 WHERE gained_university_status = 1900
What was the result of the election when Clarence F. Lea was the incumbent?
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1346118_5
SELECT result FROM table_1346118_5 WHERE incumbent = "Clarence F. Lea"
What are the international tourist arrivals in 2010 where change from 2010 to 2011 is +11.2% ?
columns: - name: international_tourist_arrivals__2010_ type: VARCHAR - name: change__2010_to_2011_ type: VARCHAR table: table_14752049_2
SELECT international_tourist_arrivals__2010_ FROM table_14752049_2 WHERE change__2010_to_2011_ = "+11.2%"
what's the frequency mhz with city of license being chattanooga, tennessee
columns: - name: frequency_mhz type: VARCHAR - name: city_of_license type: VARCHAR table: table_13998897_1
SELECT frequency_mhz FROM table_13998897_1 WHERE city_of_license = "Chattanooga, Tennessee"
How many extra points did Paul Dickey received
columns: - name: extra_points_1_point type: INTEGER - name: player type: VARCHAR table: table_14342367_15
SELECT MAX(extra_points_1_point) FROM table_14342367_15 WHERE player = "Paul Dickey"
Name the result for first elected of 1920
columns: - name: result type: VARCHAR - name: first_elected type: VARCHAR table: table_1342149_24
SELECT result FROM table_1342149_24 WHERE first_elected = 1920
what is the arrival time for no. 14?
columns: - name: arrival type: VARCHAR - name: 'no' type: VARCHAR table: table_14688744_2
SELECT arrival FROM table_14688744_2 WHERE no = 14
what's incumbent with district being tennessee 5
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_1341865_44
SELECT incumbent FROM table_1341865_44 WHERE district = "Tennessee 5"
What was the average finish when the average start was 18.4?
columns: - name: avg_finish type: VARCHAR - name: avg_start type: VARCHAR table: table_1507423_4
SELECT avg_finish FROM table_1507423_4 WHERE avg_start = "18.4"
README.md exists but content is empty. Use the Edit dataset card button to edit it.
Downloads last month
0
Edit dataset card