Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
20,600
<question>: What is the maximum money list rank for Matt Hansen? <context>: CREATE TABLE table_24747844_2 (money_list_rank INTEGER, player VARCHAR) <answer>: SELECT MAX(money_list_rank) FROM table_24747844_2 WHERE player = "Matt Hansen"
20,601
<question>: What is the minimum money list rank for the players having a best finish of T9? <context>: CREATE TABLE table_24747844_2 (money_list_rank INTEGER, best_finish VARCHAR) <answer>: SELECT MIN(money_list_rank) FROM table_24747844_2 WHERE best_finish = "T9"
20,602
<question>: What is the minimum number of starts for the players having a best finish of T18? <context>: CREATE TABLE table_24747844_2 (starts INTEGER, best_finish VARCHAR) <answer>: SELECT MIN(starts) FROM table_24747844_2 WHERE best_finish = "T18"
20,603
<question>: What is the minimum number of cuts made for Hunter Mahan? <context>: CREATE TABLE table_24747844_2 (cuts_made INTEGER, player VARCHAR) <answer>: SELECT MIN(cuts_made) FROM table_24747844_2 WHERE player = "Hunter Mahan"
20,604
<question>: What was the profession of the celebrity who was featured on season 15 and finished 7th place? <context>: CREATE TABLE table_24775967_1 (notability_profession VARCHAR, season VARCHAR, finish VARCHAR) <answer>: SELECT notability_profession FROM table_24775967_1 WHERE season = 15 AND finish = "7th"
20,605
<question>: When winner is the outcome what is the score? <context>: CREATE TABLE table_24901152_2 (score VARCHAR, outcome VARCHAR) <answer>: SELECT score FROM table_24901152_2 WHERE outcome = "Winner"
20,606
<question>: When us open (2) is the championship what is the surface? <context>: CREATE TABLE table_24901152_2 (surface VARCHAR, championship VARCHAR) <answer>: SELECT surface FROM table_24901152_2 WHERE championship = "US Open (2)"
20,607
<question>: When Australian open is the championship what is the lowest year? <context>: CREATE TABLE table_24901152_2 (year INTEGER, championship VARCHAR) <answer>: SELECT MIN(year) FROM table_24901152_2 WHERE championship = "Australian Open"
20,608
<question>: When alicia molik is the partner what is the outcome? <context>: CREATE TABLE table_24901152_2 (outcome VARCHAR, partner VARCHAR) <answer>: SELECT outcome FROM table_24901152_2 WHERE partner = "Alicia Molik"
20,609
<question>: When did they win 7 races? <context>: CREATE TABLE table_24937583_1 (seasons VARCHAR, wins VARCHAR) <answer>: SELECT seasons FROM table_24937583_1 WHERE wins = 7
20,610
<question>: What were the starts when the points dropped 18? <context>: CREATE TABLE table_24937583_1 (races__starts_ VARCHAR, points__dropped_points_ VARCHAR) <answer>: SELECT races__starts_ FROM table_24937583_1 WHERE points__dropped_points_ = "18"
20,611
<question>: What is the minimum amount of poles? <context>: CREATE TABLE table_24937583_1 (poles INTEGER) <answer>: SELECT MIN(poles) FROM table_24937583_1
20,612
<question>: What was the least amount of wins? <context>: CREATE TABLE table_24937583_1 (wins INTEGER) <answer>: SELECT MIN(wins) FROM table_24937583_1
20,613
<question>: What is the value for congi core 1 if the code name is Redwood and core clock(mhz) is 500? <context>: CREATE TABLE table_25005714_3 (config_core_1 VARCHAR, code_name VARCHAR, core_clock___mhz__ VARCHAR) <answer>: SELECT config_core_1 FROM table_25005714_3 WHERE code_name = "Redwood" AND core_clock___mhz__ =...
20,614
<question>: What is every bus type for the texture of fillrate? <context>: CREATE TABLE table_25005714_3 (bus_type VARCHAR, texture___gt__s_ VARCHAR) <answer>: SELECT bus_type FROM table_25005714_3 WHERE texture___gt__s_ = "Fillrate"
20,615
<question>: What is every code name for the model Radeon HD 6650m? <context>: CREATE TABLE table_25005714_3 (code_name VARCHAR, model VARCHAR) <answer>: SELECT code_name FROM table_25005714_3 WHERE model = "Radeon HD 6650M"
20,616
<question>: What place is there a change of -19.3? <context>: CREATE TABLE table_2500440_1 (name VARCHAR, change___percentage_ VARCHAR) <answer>: SELECT COUNT(name) FROM table_2500440_1 WHERE change___percentage_ = "-19.3"
20,617
<question>: What is the density per km in Smoky Lake County? <context>: CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, municipal_district VARCHAR) <answer>: SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE municipal_district = "Smoky Lake County"
20,618
<question>: What is the population per km2 in Fishing Lake? <context>: CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR) <answer>: SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = "Fishing Lake"
20,619
<question>: What is the population density in Buffalo Lake? <context>: CREATE TABLE table_2500440_1 (population_density__per_km_2__ VARCHAR, name VARCHAR) <answer>: SELECT population_density__per_km_2__ FROM table_2500440_1 WHERE name = "Buffalo Lake"
20,620
<question>: How many years was lynn muscarella the high school principal and charlie wiltse the superintendent? <context>: CREATE TABLE table_25037577_1 (year VARCHAR, high_school_principal VARCHAR, superintendent VARCHAR) <answer>: SELECT COUNT(year) FROM table_25037577_1 WHERE high_school_principal = "Lynn Muscarella...
20,621
<question>: Who were the superintendent(s) when the middle school principal was alan degroote, the gorham principal was paul lahue, and the year was 2006-2007? <context>: CREATE TABLE table_25037577_1 (superintendent VARCHAR, year VARCHAR, middle_school_principal VARCHAR, gorham_principal VARCHAR) <answer>: SELECT supe...
20,622
<question>: Who was the gorham principal in 2010-2011? <context>: CREATE TABLE table_25037577_1 (gorham_principal VARCHAR, year VARCHAR) <answer>: SELECT gorham_principal FROM table_25037577_1 WHERE year = "2010-2011"
20,623
<question>: How many middlesex principals were there in 2000-2001? <context>: CREATE TABLE table_25037577_1 (middlesex_principal VARCHAR, year VARCHAR) <answer>: SELECT COUNT(middlesex_principal) FROM table_25037577_1 WHERE year = "2000-2001"
20,624
<question>: How many high school principals were there in 2000-2001? <context>: CREATE TABLE table_25037577_1 (high_school_principal VARCHAR, year VARCHAR) <answer>: SELECT high_school_principal FROM table_25037577_1 WHERE year = "2000-2001"
20,625
<question>: Who were the middle school principal(s) in 2010-2011? <context>: CREATE TABLE table_25037577_1 (middle_school_principal VARCHAR, year VARCHAR) <answer>: SELECT middle_school_principal FROM table_25037577_1 WHERE year = "2010-2011"
20,626
<question>: When Mark Cavendish wins sprint classification and Maarten Tjallingii wins most courageous, who wins youth classification? <context>: CREATE TABLE table_25055040_22 (youth_classification VARCHAR, sprint_classification VARCHAR, most_courageous VARCHAR) <answer>: SELECT youth_classification FROM table_2505504...
20,627
<question>: Who won the mountains classification when Maarten Tjallingii won most corageous? <context>: CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR) <answer>: SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = "Maarten Tjallingii"
20,628
<question>: When Brett Lancaster won the general classification, who won the team calssification? <context>: CREATE TABLE table_25055040_22 (team_classification VARCHAR, general_classification VARCHAR) <answer>: SELECT team_classification FROM table_25055040_22 WHERE general_classification = "Brett Lancaster"
20,629
<question>: When Peter Sagan won the youth classification and Thomas Rabou won the most corageous, who won the sprint classification? <context>: CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, youth_classification VARCHAR, most_courageous VARCHAR) <answer>: SELECT sprint_classification FROM table_2505504...
20,630
<question>: When Yaroslav Popovych won most corageous, who won the mountains classification? <context>: CREATE TABLE table_25055040_22 (mountains_classification VARCHAR, most_courageous VARCHAR) <answer>: SELECT mountains_classification FROM table_25055040_22 WHERE most_courageous = "Yaroslav Popovych"
20,631
<question>: When Ryan Anderson won the mountains classification, and Michael Rogers won the general classification, who won the sprint classification? <context>: CREATE TABLE table_25055040_22 (sprint_classification VARCHAR, mountains_classification VARCHAR, general_classification VARCHAR) <answer>: SELECT sprint_class...
20,632
<question>: What the rank in the top 10 when the winnings were $1,741,176? <context>: CREATE TABLE table_2506300_1 (top_10 INTEGER, winnings VARCHAR) <answer>: SELECT MIN(top_10) FROM table_2506300_1 WHERE winnings = "$1,741,176"
20,633
<question>: when the gdp per emissions (in us dollars per ton) is 3903, what is the maximum annual co2 emissions (in thousands of metric tons)? <context>: CREATE TABLE table_2508175_1 (annual_co2_emissions__in_thousands_of_metric_tons_ INTEGER, gdp_per_emissions__in_us_dollars_per_ton_ VARCHAR) <answer>: SELECT MAX(ann...
20,634
<question>: when the annual co2 emissions (in thousands of metric tons) is 1811, what is the country? <context>: CREATE TABLE table_2508175_1 (country VARCHAR, annual_co2_emissions__in_thousands_of_metric_tons_ VARCHAR) <answer>: SELECT country FROM table_2508175_1 WHERE annual_co2_emissions__in_thousands_of_metric_ton...
20,635
<question>: What pick number did the buffalo bills get? <context>: CREATE TABLE table_2508633_5 (pick__number VARCHAR, nfl_team VARCHAR) <answer>: SELECT pick__number FROM table_2508633_5 WHERE nfl_team = "Buffalo Bills"
20,636
<question>: What was bruce baldwin's pick #? <context>: CREATE TABLE table_2508633_5 (pick__number VARCHAR, player VARCHAR) <answer>: SELECT pick__number FROM table_2508633_5 WHERE player = "Bruce Baldwin"
20,637
<question>: What is the highest pick number the los angeles raiders got? <context>: CREATE TABLE table_2508633_5 (pick__number INTEGER, nfl_team VARCHAR) <answer>: SELECT MAX(pick__number) FROM table_2508633_5 WHERE nfl_team = "Los Angeles Raiders"
20,638
<question>: Which player did the green bay packers pick? <context>: CREATE TABLE table_2508633_5 (player VARCHAR, nfl_team VARCHAR) <answer>: SELECT player FROM table_2508633_5 WHERE nfl_team = "Green Bay Packers"
20,639
<question>: How many players did the philadelphia eagles pick? <context>: CREATE TABLE table_2508633_5 (position VARCHAR, nfl_team VARCHAR) <answer>: SELECT COUNT(position) FROM table_2508633_5 WHERE nfl_team = "Philadelphia Eagles"
20,640
<question>: Mame the reg season for 2001 <context>: CREATE TABLE table_2511876_1 (reg_season VARCHAR, year VARCHAR) <answer>: SELECT reg_season FROM table_2511876_1 WHERE year = 2001
20,641
<question>: Name the league for 2003 <context>: CREATE TABLE table_2511876_1 (league VARCHAR, year VARCHAR) <answer>: SELECT league FROM table_2511876_1 WHERE year = 2003
20,642
<question>: Name the number of playoffs for 3rd round <context>: CREATE TABLE table_2511876_1 (playoffs VARCHAR, open_cup VARCHAR) <answer>: SELECT COUNT(playoffs) FROM table_2511876_1 WHERE open_cup = "3rd Round"
20,643
<question>: Name the total number of years for usisl pro league <context>: CREATE TABLE table_2511876_1 (year VARCHAR, league VARCHAR) <answer>: SELECT COUNT(year) FROM table_2511876_1 WHERE league = "USISL Pro league"
20,644
<question>: Name the playoffs for usisl select league <context>: CREATE TABLE table_2511876_1 (playoffs VARCHAR, league VARCHAR) <answer>: SELECT playoffs FROM table_2511876_1 WHERE league = "USISL Select league"
20,645
<question>: What position did the driver earn 31 points? <context>: CREATE TABLE table_25146455_1 (position VARCHAR, points VARCHAR) <answer>: SELECT position FROM table_25146455_1 WHERE points = 31
20,646
<question>: In what series did Bobby Labonte drive? <context>: CREATE TABLE table_25146455_1 (series VARCHAR, driver VARCHAR) <answer>: SELECT series FROM table_25146455_1 WHERE driver = "Bobby Labonte"
20,647
<question>: In what position was the driver who won $60,000? <context>: CREATE TABLE table_25146455_1 (position INTEGER, winnings VARCHAR) <answer>: SELECT MIN(position) FROM table_25146455_1 WHERE winnings = "$60,000"
20,648
<question>: How much did Jeff Burton win? <context>: CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR) <answer>: SELECT winnings FROM table_25146455_1 WHERE driver = "Jeff Burton"
20,649
<question>: How much did Kenny Brack win? <context>: CREATE TABLE table_25146455_1 (winnings VARCHAR, driver VARCHAR) <answer>: SELECT winnings FROM table_25146455_1 WHERE driver = "Kenny Brack"
20,650
<question>: what is the special edition for the english version of james baskett? <context>: CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR) <answer>: SELECT special_edition FROM table_25173505_13 WHERE english_version = "James Baskett"
20,651
<question>: what is the special edition where the english version is nick stewart? <context>: CREATE TABLE table_25173505_13 (special_edition VARCHAR, english_version VARCHAR) <answer>: SELECT special_edition FROM table_25173505_13 WHERE english_version = "Nick Stewart"
20,652
<question>: what is the english version that is buena vista edition is daisuke gouri? <context>: CREATE TABLE table_25173505_13 (english_version VARCHAR, buena_vista_edition VARCHAR) <answer>: SELECT english_version FROM table_25173505_13 WHERE buena_vista_edition = "Daisuke Gouri"
20,653
<question>: who is the character where the special edition is koichi sakaguchi? <context>: CREATE TABLE table_25173505_13 (character VARCHAR, special_edition VARCHAR) <answer>: SELECT character FROM table_25173505_13 WHERE special_edition = "Koichi Sakaguchi"
20,654
<question>: who is the buena vista edidtion where special edition is koichi sakaguchi? <context>: CREATE TABLE table_25173505_13 (buena_vista_edition VARCHAR, special_edition VARCHAR) <answer>: SELECT buena_vista_edition FROM table_25173505_13 WHERE special_edition = "Koichi Sakaguchi"
20,655
<question>: How many contestants were there when the runner-up was Monique Evans? <context>: CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR) <answer>: SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Monique Evans"
20,656
<question>: How many contestants were there when the runner-up was Sérgio Abreu? <context>: CREATE TABLE table_25214321_1 (contestants INTEGER, runner_up VARCHAR) <answer>: SELECT MAX(contestants) FROM table_25214321_1 WHERE runner_up = "Sérgio Abreu"
20,657
<question>: In what season was the winner Dado Dolabella? <context>: CREATE TABLE table_25214321_1 (season INTEGER, winner VARCHAR) <answer>: SELECT MAX(season) FROM table_25214321_1 WHERE winner = "Dado Dolabella"
20,658
<question>: Who was the winner when Mateus Rocha finished in 3rd place? <context>: CREATE TABLE table_25214321_1 (winner VARCHAR, third_place VARCHAR) <answer>: SELECT winner FROM table_25214321_1 WHERE third_place = "Mateus Rocha"
20,659
<question>: In what season did Raquel Pacheco finish in third place? <context>: CREATE TABLE table_25214321_1 (season VARCHAR, third_place VARCHAR) <answer>: SELECT season FROM table_25214321_1 WHERE third_place = "Raquel Pacheco"
20,660
<question>: Who finished in third place when the winner was Karina Bacchi? <context>: CREATE TABLE table_25214321_1 (third_place VARCHAR, winner VARCHAR) <answer>: SELECT third_place FROM table_25214321_1 WHERE winner = "Karina Bacchi"
20,661
<question>: List the branding name for channel tv-62. <context>: CREATE TABLE table_2523809_1 (branding VARCHAR, channel VARCHAR) <answer>: SELECT branding FROM table_2523809_1 WHERE channel = "TV-62"
20,662
<question>: Which area did estrella tv 62 provide coverage for? <context>: CREATE TABLE table_2523809_1 (coverage VARCHAR, branding VARCHAR) <answer>: SELECT coverage FROM table_2523809_1 WHERE branding = "Estrella TV 62"
20,663
<question>: List the power output for Phoenix. <context>: CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, coverage VARCHAR) <answer>: SELECT power__kw_ FROM table_2523809_1 WHERE coverage = "Phoenix"
20,664
<question>: List the branding for krca-tv. <context>: CREATE TABLE table_2523809_1 (branding VARCHAR, callsign VARCHAR) <answer>: SELECT branding FROM table_2523809_1 WHERE callsign = "KRCA-TV"
20,665
<question>: What's the power output for channel tv-29? <context>: CREATE TABLE table_2523809_1 (power__kw_ VARCHAR, channel VARCHAR) <answer>: SELECT power__kw_ FROM table_2523809_1 WHERE channel = "TV-29"
20,666
<question>: Which city did kpnz-tv provide coverage for? <context>: CREATE TABLE table_2523809_1 (coverage VARCHAR, callsign VARCHAR) <answer>: SELECT coverage FROM table_2523809_1 WHERE callsign = "KPNZ-TV"
20,667
<question>: What is the maximum renewable energy (gw×h) for the state of Delaware? <context>: CREATE TABLE table_25244412_1 (renewable_electricity__gw INTEGER, state VARCHAR) <answer>: SELECT MAX(renewable_electricity__gw) AS •h_ FROM table_25244412_1 WHERE state = "Delaware"
20,668
<question>: Which state has 5179 (gw×h) of renewable energy without hydrogen power?wha <context>: CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity_w_o_hydro__gw•h_ VARCHAR) <answer>: SELECT state FROM table_25244412_1 WHERE renewable_electricity_w_o_hydro__gw•h_ = 5179
20,669
<question>: When renewable electricity is 5760 (gw×h) what is the minimum amount of renewable elecrrixity without hydrogen power? <context>: CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw INTEGER, renewable_electricity__gw•h_ VARCHAR) <answer>: SELECT MIN(renewable_electricity_w_o_hydro__gw) AS •h_ ...
20,670
<question>: What is the amount of renewable electricity without hydrogen power when the percentage of renewable energy is 83.4? <context>: CREATE TABLE table_25244412_1 (renewable_electricity_w_o_hydro__gw•h_ VARCHAR, _percentage_renewable VARCHAR) <answer>: SELECT renewable_electricity_w_o_hydro__gw•h_ FROM table_2524...
20,671
<question>: Which states have renewable electricity equal to 9667 (gw×h)? <context>: CREATE TABLE table_25244412_1 (state VARCHAR, renewable_electricity__gw•h_ VARCHAR) <answer>: SELECT state FROM table_25244412_1 WHERE renewable_electricity__gw•h_ = 9667
20,672
<question>: What is shown for august 21-22 when november 3 is november 3, 1994? <context>: CREATE TABLE table_25252080_3 (august_21_22 VARCHAR, november_3 VARCHAR) <answer>: SELECT august_21_22 FROM table_25252080_3 WHERE november_3 = "november_3, 1994"
20,673
<question>: What is the number for march 27-29 whern november 3 is 153? <context>: CREATE TABLE table_25252080_3 (march_27_29 VARCHAR, november_3 VARCHAR) <answer>: SELECT march_27_29 FROM table_25252080_3 WHERE november_3 = "153"
20,674
<question>: What number is shown for january 15-16 when november 3 is 133? <context>: CREATE TABLE table_25252080_3 (january_15_16 VARCHAR, november_3 VARCHAR) <answer>: SELECT january_15_16 FROM table_25252080_3 WHERE november_3 = "133"
20,675
<question>: What is shown for november 3 when june 10-11 is june 10, 1964? <context>: CREATE TABLE table_25252080_3 (november_3 VARCHAR, june_10_11 VARCHAR) <answer>: SELECT november_3 FROM table_25252080_3 WHERE june_10_11 = "June 10, 1964"
20,676
<question>: november 3 where march 27-29 is 149? <context>: CREATE TABLE table_25252080_3 (november_3 VARCHAR, march_27_29 VARCHAR) <answer>: SELECT november_3 FROM table_25252080_3 WHERE march_27_29 = "149"
20,677
<question>: What number is shown for november 3 where january 15-16 is 151? <context>: CREATE TABLE table_25252080_3 (november_3 VARCHAR, january_15_16 VARCHAR) <answer>: SELECT november_3 FROM table_25252080_3 WHERE january_15_16 = "151"
20,678
<question>: What year were outputs is 2x pro bias, rca loop out and notes is vacuum tube released? <context>: CREATE TABLE table_25276250_3 (release_year VARCHAR, outputs VARCHAR, notes VARCHAR) <answer>: SELECT release_year FROM table_25276250_3 WHERE outputs = "2x Pro Bias, RCA Loop Out" AND notes = "Vacuum tube"
20,679
<question>: How many outputs are there for solid state, battery operated for portable use listed in notes? <context>: CREATE TABLE table_25276250_3 (outputs VARCHAR, notes VARCHAR) <answer>: SELECT COUNT(outputs) FROM table_25276250_3 WHERE notes = "Solid state, battery operated for portable use"
20,680
<question>: Who sang for the movie Amar Deep? <context>: CREATE TABLE table_2528382_5 (singer VARCHAR, movie_album VARCHAR) <answer>: SELECT singer FROM table_2528382_5 WHERE movie_album = "Amar Deep"
20,681
<question>: What movie did Vijayalaxmi Co-star in and Shakeel Badayuni write the lyrics? <context>: CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR, lyricist VARCHAR) <answer>: SELECT movie_album FROM table_2528382_5 WHERE co_stars = "VijayaLaxmi" AND lyricist = "Shakeel Badayuni"
20,682
<question>: What year did Naushad Direct the Music? <context>: CREATE TABLE table_2528382_5 (year INTEGER, music_director VARCHAR) <answer>: SELECT MAX(year) FROM table_2528382_5 WHERE music_director = "Naushad"
20,683
<question>: How many co-singers were there when Parveen Babi co-starred? <context>: CREATE TABLE table_2528382_5 (singers VARCHAR, Co VARCHAR, co_stars VARCHAR) <answer>: SELECT COUNT(Co) - singers FROM table_2528382_5 WHERE co_stars = "Parveen Babi"
20,684
<question>: What movie did Bela Bose co-star in? <context>: CREATE TABLE table_2528382_5 (movie_album VARCHAR, co_stars VARCHAR) <answer>: SELECT movie_album FROM table_2528382_5 WHERE co_stars = "Bela Bose"
20,685
<question>: Who wrote the lyrics when Jeevankala co-starred? <context>: CREATE TABLE table_2528382_5 (lyricist VARCHAR, co_stars VARCHAR) <answer>: SELECT lyricist FROM table_2528382_5 WHERE co_stars = "Jeevankala"
20,686
<question>: How many episodes are written by Lew Schneider? <context>: CREATE TABLE table_25356350_2 (series__number VARCHAR, written_by VARCHAR) <answer>: SELECT COUNT(series__number) FROM table_25356350_2 WHERE written_by = "Lew Schneider"
20,687
<question>: What is the title of the episode written by Jack Orman? <context>: CREATE TABLE table_25356350_2 (title VARCHAR, written_by VARCHAR) <answer>: SELECT title FROM table_25356350_2 WHERE written_by = "Jack Orman"
20,688
<question>: How many viewers (in millions) did episode 1 have? <context>: CREATE TABLE table_25356350_2 (viewers__in_millions_ VARCHAR, series__number VARCHAR) <answer>: SELECT viewers__in_millions_ FROM table_25356350_2 WHERE series__number = 1
20,689
<question>: How many games played catagories are there for Lauren McGee? <context>: CREATE TABLE table_25401874_1 (games_played VARCHAR, name VARCHAR) <answer>: SELECT COUNT(games_played) FROM table_25401874_1 WHERE name = "Lauren McGee"
20,690
<question>: How many numbers belong to the player with 10 assists? <context>: CREATE TABLE table_25401874_1 (number VARCHAR, assists VARCHAR) <answer>: SELECT COUNT(number) FROM table_25401874_1 WHERE assists = 10
20,691
<question>: How many names are listed for the player with 50 points? <context>: CREATE TABLE table_25401874_1 (name VARCHAR, points VARCHAR) <answer>: SELECT COUNT(name) FROM table_25401874_1 WHERE points = 50
20,692
<question>: What type of school is in swarthmore, pennsylvania? <context>: CREATE TABLE table_254776_1 (type VARCHAR, location VARCHAR) <answer>: SELECT type FROM table_254776_1 WHERE location = "Swarthmore, Pennsylvania"
20,693
<question>: When was Dickinson College founded? <context>: CREATE TABLE table_254776_1 (founded VARCHAR, institution VARCHAR) <answer>: SELECT founded FROM table_254776_1 WHERE institution = "Dickinson College"
20,694
<question>: How many F.L. are listed for Formula Three Euroseries? <context>: CREATE TABLE table_25548630_1 (fl VARCHAR, series VARCHAR) <answer>: SELECT COUNT(fl) FROM table_25548630_1 WHERE series = "Formula Three Euroseries"
20,695
<question>: What are the most poles listed? <context>: CREATE TABLE table_25548630_1 (poles INTEGER) <answer>: SELECT MAX(poles) FROM table_25548630_1
20,696
<question>: What is the least amount of podiums? <context>: CREATE TABLE table_25548630_1 (podiums INTEGER) <answer>: SELECT MIN(podiums) FROM table_25548630_1
20,697
<question>: How many points does Marussia Manor Racing have? <context>: CREATE TABLE table_25548630_1 (points VARCHAR, team VARCHAR) <answer>: SELECT COUNT(points) FROM table_25548630_1 WHERE team = "Marussia Manor Racing"
20,698
<question>: What are all the vicinity (km²) where profits magnificence (2007) is 2nd <context>: CREATE TABLE table_255812_1 (area__km²_ VARCHAR, income_class__2007_ VARCHAR) <answer>: SELECT area__km²_ FROM table_255812_1 WHERE income_class__2007_ = "2nd"
20,699
<question>: What are all the profits elegance (2007) in which mayor is ma. Ester a. Hamor <context>: CREATE TABLE table_255812_1 (income_class__2007_ VARCHAR, mayor VARCHAR) <answer>: SELECT income_class__2007_ FROM table_255812_1 WHERE mayor = "Ma. Ester A. Hamor"