combined_text
stringlengths
106
1.05k
###question:What is the run 2 of athlete Maria Orlova from Russia?###answer:SELECT SUM(run_2) FROM table_name_24 WHERE country = "russia" AND athlete = "maria orlova"###context:CREATE TABLE table_name_24 (run_2 INTEGER, country VARCHAR, athlete VARCHAR)
###question:What is the run 3 of the athlete with a run 1 more than 53.75 and a run 2 less than 52.91?###answer:SELECT SUM(run_3) FROM table_name_5 WHERE run_1 > 53.75 AND run_2 < 52.91###context:CREATE TABLE table_name_5 (run_3 INTEGER, run_1 VARCHAR, run_2 VARCHAR)
###question:What is the lowest run 3 an athlete with a run 2 less than 53.72 and a run 1 of 53.1 has?###answer:SELECT MIN(run_3) FROM table_name_30 WHERE run_2 < 53.72 AND run_1 = 53.1###context:CREATE TABLE table_name_30 (run_3 INTEGER, run_2 VARCHAR, run_1 VARCHAR)
###question:What is the lowest run 2 of the athlete with a run 1 of 52.44 and a run 3 less than 52.35?###answer:SELECT MIN(run_2) FROM table_name_90 WHERE run_1 = 52.44 AND run_3 < 52.35###context:CREATE TABLE table_name_90 (run_2 INTEGER, run_1 VARCHAR, run_3 VARCHAR)
###question:How many points are associated with 0 poles?###answer:SELECT COUNT(points) FROM table_name_39 WHERE poles < 0###context:CREATE TABLE table_name_39 (points VARCHAR, poles INTEGER)
###question:What is the first game that has a home team of Detroit?###answer:SELECT MIN(game__number) FROM table_name_93 WHERE home = "detroit"###context:CREATE TABLE table_name_93 (game__number INTEGER, home VARCHAR)
###question:Which home team has higher than 92 points?###answer:SELECT home FROM table_name_14 WHERE points > 92###context:CREATE TABLE table_name_14 (home VARCHAR, points INTEGER)
###question:what team's score is 101?###answer:SELECT team FROM table_name_42 WHERE score = "101"###context:CREATE TABLE table_name_42 (team VARCHAR, score VARCHAR)
###question:what team played against zimbabwe in 1999?###answer:SELECT team FROM table_name_11 WHERE year = 1999 AND versus = "zimbabwe"###context:CREATE TABLE table_name_11 (team VARCHAR, year VARCHAR, versus VARCHAR)
###question:what is the team that played in 2006?###answer:SELECT team FROM table_name_70 WHERE year = 2006###context:CREATE TABLE table_name_70 (team VARCHAR, year VARCHAR)
###question:What is the lowest amount of points driver Romain Grosjean, who has an average pre-2010 less than 0, has?###answer:SELECT MIN(points) FROM table_name_49 WHERE driver = "romain grosjean" AND average_pre_2010 < 0###context:CREATE TABLE table_name_49 (points INTEGER, driver VARCHAR, average_pre_2010 VARCHAR)
###question:What is the average number of entries driver Mark Webber, who has more than 1014.5 points, has?###answer:SELECT AVG(entries) FROM table_name_27 WHERE driver = "mark webber" AND points > 1014.5###context:CREATE TABLE table_name_27 (entries INTEGER, driver VARCHAR, points VARCHAR)
###question:What is the highest average points per race of the driver with less than 969 points and an average pre-2010 less than 0?###answer:SELECT MAX(average_points_per_race_entered) FROM table_name_75 WHERE points < 969 AND average_pre_2010 < 0###context:CREATE TABLE table_name_75 (average_points_per_race_entered I...
###question:What is the lowest average points per race entered of driver kimi räikkönen, who has more than 194 entries?###answer:SELECT MIN(average_points_per_race_entered) FROM table_name_3 WHERE driver = "kimi räikkönen" AND entries > 194###context:CREATE TABLE table_name_3 (average_points_per_race_entered INTEGER, d...
###question:What is the first game played against the Chicago Black Hawks?###answer:SELECT MIN(game) FROM table_name_92 WHERE opponent = "chicago black hawks"###context:CREATE TABLE table_name_92 (game INTEGER, opponent VARCHAR)
###question:Name the opponent for 9 november 1991###answer:SELECT opponent FROM table_name_19 WHERE date = "9 november 1991"###context:CREATE TABLE table_name_19 (opponent VARCHAR, date VARCHAR)
###question:Which Losses is the lowest one that has Wins smaller than 0?###answer:SELECT MIN(losses) FROM table_name_92 WHERE wins < 0###context:CREATE TABLE table_name_92 (losses INTEGER, wins INTEGER)
###question:Which Losses have a Season larger than 1941, and a Team of hamilton wildcats, and Ties of 0?###answer:SELECT losses FROM table_name_95 WHERE season > 1941 AND team = "hamilton wildcats" AND ties = 0###context:CREATE TABLE table_name_95 (losses VARCHAR, ties VARCHAR, season VARCHAR, team VARCHAR)
###question:Which Season has Ties smaller than 1, and a Team of vancouver grizzlies, and Wins smaller than 1?###answer:SELECT SUM(season) FROM table_name_42 WHERE ties < 1 AND team = "vancouver grizzlies" AND wins < 1###context:CREATE TABLE table_name_42 (season INTEGER, wins VARCHAR, ties VARCHAR, team VARCHAR)
###question:How many Ties have Wins smaller than 1, and Games of 6, and Losses of 6, and a Season larger than 1941?###answer:SELECT COUNT(ties) FROM table_name_41 WHERE wins < 1 AND games = 6 AND losses = 6 AND season > 1941###context:CREATE TABLE table_name_41 (ties VARCHAR, season VARCHAR, losses VARCHAR, wins VARCHA...
###question:Which Wins have a Team of winnipeg blue bombers, and a Season larger than 1964?###answer:SELECT AVG(wins) FROM table_name_56 WHERE team = "winnipeg blue bombers" AND season > 1964###context:CREATE TABLE table_name_56 (wins INTEGER, team VARCHAR, season VARCHAR)
###question:What engine class is associated with a year after 1985 and over 0 wins?###answer:SELECT class FROM table_name_44 WHERE year > 1985 AND wins > 0###context:CREATE TABLE table_name_44 (class VARCHAR, year VARCHAR, wins VARCHAR)
###question:Which opponent has a loss of trout (7-4)?###answer:SELECT opponent FROM table_name_53 WHERE loss = "trout (7-4)"###context:CREATE TABLE table_name_53 (opponent VARCHAR, loss VARCHAR)
###question:Which opponent has a save of smith (22)?###answer:SELECT opponent FROM table_name_65 WHERE save = "smith (22)"###context:CREATE TABLE table_name_65 (opponent VARCHAR, save VARCHAR)
###question:How much Gold has a Bronze larger than 1, and a Silver larger than 2?###answer:SELECT COUNT(gold) FROM table_name_38 WHERE bronze > 1 AND silver > 2###context:CREATE TABLE table_name_38 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
###question:Which Total has a Nation of japan (jpn), and a Silver smaller than 1?###answer:SELECT AVG(total) FROM table_name_85 WHERE nation = "japan (jpn)" AND silver < 1###context:CREATE TABLE table_name_85 (total INTEGER, nation VARCHAR, silver VARCHAR)
###question:What is the margin of victory in WGC-Accenture Match Play Championship?###answer:SELECT margin_of_victory FROM table_name_98 WHERE tournament = "wgc-accenture match play championship"###context:CREATE TABLE table_name_98 (margin_of_victory VARCHAR, tournament VARCHAR)
###question:On what date was Nick Price the runner-up?###answer:SELECT date FROM table_name_7 WHERE runner_s__up = "nick price"###context:CREATE TABLE table_name_7 (date VARCHAR, runner_s__up VARCHAR)
###question:What is the margin of victory for Nick Price as a runner-up?###answer:SELECT margin_of_victory FROM table_name_52 WHERE runner_s__up = "nick price"###context:CREATE TABLE table_name_52 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
###question:What is the margin of victory for PGA Championship?###answer:SELECT margin_of_victory FROM table_name_25 WHERE tournament = "pga championship"###context:CREATE TABLE table_name_25 (margin_of_victory VARCHAR, tournament VARCHAR)
###question:On what date was the winning score –20 (68-67-65-64=264)?###answer:SELECT date FROM table_name_46 WHERE winning_score = –20(68 - 67 - 65 - 64 = 264)###context:CREATE TABLE table_name_46 (date VARCHAR, winning_score VARCHAR)
###question:Which player was D past Round 3?###answer:SELECT player FROM table_name_88 WHERE position = "d" AND round > 3###context:CREATE TABLE table_name_88 (player VARCHAR, position VARCHAR, round VARCHAR)
###question:Which Round was F picked?###answer:SELECT round FROM table_name_5 WHERE position = "f"###context:CREATE TABLE table_name_5 (round VARCHAR, position VARCHAR)
###question:What Position is Ryan Russell?###answer:SELECT position FROM table_name_6 WHERE player = "ryan russell"###context:CREATE TABLE table_name_6 (position VARCHAR, player VARCHAR)
###question:What country does Round 4 come from?###answer:SELECT nationality FROM table_name_12 WHERE round = 4###context:CREATE TABLE table_name_12 (nationality VARCHAR, round VARCHAR)
###question:Which opponent was present on April 14?###answer:SELECT opponent FROM table_name_17 WHERE date = "april 14"###context:CREATE TABLE table_name_17 (opponent VARCHAR, date VARCHAR)
###question:what team lost on april 15###answer:SELECT loss FROM table_name_60 WHERE date = "april 15"###context:CREATE TABLE table_name_60 (loss VARCHAR, date VARCHAR)
###question:what team played on april 21###answer:SELECT opponent FROM table_name_93 WHERE date = "april 21"###context:CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)
###question:what team scored on april 10###answer:SELECT score FROM table_name_81 WHERE date = "april 10"###context:CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR)
###question:Who lost with a time of 0:58?###answer:SELECT loser FROM table_name_44 WHERE time = "0:58"###context:CREATE TABLE table_name_44 (loser VARCHAR, time VARCHAR)
###question:What is the average number of rounds for winner Rafael Cavalcante?###answer:SELECT AVG(round) FROM table_name_37 WHERE winner = "rafael cavalcante"###context:CREATE TABLE table_name_37 (round INTEGER, winner VARCHAR)
###question:What win method has a time of 2:32?###answer:SELECT method FROM table_name_71 WHERE time = "2:32"###context:CREATE TABLE table_name_71 (method VARCHAR, time VARCHAR)
###question:What is the sum of points values that are associated with 0 losses and more than 8 games?###answer:SELECT SUM(points) FROM table_name_67 WHERE lost = 0 AND games > 8###context:CREATE TABLE table_name_67 (points INTEGER, lost VARCHAR, games VARCHAR)
###question:What is the fewest losses associated with more than 13 points and fewer than 8 games?###answer:SELECT MIN(lost) FROM table_name_25 WHERE points > 13 AND games < 8###context:CREATE TABLE table_name_25 (lost INTEGER, points VARCHAR, games VARCHAR)
###question:What is the difference associated with more than 2 points, fewer than 3 losses, and fewer than 1 draw?###answer:SELECT points_difference FROM table_name_97 WHERE points > 2 AND lost < 3 AND drawn < 1###context:CREATE TABLE table_name_97 (points_difference VARCHAR, drawn VARCHAR, points VARCHAR, lost VARCHAR...
###question:What is the fewest number of points associated with more than 8 games?###answer:SELECT MIN(points) FROM table_name_95 WHERE games > 8###context:CREATE TABLE table_name_95 (points INTEGER, games INTEGER)
###question:Which title did richard kolner play?###answer:SELECT title FROM table_name_33 WHERE role = "richard kolner"###context:CREATE TABLE table_name_33 (title VARCHAR, role VARCHAR)
###question:Which Title has a Dance Partner of adele astaire, and Lyrics of ira gershwin, and a Director of felix edwardes?###answer:SELECT title FROM table_name_93 WHERE dance_partner = "adele astaire" AND lyrics = "ira gershwin" AND director = "felix edwardes"###context:CREATE TABLE table_name_93 (title VARCHAR, dire...
###question:Which Role has a Theatre of globe, and a Music of jerome kern?###answer:SELECT role FROM table_name_61 WHERE theatre = "globe" AND music = "jerome kern"###context:CREATE TABLE table_name_61 (role VARCHAR, theatre VARCHAR, music VARCHAR)
###question:what name was on the year 2012###answer:SELECT name FROM table_name_22 WHERE year * __est_ = "2012"###context:CREATE TABLE table_name_22 (name VARCHAR, year VARCHAR, __est_ VARCHAR)
###question:Which member of house of Habsburg-Lorraine had the spouse Charles II?###answer:SELECT name FROM table_name_40 WHERE spouse = "charles ii"###context:CREATE TABLE table_name_40 (name VARCHAR, spouse VARCHAR)
###question:What is the marriage date for the Habsburg-Lorraine house member who died 29 December 1829?###answer:SELECT marriage FROM table_name_67 WHERE death = "29 december 1829"###context:CREATE TABLE table_name_67 (marriage VARCHAR, death VARCHAR)
###question:When did the duchess who became duchess on 7/8 April 1766 cease to be duchess?###answer:SELECT ceased_to_be_duchess FROM table_name_5 WHERE became_duchess = "7/8 april 1766"###context:CREATE TABLE table_name_5 (ceased_to_be_duchess VARCHAR, became_duchess VARCHAR)
###question:What is the date of death of the duchess born on 30 October 1797?###answer:SELECT death FROM table_name_2 WHERE birth = "30 october 1797"###context:CREATE TABLE table_name_2 (death VARCHAR, birth VARCHAR)
###question:What is the birth date of the duchess who married on 1 May 1844?###answer:SELECT birth FROM table_name_16 WHERE marriage = "1 may 1844"###context:CREATE TABLE table_name_16 (birth VARCHAR, marriage VARCHAR)
###question:What is the highest numbered pick from round 7?###answer:SELECT MAX(pick) FROM table_name_67 WHERE round = 7###context:CREATE TABLE table_name_67 (pick INTEGER, round VARCHAR)
###question:How much Played has an Against larger than 11, and a Team of botafogo, and a Position smaller than 2?###answer:SELECT COUNT(played) FROM table_name_57 WHERE against > 11 AND team = "botafogo" AND position < 2###context:CREATE TABLE table_name_57 (played VARCHAR, position VARCHAR, against VARCHAR, team VARCH...
###question:Which average Drawn has Points smaller than 14, and a Lost smaller than 4, and a Played larger than 9?###answer:SELECT AVG(drawn) FROM table_name_56 WHERE points < 14 AND lost < 4 AND played > 9###context:CREATE TABLE table_name_56 (drawn INTEGER, played VARCHAR, points VARCHAR, lost VARCHAR)
###question:Which Played is the lowest one that has a Team of vasco da gama, and an Against smaller than 11?###answer:SELECT MIN(played) FROM table_name_54 WHERE team = "vasco da gama" AND against < 11###context:CREATE TABLE table_name_54 (played INTEGER, team VARCHAR, against VARCHAR)
###question:Which Played has a Lost larger than 4, and a Team of américa, and Points smaller than 5?###answer:SELECT SUM(played) FROM table_name_4 WHERE lost > 4 AND team = "américa" AND points < 5###context:CREATE TABLE table_name_4 (played INTEGER, points VARCHAR, lost VARCHAR, team VARCHAR)
###question:Which Lost has a Position of 3, and a Drawn larger than 3?###answer:SELECT SUM(lost) FROM table_name_76 WHERE position = 3 AND drawn > 3###context:CREATE TABLE table_name_76 (lost INTEGER, position VARCHAR, drawn VARCHAR)
###question:How much Lost has a Drawn larger than 1, and Points smaller than 14, and an Against larger than 10?###answer:SELECT COUNT(lost) FROM table_name_61 WHERE drawn > 1 AND points < 14 AND against > 10###context:CREATE TABLE table_name_61 (lost VARCHAR, against VARCHAR, drawn VARCHAR, points VARCHAR)
###question:What tournament has yvonne vermaak as the opponent?###answer:SELECT tournament FROM table_name_5 WHERE opponent = "yvonne vermaak"###context:CREATE TABLE table_name_5 (tournament VARCHAR, opponent VARCHAR)
###question:What outcome has yvonne vermaak as the opponent?###answer:SELECT outcome FROM table_name_79 WHERE opponent = "yvonne vermaak"###context:CREATE TABLE table_name_79 (outcome VARCHAR, opponent VARCHAR)
###question:What is the outcome for the Hershey tournament?###answer:SELECT outcome FROM table_name_1 WHERE tournament = "hershey"###context:CREATE TABLE table_name_1 (outcome VARCHAR, tournament VARCHAR)
###question:Who played against Save Of Ni Fu-Deh?###answer:SELECT opponent FROM table_name_4 WHERE save = "ni fu-deh"###context:CREATE TABLE table_name_4 (opponent VARCHAR, save VARCHAR)
###question:What's the loss of who has a Save of Miguel Saladin and played against Chinatrust Whales?###answer:SELECT loss FROM table_name_56 WHERE opponent = "chinatrust whales" AND save = "miguel saladin"###context:CREATE TABLE table_name_56 (loss VARCHAR, opponent VARCHAR, save VARCHAR)
###question:Who's the opponent when Diegomar Markwell is the loss?###answer:SELECT opponent FROM table_name_80 WHERE loss = "diegomar markwell"###context:CREATE TABLE table_name_80 (opponent VARCHAR, loss VARCHAR)
###question:what game had a score of 86-71###answer:SELECT attendance FROM table_name_8 WHERE record = "86-71"###context:CREATE TABLE table_name_8 (attendance VARCHAR, record VARCHAR)
###question:what game took place on september 14###answer:SELECT record FROM table_name_34 WHERE date = "september 14"###context:CREATE TABLE table_name_34 (record VARCHAR, date VARCHAR)
###question:what game had an attendance of 21,629###answer:SELECT record FROM table_name_70 WHERE attendance = "21,629"###context:CREATE TABLE table_name_70 (record VARCHAR, attendance VARCHAR)
###question:what is the number of people in sri lanka###answer:SELECT AVG(s_no) FROM table_name_10 WHERE opponent = "sri lanka"###context:CREATE TABLE table_name_10 (s_no INTEGER, opponent VARCHAR)
###question:What was the position of the Slavia team in 1998?###answer:SELECT position_in_1998 FROM table_name_10 WHERE team = "slavia"###context:CREATE TABLE table_name_10 (position_in_1998 VARCHAR, team VARCHAR)
###question:Which team is located in Lida?###answer:SELECT team FROM table_name_91 WHERE location = "lida"###context:CREATE TABLE table_name_91 (team VARCHAR, location VARCHAR)
###question:Which episode number visited India?###answer:SELECT episode_no FROM table_name_56 WHERE countries_visited = "india"###context:CREATE TABLE table_name_56 (episode_no VARCHAR, countries_visited VARCHAR)
###question:Which episode title featured a visit to the country of Cuba?###answer:SELECT episode_title FROM table_name_26 WHERE countries_visited = "cuba"###context:CREATE TABLE table_name_26 (episode_title VARCHAR, countries_visited VARCHAR)
###question:Which position does Jesse Boulerice play?###answer:SELECT position FROM table_name_83 WHERE player = "jesse boulerice"###context:CREATE TABLE table_name_83 (position VARCHAR, player VARCHAR)
###question:What is the fewest number of wins in the chart for Ayrton Senna?###answer:SELECT MIN(wins) FROM table_name_1 WHERE driver = "ayrton senna"###context:CREATE TABLE table_name_1 (wins INTEGER, driver VARCHAR)
###question:What is the number of entries associated with more than 11 wins?###answer:SELECT entries FROM table_name_51 WHERE wins > 11###context:CREATE TABLE table_name_51 (entries VARCHAR, wins INTEGER)
###question:Name the most points with lost more than 1 and games less than 5###answer:SELECT MAX(points) FROM table_name_96 WHERE lost > 1 AND games < 5###context:CREATE TABLE table_name_96 (points INTEGER, lost VARCHAR, games VARCHAR)
###question:Name the sum of drawn with lost more than 1 and games less than 5###answer:SELECT SUM(drawn) FROM table_name_13 WHERE lost > 1 AND games < 5###context:CREATE TABLE table_name_13 (drawn INTEGER, lost VARCHAR, games VARCHAR)
###question:Name the least lost with points more than 6 and games less than 5###answer:SELECT MIN(lost) FROM table_name_4 WHERE points > 6 AND games < 5###context:CREATE TABLE table_name_4 (lost INTEGER, points VARCHAR, games VARCHAR)
###question:Name the sum of points with games less than 5###answer:SELECT SUM(points) FROM table_name_25 WHERE games < 5###context:CREATE TABLE table_name_25 (points INTEGER, games INTEGER)
###question:What was the location of the bout that lasted 5:00 and led to a 6-2-1 record?###answer:SELECT location FROM table_name_17 WHERE time = "5:00" AND record = "6-2-1"###context:CREATE TABLE table_name_17 (location VARCHAR, time VARCHAR, record VARCHAR)
###question:What was the record after the bout with Alexis Vila?###answer:SELECT record FROM table_name_79 WHERE opponent = "alexis vila"###context:CREATE TABLE table_name_79 (record VARCHAR, opponent VARCHAR)
###question:Who was a defensive end at California?###answer:SELECT player_name FROM table_name_93 WHERE position = "defensive end" AND college = "california"###context:CREATE TABLE table_name_93 (player_name VARCHAR, position VARCHAR, college VARCHAR)
###question:Which players were selected after 2011?###answer:SELECT player_name FROM table_name_53 WHERE year_[a_] > 2011###context:CREATE TABLE table_name_53 (player_name VARCHAR, year_ VARCHAR, a_ VARCHAR)
###question:Who was a linebacker at Tennessee?###answer:SELECT player_name FROM table_name_64 WHERE position = "linebacker" AND college = "tennessee"###context:CREATE TABLE table_name_64 (player_name VARCHAR, position VARCHAR, college VARCHAR)
###question:Which Wins is the lowest one that has Events larger than 30?###answer:SELECT MIN(wins) FROM table_name_70 WHERE events > 30###context:CREATE TABLE table_name_70 (wins INTEGER, events INTEGER)
###question:What day were the results 3:0?###answer:SELECT date FROM table_name_67 WHERE results¹ = "3:0"###context:CREATE TABLE table_name_67 (date VARCHAR, results¹ VARCHAR)
###question:What city played on april 29?###answer:SELECT city FROM table_name_32 WHERE date = "april 29"###context:CREATE TABLE table_name_32 (city VARCHAR, date VARCHAR)
###question:Which city has an opponent of England?###answer:SELECT city FROM table_name_99 WHERE opponent = "england"###context:CREATE TABLE table_name_99 (city VARCHAR, opponent VARCHAR)
###question:What day was the opponent Austria?###answer:SELECT date FROM table_name_8 WHERE opponent = "austria"###context:CREATE TABLE table_name_8 (date VARCHAR, opponent VARCHAR)
###question:Name the most population for seychelles and rank less than 13###answer:SELECT MAX(population) FROM table_name_8 WHERE country_territory_entity = "seychelles" AND rank < 13###context:CREATE TABLE table_name_8 (population INTEGER, country_territory_entity VARCHAR, rank VARCHAR)
###question:What is the frequency of the station owned by the Canadian Broadcasting Corporation and branded as CBC Radio One?###answer:SELECT frequency FROM table_name_49 WHERE owner = "canadian broadcasting corporation" AND branding = "cbc radio one"###context:CREATE TABLE table_name_49 (frequency VARCHAR, owner VARCH...
###question:What is the frequency of the soft adult contemporary stations?###answer:SELECT frequency FROM table_name_14 WHERE format = "soft adult contemporary"###context:CREATE TABLE table_name_14 (frequency VARCHAR, format VARCHAR)
###question:Who owns the station with the frequency FM 92.1?###answer:SELECT owner FROM table_name_65 WHERE frequency = "fm 92.1"###context:CREATE TABLE table_name_65 (owner VARCHAR, frequency VARCHAR)
###question:What is the branding of the FM 97.7 station owned by the Canadian Broadcasting Corporation?###answer:SELECT branding FROM table_name_80 WHERE owner = "canadian broadcasting corporation" AND frequency = "fm 97.7"###context:CREATE TABLE table_name_80 (branding VARCHAR, owner VARCHAR, frequency VARCHAR)
###question:Which F/Laps has Podiums of 1, and a Season of 2000, and a Final Placing of nc?###answer:SELECT f_laps FROM table_name_98 WHERE podiums = "1" AND season = 2000 AND final_placing = "nc"###context:CREATE TABLE table_name_98 (f_laps VARCHAR, final_placing VARCHAR, podiums VARCHAR, season VARCHAR)
###question:Which Series has Poles of 0, and Races of 17?###answer:SELECT series FROM table_name_72 WHERE poles = "0" AND races = "17"###context:CREATE TABLE table_name_72 (series VARCHAR, poles VARCHAR, races VARCHAR)