prompt
stringlengths
81
567
completion
stringlengths
18
557
Question: Name the result for barney frank Context: CREATE TABLE table_25030512_24 (result VARCHAR, incumbent VARCHAR) Answer:
SELECT result FROM table_25030512_24 WHERE incumbent = "Barney Frank"
Question: Name the candidates for first elected being 1976 Context: CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR) Answer:
SELECT candidates FROM table_25030512_24 WHERE first_elected = "1976"
Question: Name the total number of districts for first elected being 1998 Context: CREATE TABLE table_25030512_24 (district VARCHAR, first_elected VARCHAR) Answer:
SELECT COUNT(district) FROM table_25030512_24 WHERE first_elected = "1998"
Question: Name the result for 1998 Context: CREATE TABLE table_25030512_24 (result VARCHAR, first_elected VARCHAR) Answer:
SELECT result FROM table_25030512_24 WHERE first_elected = "1998"
Question: Name the candidates for 1998 Context: CREATE TABLE table_25030512_24 (candidates VARCHAR, first_elected VARCHAR) Answer:
SELECT candidates FROM table_25030512_24 WHERE first_elected = "1998"
Question: Who is the driver of the Chevrolet engine that is sponsored by godaddy.com? Context: CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR) Answer:
SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com"
Question: What engine does the Fuzzy's Ultra Premium Vodka sponsored car use? Context: CREATE TABLE table_2503102_1 (engine VARCHAR, car_sponsor_s_ VARCHAR) Answer:
SELECT engine FROM table_2503102_1 WHERE car_sponsor_s_ = "Fuzzy's Ultra Premium Vodka"
Question: What engine doe the Ed Carpenter Racing team use? Context: CREATE TABLE table_2503102_1 (engine VARCHAR, team VARCHAR) Answer:
SELECT engine FROM table_2503102_1 WHERE team = "Ed Carpenter Racing"
Question: What team is sponsored by hydroxycut? Context: CREATE TABLE table_2503102_1 (team VARCHAR, car_sponsor_s_ VARCHAR) Answer:
SELECT team FROM table_2503102_1 WHERE car_sponsor_s_ = "HydroxyCut"
Question: What percentage of the population is below 50% of the median income in the region where 10.4% of the population earns below 40% of the median income? Context: CREATE TABLE table_25042332_16 (below_50_percentage_of_median_income VARCHAR, below_40_percentage_of_median_income VARCHAR) Answer:
SELECT COUNT(below_50_percentage_of_median_income) FROM table_25042332_16 WHERE below_40_percentage_of_median_income = "10.4%"
Question: What is the median income for the region where 24.4% pf people make below 60% of the median income? Context: CREATE TABLE table_25042332_16 (median_income___intl INTEGER, below_60_percentage_of_median_income VARCHAR) Answer:
SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE below_60_percentage_of_median_income = "24.4%"
Question: What is the median income of Maule? Context: CREATE TABLE table_25042332_16 (median_income___intl INTEGER, region VARCHAR) Answer:
SELECT MIN(median_income___intl) AS $__ FROM table_25042332_16 WHERE region = "Maule"
Question: In what region does 17.4% of the population make below 50% of the median income? Context: CREATE TABLE table_25042332_16 (region VARCHAR, below_50_percentage_of_median_income VARCHAR) Answer:
SELECT region FROM table_25042332_16 WHERE below_50_percentage_of_median_income = "17.4%"
Question: In what region do 18.6% of the people make less than 50% of the median income? Context: CREATE TABLE table_25042332_16 (region VARCHAR, below_50_percentage_of_median_income VARCHAR) Answer:
SELECT region FROM table_25042332_16 WHERE below_50_percentage_of_median_income = "18.6%"
Question: What is the gdp per capita in 2008 for the region that had a combined gross enrollment ration of 89.0? Context: CREATE TABLE table_25042332_33 (gdp__ppp__per_capita__2008_ INTEGER, combined_gross_enrollment_ratio__2009_ VARCHAR) Answer:
SELECT MIN(gdp__ppp__per_capita__2008_) FROM table_25042332_33 WHERE combined_gross_enrollment_ratio__2009_ = "89.0"
Question: Which region had a life expectancy at birth of 77.9 from 2001-2002? Context: CREATE TABLE table_25042332_33 (region VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR) Answer:
SELECT region FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "77.9"
Question: What is the gdp per capita in 2008 for the region with a combined gross enrollment ratio of 86.6 in 2009? Context: CREATE TABLE table_25042332_33 (gdp__ppp__per_capita__2008_ INTEGER, combined_gross_enrollment_ratio__2009_ VARCHAR) Answer:
SELECT MAX(gdp__ppp__per_capita__2008_) FROM table_25042332_33 WHERE combined_gross_enrollment_ratio__2009_ = "86.6"
Question: How many regions had an hdi of 0.896? Context: CREATE TABLE table_25042332_33 (combined_gross_enrollment_ratio__2009_ VARCHAR, hdi VARCHAR) Answer:
SELECT COUNT(combined_gross_enrollment_ratio__2009_) FROM table_25042332_33 WHERE hdi = "0.896"
Question: How many regions had a life expectancy at birth in 2001-2002 of 75.9? Context: CREATE TABLE table_25042332_33 (hdi VARCHAR, life_expectancy_at_birth__2001_2002_ VARCHAR) Answer:
SELECT COUNT(hdi) FROM table_25042332_33 WHERE life_expectancy_at_birth__2001_2002_ = "75.9"
Question: In which season is the runner-up Lase-R/Riga? Context: CREATE TABLE table_25058269_1 (season VARCHAR, runner_up VARCHAR) Answer:
SELECT season FROM table_25058269_1 WHERE runner_up = "Lase-R/Riga"
Question: In season 2007–08 who is the runner-up? Context: CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR) Answer:
SELECT runner_up FROM table_25058269_1 WHERE season = "2007–08"
Question: Who is the runner-up for season 2011–12? Context: CREATE TABLE table_25058269_1 (runner_up VARCHAR, season VARCHAR) Answer:
SELECT runner_up FROM table_25058269_1 WHERE season = "2011–12"
Question: In season 2005–06, who is 3rd place? Context: CREATE TABLE table_25058269_1 (season VARCHAR) Answer:
SELECT 3 AS rd_place FROM table_25058269_1 WHERE season = "2005–06"
Question: What draft pick number did Kentucky get? Context: CREATE TABLE table_25085059_1 (pick__number INTEGER, college VARCHAR) Answer:
SELECT MIN(pick__number) FROM table_25085059_1 WHERE college = "Kentucky"
Question: What position was the number 6 draft pick? Context: CREATE TABLE table_25085059_1 (position VARCHAR, pick__number VARCHAR) Answer:
SELECT position FROM table_25085059_1 WHERE pick__number = 6
Question: What CFL team obtained a draft pick from North Dakota who plays OL position? Context: CREATE TABLE table_25085059_1 (cfl_team VARCHAR, position VARCHAR, college VARCHAR) Answer:
SELECT cfl_team FROM table_25085059_1 WHERE position = "OL" AND college = "North Dakota"
Question: What college did the Toronto Argonauts draft pick come from? Context: CREATE TABLE table_25085059_1 (college VARCHAR, cfl_team VARCHAR) Answer:
SELECT college FROM table_25085059_1 WHERE cfl_team = "Toronto Argonauts"
Question: What player was the number 1 draft pick? Context: CREATE TABLE table_25085059_1 (player VARCHAR, pick__number VARCHAR) Answer:
SELECT player FROM table_25085059_1 WHERE pick__number = 1
Question: What CFL team got their draft pick from North Dakota? Context: CREATE TABLE table_25085059_1 (cfl_team VARCHAR, college VARCHAR) Answer:
SELECT cfl_team FROM table_25085059_1 WHERE college = "North Dakota"
Question: Which player went to college at Tennessee? Context: CREATE TABLE table_2508633_3 (player VARCHAR, college VARCHAR) Answer:
SELECT player FROM table_2508633_3 WHERE college = "Tennessee"
Question: Who was drafted by the Kansas City Chiefs? Context: CREATE TABLE table_2508633_3 (player VARCHAR, nfl_team VARCHAR) Answer:
SELECT player FROM table_2508633_3 WHERE nfl_team = "Kansas City Chiefs"
Question: Who was drafted by the Baltimore Colts? Context: CREATE TABLE table_2508633_3 (player VARCHAR, nfl_team VARCHAR) Answer:
SELECT player FROM table_2508633_3 WHERE nfl_team = "Baltimore Colts"
Question: If the NFL team is the Minnesota Vikings, what is the position? Context: CREATE TABLE table_2508633_8 (position VARCHAR, nfl_team VARCHAR) Answer:
SELECT position FROM table_2508633_8 WHERE nfl_team = "Minnesota Vikings"
Question: What is the pick number if the player is Gary Kubiak? Context: CREATE TABLE table_2508633_8 (pick__number VARCHAR, player VARCHAR) Answer:
SELECT pick__number FROM table_2508633_8 WHERE player = "Gary Kubiak"
Question: What is the pick number minimum if the player is Mark Bortz? Context: CREATE TABLE table_2508633_8 (pick__number INTEGER, player VARCHAR) Answer:
SELECT MIN(pick__number) FROM table_2508633_8 WHERE player = "Mark Bortz"
Question: what is the pick number minimum if the NFL team is the San Diego Chargers? Context: CREATE TABLE table_2508633_8 (pick__number INTEGER, nfl_team VARCHAR) Answer:
SELECT MIN(pick__number) FROM table_2508633_8 WHERE nfl_team = "San Diego Chargers"
Question: What is the highest season# for the writer Daegan Fryklind? Context: CREATE TABLE table_25131572_3 (season__number INTEGER, written_by VARCHAR) Answer:
SELECT MAX(season__number) FROM table_25131572_3 WHERE written_by = "Daegan Fryklind"
Question: Who voiced Drizella in the English version? Context: CREATE TABLE table_25173505_15 (english_version VARCHAR, character VARCHAR) Answer:
SELECT english_version FROM table_25173505_15 WHERE character = "Drizella"
Question: Name the name of bowl for 2006 season Context: CREATE TABLE table_2517159_1 (name_of_bowl VARCHAR, last_appearance VARCHAR) Answer:
SELECT COUNT(name_of_bowl) FROM table_2517159_1 WHERE last_appearance = "2006 Season"
Question: Name the last appearance for music city bowl Context: CREATE TABLE table_2517159_1 (last_appearance VARCHAR, name_of_bowl VARCHAR) Answer:
SELECT last_appearance FROM table_2517159_1 WHERE name_of_bowl = "Music City Bowl"
Question: Name the record for cotton bowl classic Context: CREATE TABLE table_2517159_1 (record VARCHAR, name_of_bowl VARCHAR) Answer:
SELECT record FROM table_2517159_1 WHERE name_of_bowl = "Cotton Bowl Classic"
Question: Name the appearance for independence bowl Context: CREATE TABLE table_2517159_1 (appearances VARCHAR, name_of_bowl VARCHAR) Answer:
SELECT COUNT(appearances) FROM table_2517159_1 WHERE name_of_bowl = "Independence Bowl"
Question: On the Circuit Zolder who was the winning team? Context: CREATE TABLE table_25213146_2 (winning_team VARCHAR, circuit VARCHAR) Answer:
SELECT winning_team FROM table_25213146_2 WHERE circuit = "circuit Zolder"
Question: In what circuit was Bruno Spengler the winning driver? Context: CREATE TABLE table_25213146_2 (circuit VARCHAR, winning_driver VARCHAR) Answer:
SELECT circuit FROM table_25213146_2 WHERE winning_driver = "Bruno Spengler"
Question: How many Pole Positions were there on 30 March? Context: CREATE TABLE table_25213146_2 (pole_position VARCHAR, date VARCHAR) Answer:
SELECT COUNT(pole_position) FROM table_25213146_2 WHERE date = "30 March"
Question: Where was the circuit for round 4? Context: CREATE TABLE table_25213146_2 (circuit VARCHAR, round VARCHAR) Answer:
SELECT circuit FROM table_25213146_2 WHERE round = 4
Question: On what date(s) was the winning team Prema Powerteam? Context: CREATE TABLE table_25213146_2 (date VARCHAR, winning_team VARCHAR) Answer:
SELECT date FROM table_25213146_2 WHERE winning_team = "Prema Powerteam"
Question: Name the bed 2010 for 6.5% Context: CREATE TABLE table_25256368_1 (february_2010 VARCHAR, june_2010 VARCHAR) Answer:
SELECT february_2010 FROM table_25256368_1 WHERE june_2010 = "6.5%"
Question: Name the feb 2010 for january 2010 for 6.2% Context: CREATE TABLE table_25256368_1 (february_2010 VARCHAR, january_2010 VARCHAR) Answer:
SELECT february_2010 FROM table_25256368_1 WHERE january_2010 = "6.2%"
Question: How many people directed episode 3 in the season? Context: CREATE TABLE table_25277262_2 (directed_by VARCHAR, no_in_season VARCHAR) Answer:
SELECT COUNT(directed_by) FROM table_25277262_2 WHERE no_in_season = 3
Question: If the writer is Mark Fink, who is the director? Context: CREATE TABLE table_25277262_2 (directed_by VARCHAR, written_by VARCHAR) Answer:
SELECT directed_by FROM table_25277262_2 WHERE written_by = "Mark Fink"
Question: What is the name of the episode # 11 in the season? Context: CREATE TABLE table_25277262_2 (title VARCHAR, no_in_season VARCHAR) Answer:
SELECT title FROM table_25277262_2 WHERE no_in_season = 11
Question: Who was the director of episode 11 based on season? Context: CREATE TABLE table_25277296_2 (directed_by VARCHAR, no_in_season VARCHAR) Answer:
SELECT directed_by FROM table_25277296_2 WHERE no_in_season = 11
Question: Name the reidsville for enrollment Context: CREATE TABLE table_25330991_3 (reidsville VARCHAR, information VARCHAR) Answer:
SELECT reidsville FROM table_25330991_3 WHERE information = "Enrollment"
Question: Name the james e. holmes for erselle young Context: CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, reidsville VARCHAR) Answer:
SELECT james_e_holmes FROM table_25330991_3 WHERE reidsville = "Erselle Young"
Question: Name the james e. holmes for duane hensley Context: CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, western_rockingham_middle_school VARCHAR) Answer:
SELECT james_e_holmes FROM table_25330991_3 WHERE western_rockingham_middle_school = "Duane Hensley"
Question: Name the james e. holmes for joe baez Context: CREATE TABLE table_25330991_3 (james_e_holmes VARCHAR, rockingham_county VARCHAR) Answer:
SELECT james_e_holmes FROM table_25330991_3 WHERE rockingham_county = "Joe Baez"
Question: Name the time for entries being 907 Context: CREATE TABLE table_2534387_10 (time__et_ VARCHAR, entries VARCHAR) Answer:
SELECT time__et_ FROM table_2534387_10 WHERE entries = "907"
Question: Name the entries for 6 h 23 min elapsed time Context: CREATE TABLE table_2534387_10 (entries VARCHAR, elapsed_time VARCHAR) Answer:
SELECT entries FROM table_2534387_10 WHERE elapsed_time = "6 h 23 min"
Question: Name the prize pool for 706 (481 r, 346 a) Context: CREATE TABLE table_2534387_10 (prize VARCHAR, entries VARCHAR) Answer:
SELECT prize AS Pool FROM table_2534387_10 WHERE entries = "706 (481 R, 346 A)"
Question: What are the dates of death of those politicians whose date of birth 1938-08-30 30 august 1938? Context: CREATE TABLE table_25345002_1 (date_of_death VARCHAR, date_of_birth VARCHAR) Answer:
SELECT COUNT(date_of_death) FROM table_25345002_1 WHERE date_of_birth = "1938-08-30 30 August 1938"
Question: If the event number is 5, what is the winner total number? Context: CREATE TABLE table_2534387_11 (winner VARCHAR, event__number VARCHAR) Answer:
SELECT COUNT(winner) FROM table_2534387_11 WHERE event__number = 5
Question: What is the prize pool if the entries is 1,132? Context: CREATE TABLE table_2534387_11 (prize VARCHAR, entries VARCHAR) Answer:
SELECT prize AS Pool FROM table_2534387_11 WHERE entries = "1,132"
Question: Name the least season # for the first time Context: CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR) Answer:
SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = "The first time"
Question: Name the least season number for two marriage proposals Context: CREATE TABLE table_25363904_2 (season__number INTEGER, title_english VARCHAR) Answer:
SELECT MIN(season__number) FROM table_25363904_2 WHERE title_english = "Two marriage proposals"
Question: What number episode was Week 4, Part 1? Context: CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR) Answer:
SELECT episode_number FROM table_25391981_20 WHERE episode = "Week 4, Part 1"
Question: For what episode was the rating/share for 18-49 at 2.8/8 Context: CREATE TABLE table_25391981_20 (episode VARCHAR, rating VARCHAR) Answer:
SELECT episode FROM table_25391981_20 WHERE rating / SHARE(18 AS –49) = 2.8 / 8
Question: What number episode was Week 4, Part 2? Context: CREATE TABLE table_25391981_20 (episode_number VARCHAR, episode VARCHAR) Answer:
SELECT episode_number FROM table_25391981_20 WHERE episode = "Week 4, Part 2"
Question: How many viewers in millions watched the episode with the number 10.18? Context: CREATE TABLE table_25391981_20 (viewers__millions_ VARCHAR, episode_number VARCHAR) Answer:
SELECT viewers__millions_ FROM table_25391981_20 WHERE episode_number = "10.18"
Question: What is the rating/share for 18-49 for Week 6, Part 1? Context: CREATE TABLE table_25391981_20 (rating VARCHAR, episode VARCHAR) Answer:
SELECT rating / SHARE(18 AS –49) FROM table_25391981_20 WHERE episode = "Week 6, Part 1"
Question: What is the weekly rank of the episode with a 14 share whose original airdate was April 20, 2010? Context: CREATE TABLE table_25391981_20 (weekly_rank VARCHAR, share VARCHAR, original_airdate VARCHAR) Answer:
SELECT weekly_rank FROM table_25391981_20 WHERE share = "14" AND original_airdate = "April 20, 2010"
Question: What is the form ("to sing") when brazilian portuguese is [kɐ̃ˈtẽmus]? Context: CREATE TABLE table_25401_2 (form__to_sing_ VARCHAR, brazilian_portuguese VARCHAR) Answer:
SELECT form__to_sing_ FROM table_25401_2 WHERE brazilian_portuguese = "[kɐ̃ˈtẽmus]"
Question: what is romanian when nuorese sardinian is [ˈkantata]? Context: CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR) Answer:
SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = "[ˈkantata]"
Question: what is romanian when nuorese sardinian is [ˈkantaza]? Context: CREATE TABLE table_25401_2 (romanian VARCHAR, nuorese_sardinian VARCHAR) Answer:
SELECT romanian FROM table_25401_2 WHERE nuorese_sardinian = "[ˈkantaza]"
Question: What were the results when Hanne Skak Jensen faced Andreja Klepač as opponent? Context: CREATE TABLE table_25505246_7 (result VARCHAR, opponent VARCHAR) Answer:
SELECT result FROM table_25505246_7 WHERE opponent = "Andreja Klepač"
Question: Who was Hanne Skak Jensen's opponent when facing Belarus? Context: CREATE TABLE table_25505246_7 (opponent VARCHAR, against VARCHAR) Answer:
SELECT opponent FROM table_25505246_7 WHERE against = "Belarus"
Question: What kind of round was played when Hanne Skak Jensen faced Austria? Context: CREATE TABLE table_25505246_7 (round VARCHAR, against VARCHAR) Answer:
SELECT round FROM table_25505246_7 WHERE against = "Austria"
Question: What were the round results when Hanne Skak Jensen faced Austria? Context: CREATE TABLE table_25505246_7 (result VARCHAR, against VARCHAR) Answer:
SELECT result FROM table_25505246_7 WHERE against = "Austria"
Question: How many touchdowns does Boggs have? Context: CREATE TABLE table_25517718_3 (touchdowns INTEGER, player VARCHAR) Answer:
SELECT MIN(touchdowns) FROM table_25517718_3 WHERE player = "Boggs"
Question: Is the right halfback player a starter? Context: CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR) Answer:
SELECT starter FROM table_25517718_3 WHERE position = "Right halfback"
Question: What position does Boggs play? Context: CREATE TABLE table_25517718_3 (position VARCHAR, player VARCHAR) Answer:
SELECT position FROM table_25517718_3 WHERE player = "Boggs"
Question: What is the smallest number of extra points for a left halfback? Context: CREATE TABLE table_25517718_3 (extra_points INTEGER, position VARCHAR) Answer:
SELECT MIN(extra_points) FROM table_25517718_3 WHERE position = "Left halfback"
Question: What is the smallest number of extra points? Context: CREATE TABLE table_25517718_3 (extra_points INTEGER) Answer:
SELECT MIN(extra_points) FROM table_25517718_3
Question: How many starters are there at right tackle? Context: CREATE TABLE table_25517718_3 (starter VARCHAR, position VARCHAR) Answer:
SELECT COUNT(starter) FROM table_25517718_3 WHERE position = "Right tackle"
Question: How many mls teams had player jamel wallace? Context: CREATE TABLE table_25518547_4 (mls_team VARCHAR, player VARCHAR) Answer:
SELECT COUNT(mls_team) FROM table_25518547_4 WHERE player = "Jamel Wallace"
Question: What university is kwaku nyamekye affiliated with? Context: CREATE TABLE table_25518547_4 (affiliation VARCHAR, player VARCHAR) Answer:
SELECT affiliation FROM table_25518547_4 WHERE player = "Kwaku Nyamekye"
Question: What university is houston dynamo affiliated with? Context: CREATE TABLE table_25518547_4 (affiliation VARCHAR, mls_team VARCHAR) Answer:
SELECT affiliation FROM table_25518547_4 WHERE mls_team = "Houston Dynamo"
Question: What is the position of pick # 63? Context: CREATE TABLE table_25518547_4 (position VARCHAR, pick__number VARCHAR) Answer:
SELECT position FROM table_25518547_4 WHERE pick__number = 63
Question: How many players are affiliated with indiana university? Context: CREATE TABLE table_25518547_4 (player VARCHAR, affiliation VARCHAR) Answer:
SELECT COUNT(player) FROM table_25518547_4 WHERE affiliation = "Indiana University"
Question: When was the earliest season of Juncadella's career? Context: CREATE TABLE table_25538763_1 (season INTEGER) Answer:
SELECT MIN(season) FROM table_25538763_1
Question: How many pole data were given on season 2012 with 252 points? Context: CREATE TABLE table_25538763_1 (poles VARCHAR, season VARCHAR, points VARCHAR) Answer:
SELECT COUNT(poles) FROM table_25538763_1 WHERE season = 2012 AND points = "252"
Question: How many wins did Prema Powerteam won with 240 points? Context: CREATE TABLE table_25538763_1 (wins VARCHAR, team VARCHAR, points VARCHAR) Answer:
SELECT wins FROM table_25538763_1 WHERE team = "Prema Powerteam" AND points = "240"
Question: What is the latest season where he had 1 podium? Context: CREATE TABLE table_25539502_1 (season INTEGER, podiums VARCHAR) Answer:
SELECT MAX(season) FROM table_25539502_1 WHERE podiums = 1
Question: What was his position when the team was FMS International? Context: CREATE TABLE table_25539502_1 (position VARCHAR, team VARCHAR) Answer:
SELECT position FROM table_25539502_1 WHERE team = "FMS International"
Question: What is the smallest number of races competed in with 11 podiums? Context: CREATE TABLE table_25539502_1 (races INTEGER, podiums VARCHAR) Answer:
SELECT MIN(races) FROM table_25539502_1 WHERE podiums = 11
Question: List the total points for the 1st place team. Context: CREATE TABLE table_25561038_1 (points VARCHAR, position VARCHAR) Answer:
SELECT points FROM table_25561038_1 WHERE position = "1st"
Question: List the year in which the driver was in 1st place. Context: CREATE TABLE table_25561038_1 (season VARCHAR, position VARCHAR) Answer:
SELECT season FROM table_25561038_1 WHERE position = "1st"
Question: How many series awarded 15 points? Context: CREATE TABLE table_25561038_1 (races VARCHAR, points VARCHAR) Answer:
SELECT COUNT(races) FROM table_25561038_1 WHERE points = "15"
Question: List the highest number of laps. Context: CREATE TABLE table_25561038_1 (f_laps INTEGER) Answer:
SELECT MAX(f_laps) FROM table_25561038_1
Question: List the team with 12 points. Context: CREATE TABLE table_25561038_1 (team VARCHAR, points VARCHAR) Answer:
SELECT team FROM table_25561038_1 WHERE points = "12"