combined_text
stringlengths
106
1.05k
###question:Which players have made a total of 12 extra points?###answer:SELECT player FROM table_14342592_5 WHERE extra_points = 12###context:CREATE TABLE table_14342592_5 (player VARCHAR, extra_points VARCHAR)
###question:Which positions have made 4 touchdowns?###answer:SELECT position FROM table_14342592_5 WHERE touchdowns = 4###context:CREATE TABLE table_14342592_5 (position VARCHAR, touchdowns VARCHAR)
###question:When the total points are 22 how many total touchdowns have been made?###answer:SELECT touchdowns FROM table_14342592_5 WHERE points = 22###context:CREATE TABLE table_14342592_5 (touchdowns VARCHAR, points VARCHAR)
###question:How many points were scored by someone who's position was right tackle?###answer:SELECT COUNT(points) FROM table_14342480_7 WHERE position = "Right tackle"###context:CREATE TABLE table_14342480_7 (points VARCHAR, position VARCHAR)
###question:What is the least amount of touchdowns scored on the chart?###answer:SELECT MIN(touchdowns) FROM table_14342480_7###context:CREATE TABLE table_14342480_7 (touchdowns INTEGER)
###question:How many points were scored by Rolla Bigelow?###answer:SELECT points FROM table_14342480_7 WHERE player = "Rolla Bigelow"###context:CREATE TABLE table_14342480_7 (points VARCHAR, player VARCHAR)
###question:How many touchdowns were scored by players who scored more than 5.0 extra points?###answer:SELECT COUNT(touchdowns) FROM table_14342480_7 WHERE extra_points > 5.0###context:CREATE TABLE table_14342480_7 (touchdowns VARCHAR, extra_points INTEGER)
###question:What is the lowest amount of field goals on the chart? ###answer:SELECT MIN(field_goals) FROM table_14342480_7###context:CREATE TABLE table_14342480_7 (field_goals INTEGER)
###question:Name the least points for patrick###answer:SELECT MIN(points) FROM table_14342592_4 WHERE player = "Patrick"###context:CREATE TABLE table_14342592_4 (points INTEGER, player VARCHAR)
###question:Name the starter for schulte###answer:SELECT starter FROM table_14342592_4 WHERE player = "Schulte"###context:CREATE TABLE table_14342592_4 (starter VARCHAR, player VARCHAR)
###question:Name the total number of points for the right end###answer:SELECT COUNT(points) FROM table_14342592_4 WHERE position = "Right end"###context:CREATE TABLE table_14342592_4 (points VARCHAR, position VARCHAR)
###question:Name the number of players when starter is no and touchdowns is 1 for right halfback###answer:SELECT COUNT(player) FROM table_14342592_4 WHERE starter = "No" AND touchdowns = 1 AND position = "Right halfback"###context:CREATE TABLE table_14342592_4 (player VARCHAR, position VARCHAR, starter VARCHAR, touchdowns VARCHAR)
###question:What was the series number of the episode directed by Rob Bailey?###answer:SELECT MAX(series__number) FROM table_14346689_1 WHERE directed_by = "Rob Bailey"###context:CREATE TABLE table_14346689_1 (series__number INTEGER, directed_by VARCHAR)
###question:Name the timeslot for season 5###answer:SELECT timeslot FROM table_143554_1 WHERE season = 5###context:CREATE TABLE table_143554_1 (timeslot VARCHAR, season VARCHAR)
###question:What is the area of Colonsay Island?###answer:SELECT MIN(area___ha__) FROM table_143579_1 WHERE island = "Colonsay"###context:CREATE TABLE table_143579_1 (area___ha__ INTEGER, island VARCHAR)
###question:How many ties were there for game 36 started?###answer:SELECT COUNT(ties) FROM table_14389782_2 WHERE games_started = 36###context:CREATE TABLE table_14389782_2 (ties VARCHAR, games_started VARCHAR)
###question:What is the winning pct for jersey 15?###answer:SELECT winning_pct FROM table_14389782_2 WHERE jersey_no = "15"###context:CREATE TABLE table_14389782_2 (winning_pct VARCHAR, jersey_no VARCHAR)
###question:Who is the quarter back for a winning pct of .792###answer:SELECT quarterback FROM table_14389782_2 WHERE winning_pct = ".792"###context:CREATE TABLE table_14389782_2 (quarterback VARCHAR, winning_pct VARCHAR)
###question:How many lost games for jersey number 2 and games started is less than 7.0?###answer:SELECT losses FROM table_14389782_2 WHERE jersey_no = "2" AND games_started < 7.0###context:CREATE TABLE table_14389782_2 (losses VARCHAR, jersey_no VARCHAR, games_started VARCHAR)
###question:Name the total number of date of vacancy for manner of departure being resigned and outgoing manager is geninho###answer:SELECT COUNT(date_of_vacancy) FROM table_14406743_5 WHERE manner_of_departure = "Resigned" AND outgoing_manager = "Geninho"###context:CREATE TABLE table_14406743_5 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR)
###question:Who led the points classification when Roman Kreuziger led the young rider classification?###answer:SELECT points_classification FROM table_14395920_2 WHERE young_rider_classification = "Roman Kreuziger"###context:CREATE TABLE table_14395920_2 (points_classification VARCHAR, young_rider_classification VARCHAR)
###question:Who won the stage when Fumiyuki Beppu won the combativity award?###answer:SELECT winner FROM table_14395920_2 WHERE combativity_award = "Fumiyuki Beppu"###context:CREATE TABLE table_14395920_2 (winner VARCHAR, combativity_award VARCHAR)
###question:Who won stage 18?###answer:SELECT winner FROM table_14395920_2 WHERE stage = 18###context:CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR)
###question:Who won the stage when Mark Cavendish led the points classification, Rinaldo Nocentini led the general classification, and the stage was less than 11.0?###answer:SELECT winner FROM table_14395920_2 WHERE points_classification = "Mark Cavendish" AND general_classification = "Rinaldo Nocentini" AND stage < 11.0###context:CREATE TABLE table_14395920_2 (winner VARCHAR, stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
###question:Name the 1st m for nor###answer:SELECT 1 AS st__m_ FROM table_14407512_24 WHERE nationality = "NOR"###context:CREATE TABLE table_14407512_24 (nationality VARCHAR)
###question:Name the 2nd m for gregor schlierenzauer###answer:SELECT 2 AS nd__m_ FROM table_14407512_24 WHERE name = "Gregor Schlierenzauer"###context:CREATE TABLE table_14407512_24 (name VARCHAR)
###question:Name the number of overall nt points for 248.9###answer:SELECT COUNT(overall_nt_points) FROM table_14407512_24 WHERE points = "248.9"###context:CREATE TABLE table_14407512_24 (overall_nt_points VARCHAR, points VARCHAR)
###question:How many times has the playoff been 1 in the contest for the afc cup?###answer:SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE play_off = 1###context:CREATE TABLE table_14460937_1 (afc_cup VARCHAR, play_off VARCHAR)
###question:How many times has the points total for the afc cup competion been 289?###answer:SELECT COUNT(afc_cup) FROM table_14460937_1 WHERE points__total_500_ = 289###context:CREATE TABLE table_14460937_1 (afc_cup VARCHAR, points__total_500_ VARCHAR)
###question:When the group stage has been 4 what is the largest playoff?###answer:SELECT MAX(play_off) FROM table_14460937_1 WHERE group_stage = 4###context:CREATE TABLE table_14460937_1 (play_off INTEGER, group_stage VARCHAR)
###question:What is the date the successor was seated for the georgia 6th district?###answer:SELECT date_successor_seated FROM table_1446600_4 WHERE district = "Georgia 6th"###context:CREATE TABLE table_1446600_4 (date_successor_seated VARCHAR, district VARCHAR)
###question:How many successors are from the georgia 2nd district?###answer:SELECT COUNT(successor) FROM table_1446600_4 WHERE district = "Georgia 2nd"###context:CREATE TABLE table_1446600_4 (successor VARCHAR, district VARCHAR)
###question:Show all the time(et) where the opponent is the Cincinnati Bengals.###answer:SELECT time___et__ FROM table_14477002_1 WHERE opponent = "Cincinnati Bengals"###context:CREATE TABLE table_14477002_1 (time___et__ VARCHAR, opponent VARCHAR)
###question:List the total number of records from Lambeau Field.###answer:SELECT COUNT(record) FROM table_14477002_1 WHERE location = "Lambeau Field"###context:CREATE TABLE table_14477002_1 (record VARCHAR, location VARCHAR)
###question:Who was the opposing team played at Riverfront Stadium?###answer:SELECT opponent FROM table_14563349_11 WHERE location = "Riverfront Stadium"###context:CREATE TABLE table_14563349_11 (opponent VARCHAR, location VARCHAR)
###question:How many days were the Kansas City Chiefs the opposing team?###answer:SELECT COUNT(date) FROM table_14563349_11 WHERE opponent = "Kansas City Chiefs"###context:CREATE TABLE table_14563349_11 (date VARCHAR, opponent VARCHAR)
###question:How many teams named argentina?###answer:SELECT MAX(fourth_place) FROM table_14573770_4 WHERE nation = "Argentina"###context:CREATE TABLE table_14573770_4 (fourth_place INTEGER, nation VARCHAR)
###question:How many times did argentina win?###answer:SELECT MAX(winners) FROM table_14573770_4 WHERE nation = "Argentina"###context:CREATE TABLE table_14573770_4 (winners INTEGER, nation VARCHAR)
###question:What is the number of s sikh where 955 is the number of buddhists?###answer:SELECT s_sikh FROM table_14598_5 WHERE buddhist = "955"###context:CREATE TABLE table_14598_5 (s_sikh VARCHAR, buddhist VARCHAR)
###question:How many buddhists are where s jain have 941?###answer:SELECT buddhist FROM table_14598_5 WHERE s_jain = "941"###context:CREATE TABLE table_14598_5 (buddhist VARCHAR, s_jain VARCHAR)
###question:What is the christian amount where work participation rate is the composition?###answer:SELECT christians FROM table_14598_5 WHERE composition = "Work Participation Rate"###context:CREATE TABLE table_14598_5 (christians VARCHAR, composition VARCHAR)
###question:How many s hindu are where buddhists are 955?###answer:SELECT s_hindu FROM table_14598_5 WHERE buddhist = "955"###context:CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
###question:What is the data point for s hindu where the buddhist data point is 73.0%?###answer:SELECT COUNT(s_hindu) FROM table_14598_5 WHERE buddhist = "73.0%"###context:CREATE TABLE table_14598_5 (s_hindu VARCHAR, buddhist VARCHAR)
###question:How many data points for chrstians are 39.7?###answer:SELECT COUNT(composition) FROM table_14598_5 WHERE christians = "39.7"###context:CREATE TABLE table_14598_5 (composition VARCHAR, christians VARCHAR)
###question:Name the hometown for ventrell jenkins###answer:SELECT hometown FROM table_14624447_39 WHERE name = "Ventrell Jenkins"###context:CREATE TABLE table_14624447_39 (hometown VARCHAR, name VARCHAR)
###question:Name the class when position is rt###answer:SELECT class FROM table_14624447_39 WHERE position = "RT"###context:CREATE TABLE table_14624447_39 (class VARCHAR, position VARCHAR)
###question:Which players college is Tennessee?###answer:SELECT player FROM table_14655757_1 WHERE college = "Tennessee"###context:CREATE TABLE table_14655757_1 (player VARCHAR, college VARCHAR)
###question:What college did Byron Williams attend?###answer:SELECT college FROM table_14655757_1 WHERE player = "Byron Williams"###context:CREATE TABLE table_14655757_1 (college VARCHAR, player VARCHAR)
###question:What is the lowest pick number?###answer:SELECT MIN(pick__number) FROM table_14655757_1###context:CREATE TABLE table_14655757_1 (pick__number INTEGER)
###question:What position is Jessie Clark?###answer:SELECT position FROM table_14655757_1 WHERE player = "Jessie Clark"###context:CREATE TABLE table_14655757_1 (position VARCHAR, player VARCHAR)
###question:What frequency does Chihuahua Sinaloa Durango cover?###answer:SELECT frequency FROM table_14670060_1 WHERE coverage = "Chihuahua Sinaloa Durango"###context:CREATE TABLE table_14670060_1 (frequency VARCHAR, coverage VARCHAR)
###question:How many times does the call sign XEZV appear?###answer:SELECT COUNT(transmitting_from) FROM table_14670060_1 WHERE call_sign = "XEZV"###context:CREATE TABLE table_14670060_1 (transmitting_from VARCHAR, call_sign VARCHAR)
###question:What languages are spoken when call sign XEJAM is used?###answer:SELECT languages FROM table_14670060_1 WHERE call_sign = "XEJAM"###context:CREATE TABLE table_14670060_1 (languages VARCHAR, call_sign VARCHAR)
###question:Who shot an 80 in round 3###answer:SELECT shooter FROM table_14708760_3 WHERE round_3 = 80###context:CREATE TABLE table_14708760_3 (shooter VARCHAR, round_3 VARCHAR)
###question:What is the highest score of round 1 where they also shot 90 in round 2###answer:SELECT MAX(round_1) FROM table_14708760_3 WHERE round_2 = 90###context:CREATE TABLE table_14708760_3 (round_1 INTEGER, round_2 VARCHAR)
###question:What position did Dave Johnson play?###answer:SELECT position FROM table_1473672_5 WHERE player = "Dave Johnson"###context:CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
###question:What is Bernie Germain's nationality?###answer:SELECT nationality FROM table_1473672_5 WHERE player = "Bernie Germain"###context:CREATE TABLE table_1473672_5 (nationality VARCHAR, player VARCHAR)
###question:What player was picked by the Minnesota North Stars?###answer:SELECT player FROM table_1473672_5 WHERE nhl_team = "Minnesota North Stars"###context:CREATE TABLE table_1473672_5 (player VARCHAR, nhl_team VARCHAR)
###question:What position did Marty Gateman play?###answer:SELECT position FROM table_1473672_5 WHERE player = "Marty Gateman"###context:CREATE TABLE table_1473672_5 (position VARCHAR, player VARCHAR)
###question:What was the position of the player picked by the Montreal Canadiens?###answer:SELECT position FROM table_1473672_5 WHERE nhl_team = "Montreal Canadiens"###context:CREATE TABLE table_1473672_5 (position VARCHAR, nhl_team VARCHAR)
###question:the california golden seals that where drafted by nhl teams played what positions###answer:SELECT position FROM table_1473672_7 WHERE nhl_team = "California Golden Seals"###context:CREATE TABLE table_1473672_7 (position VARCHAR, nhl_team VARCHAR)
###question:what country was the player drafted by the toronto maple leafs###answer:SELECT nationality FROM table_1473672_7 WHERE nhl_team = "Toronto Maple Leafs"###context:CREATE TABLE table_1473672_7 (nationality VARCHAR, nhl_team VARCHAR)
###question:The los angeles kings drafted what player in the 7th round###answer:SELECT player FROM table_1473672_7 WHERE nhl_team = "Los Angeles Kings"###context:CREATE TABLE table_1473672_7 (player VARCHAR, nhl_team VARCHAR)
###question:How many players had been drafted in front of Yves archambault###answer:SELECT pick__number FROM table_1473672_7 WHERE player = "Yves Archambault"###context:CREATE TABLE table_1473672_7 (pick__number VARCHAR, player VARCHAR)
###question:Serge Beaudoin was drafted when in the 1972 NHL draft###answer:SELECT MIN(pick__number) FROM table_1473672_7 WHERE player = "Serge Beaudoin"###context:CREATE TABLE table_1473672_7 (pick__number INTEGER, player VARCHAR)
###question:What NHL team drafted Rob Palmer?###answer:SELECT nhl_team FROM table_1473672_6 WHERE player = "Rob Palmer"###context:CREATE TABLE table_1473672_6 (nhl_team VARCHAR, player VARCHAR)
###question:What player was drafted by the Chicago Black Hawks?###answer:SELECT player FROM table_1473672_6 WHERE nhl_team = "Chicago Black Hawks"###context:CREATE TABLE table_1473672_6 (player VARCHAR, nhl_team VARCHAR)
###question:What country did Derek Black come from?###answer:SELECT nationality FROM table_1473672_6 WHERE player = "Derek Black"###context:CREATE TABLE table_1473672_6 (nationality VARCHAR, player VARCHAR)
###question:What team did Derek Black Play for prior to being drafted?###answer:SELECT college_junior_club_team FROM table_1473672_6 WHERE player = "Derek Black"###context:CREATE TABLE table_1473672_6 (college_junior_club_team VARCHAR, player VARCHAR)
###question:At maximum, what are our goals?###answer:SELECT MAX(goals) FROM table_1474099_6###context:CREATE TABLE table_1474099_6 (goals INTEGER)
###question:When the team scored 17 and Slavija placed second, what year was it?###answer:SELECT season FROM table_1474099_6 WHERE goals = 17 AND runners_up = "Slavija"###context:CREATE TABLE table_1474099_6 (season VARCHAR, goals VARCHAR, runners_up VARCHAR)
###question:Name the change 2009 to 2010 where international tourist arrivals is 9.4 million###answer:SELECT change__2009_to_2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "9.4 million"###context:CREATE TABLE table_14752049_3 (change__2009_to_2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
###question:Name the international tourist arrivals for arrivals 2011 for 8.1 million###answer:SELECT international_tourist_arrivals__2010_ FROM table_14752049_3 WHERE international_tourist_arrivals__2011_ = "8.1 million"###context:CREATE TABLE table_14752049_3 (international_tourist_arrivals__2010_ VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
###question:How many tourist arrivals occurred in 2011 in the country of Italy?###answer:SELECT international_tourist_arrivals__2011_ FROM table_14752049_1 WHERE country = "Italy"###context:CREATE TABLE table_14752049_1 (international_tourist_arrivals__2011_ VARCHAR, country VARCHAR)
###question:Which country has a rank of 5?###answer:SELECT country FROM table_14752049_1 WHERE rank = 5###context:CREATE TABLE table_14752049_1 (country VARCHAR, rank VARCHAR)
###question:What rank is associated with Germany?###answer:SELECT MAX(rank) FROM table_14752049_1 WHERE country = "Germany"###context:CREATE TABLE table_14752049_1 (rank INTEGER, country VARCHAR)
###question:Name the number of ranks for international tourist arrivals being 6.2 million###answer:SELECT COUNT(rank) FROM table_14752049_5 WHERE international_tourist_arrivals__2011_ = "6.2 million"###context:CREATE TABLE table_14752049_5 (rank VARCHAR, international_tourist_arrivals__2011_ VARCHAR)
###question:Name the number of ranks for south korea###answer:SELECT COUNT(rank) FROM table_14752049_5 WHERE country = "South Korea"###context:CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)
###question:What is the minimum stolen ends for the locale Alberta?###answer:SELECT MIN(stolen_ends) FROM table_1475840_1 WHERE locale = Alberta###context:CREATE TABLE table_1475840_1 (stolen_ends INTEGER, locale VARCHAR, Alberta VARCHAR)
###question:What was the inroductory phase for the episode with production code 4005?###answer:SELECT introductory_phrase FROM table_14835674_1 WHERE production_code = 4005###context:CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, production_code VARCHAR)
###question:What was the inroductory phase for the episode with neil shubin as a guest?###answer:SELECT introductory_phrase FROM table_14835674_1 WHERE guest = "Neil Shubin"###context:CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, guest VARCHAR)
###question:What was the inroductory phase for the episode that originally aired january 21?###answer:SELECT introductory_phrase FROM table_14835674_1 WHERE original_airdate = "January 21"###context:CREATE TABLE table_14835674_1 (introductory_phrase VARCHAR, original_airdate VARCHAR)
###question:How many series had 18.77 million viewers?###answer:SELECT COUNT(series__number) FROM table_14835826_1 WHERE us_viewers__millions_ = "18.77"###context:CREATE TABLE table_14835826_1 (series__number VARCHAR, us_viewers__millions_ VARCHAR)
###question:How many roles include George Broderick in the casino 1888 theater?###answer:SELECT role FROM table_148386_2 WHERE casino_theatre_1888 = "George Broderick"###context:CREATE TABLE table_148386_2 (role VARCHAR, casino_theatre_1888 VARCHAR)
###question:What is the total of roles that George Olmi plays in Savoy & Casino Theatre 1888?###answer:SELECT COUNT(savoy_theatre_1888) FROM table_148386_2 WHERE casino_theatre_1888 = "George Olmi"###context:CREATE TABLE table_148386_2 (savoy_theatre_1888 VARCHAR, casino_theatre_1888 VARCHAR)
###question:Who plays Overton Moyle in casino theatre 1888 & savoy theatre 1906?###answer:SELECT casino_theatre_1888 FROM table_148386_2 WHERE savoy_theatre_1906 = "Overton Moyle"###context:CREATE TABLE table_148386_2 (casino_theatre_1888 VARCHAR, savoy_theatre_1906 VARCHAR)
###question:Name the losses for general caballero zc###answer:SELECT losses FROM table_14876228_1 WHERE team = "General Caballero ZC"###context:CREATE TABLE table_14876228_1 (losses VARCHAR, team VARCHAR)
###question:Name the most draws when wins is 3###answer:SELECT MAX(draws) FROM table_14876228_1 WHERE wins = 3###context:CREATE TABLE table_14876228_1 (draws INTEGER, wins VARCHAR)
###question:Name the number of played for 16###answer:SELECT COUNT(played) FROM table_14876228_1 WHERE scored = 16###context:CREATE TABLE table_14876228_1 (played VARCHAR, scored VARCHAR)
###question:Name the population 1891 for area being 175836###answer:SELECT COUNT(population_1891) FROM table_14925084_1 WHERE area_1891__statute_acres_ = 175836###context:CREATE TABLE table_14925084_1 (population_1891 VARCHAR, area_1891__statute_acres_ VARCHAR)
###question:Name the administrative county being area of 422372###answer:SELECT administrative_county FROM table_14925084_1 WHERE area_1961__statute_acres_ = 422372###context:CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
###question:Name the area for administrative county being flintshire###answer:SELECT area_1891__statute_acres_ FROM table_14925084_1 WHERE administrative_county = "Flintshire"###context:CREATE TABLE table_14925084_1 (area_1891__statute_acres_ VARCHAR, administrative_county VARCHAR)
###question:Name the number of administrative county for area 1961 and 176694###answer:SELECT COUNT(administrative_county) FROM table_14925084_1 WHERE area_1961__statute_acres_ = 176694###context:CREATE TABLE table_14925084_1 (administrative_county VARCHAR, area_1961__statute_acres_ VARCHAR)
###question:How many couples won the Mixed Doubles in 1997?###answer:SELECT COUNT(mixed_doubles) FROM table_14904046_1 WHERE year = 1997###context:CREATE TABLE table_14904046_1 (mixed_doubles VARCHAR, year VARCHAR)
###question:Name the number of week for game site being memorial stadium for buffalo bills###answer:SELECT COUNT(week) FROM table_14940519_1 WHERE game_site = "Memorial Stadium" AND opponent = "Buffalo Bills"###context:CREATE TABLE table_14940519_1 (week VARCHAR, game_site VARCHAR, opponent VARCHAR)
###question:Name the opponent for october 2, 1983###answer:SELECT opponent FROM table_14940519_1 WHERE date = "October 2, 1983"###context:CREATE TABLE table_14940519_1 (opponent VARCHAR, date VARCHAR)
###question:Name the least week for september 25, 1983###answer:SELECT MAX(week) FROM table_14940519_1 WHERE date = "September 25, 1983"###context:CREATE TABLE table_14940519_1 (week INTEGER, date VARCHAR)
###question:Name the total number of weeks for at cleveland browns###answer:SELECT COUNT(week) FROM table_14940519_1 WHERE opponent = "at Cleveland Browns"###context:CREATE TABLE table_14940519_1 (week VARCHAR, opponent VARCHAR)
###question:Name the record for result of l 17–50###answer:SELECT record FROM table_14940519_1 WHERE result = "L 17–50"###context:CREATE TABLE table_14940519_1 (record VARCHAR, result VARCHAR)
###question:what's the record with result being w 52–19###answer:SELECT record FROM table_14951643_1 WHERE result = "W 52–19"###context:CREATE TABLE table_14951643_1 (record VARCHAR, result VARCHAR)