combined_text
stringlengths
106
1.05k
###question:What is the relationship of the woman who died at 96?###answer:SELECT relationship FROM table_name_95 WHERE age_at_death = "96"###context:CREATE TABLE table_name_95 (relationship VARCHAR, age_at_death VARCHAR)
###question:What is the lifespan of Stefanie Rabatsch?###answer:SELECT life FROM table_name_93 WHERE name = "stefanie rabatsch"###context:CREATE TABLE table_name_93 (life VARCHAR, name VARCHAR)
###question:What is Brendan Gaughan's Car #?###answer:SELECT car__number FROM table_name_72 WHERE driver = "brendan gaughan"###context:CREATE TABLE table_name_72 (car__number VARCHAR, driver VARCHAR)
###question:What is Mike Skinner's Chevrolet's Car #?###answer:SELECT COUNT(car__number) FROM table_name_74 WHERE make = "chevrolet" AND driver = "mike skinner"###context:CREATE TABLE table_name_74 (car__number VARCHAR, make VARCHAR, driver VARCHAR)
###question:What is Driver Brendan Gaughan's Pos?###answer:SELECT pos FROM table_name_29 WHERE driver = "brendan gaughan"###context:CREATE TABLE table_name_29 (pos VARCHAR, driver VARCHAR)
###question:What was the 2009 value for a total over 1 and 4th on 2010?###answer:SELECT 2009 FROM table_name_36 WHERE total > 1 AND 2010 = "4th"###context:CREATE TABLE table_name_36 (total VARCHAR)
###question:What is the number of laps for the Time/Retired of +16.445?###answer:SELECT laps FROM table_name_76 WHERE time_retired = "+16.445"###context:CREATE TABLE table_name_76 (laps VARCHAR, time_retired VARCHAR)
###question:What is the number of laps for the honda vehicle, with a grid of 13?###answer:SELECT laps FROM table_name_17 WHERE constructor = "honda" AND grid = "13"###context:CREATE TABLE table_name_17 (laps VARCHAR, constructor VARCHAR, grid VARCHAR)
###question:What is the name of the company that constructed the vehicle for Timo Glock?###answer:SELECT constructor FROM table_name_15 WHERE driver = "timo glock"###context:CREATE TABLE table_name_15 (constructor VARCHAR, driver VARCHAR)
###question:What is the Grid for Rubens Barrichello?###answer:SELECT grid FROM table_name_99 WHERE driver = "rubens barrichello"###context:CREATE TABLE table_name_99 (grid VARCHAR, driver VARCHAR)
###question:What is the Time/Retired for the BMW Sauber, and Nick Heidfeld?###answer:SELECT time_retired FROM table_name_80 WHERE constructor = "bmw sauber" AND driver = "nick heidfeld"###context:CREATE TABLE table_name_80 (time_retired VARCHAR, constructor VARCHAR, driver VARCHAR)
###question:What were the total number of games in April greater than 83?###answer:SELECT COUNT(april) FROM table_name_61 WHERE game > 83###context:CREATE TABLE table_name_61 (april VARCHAR, game INTEGER)
###question:Which Games↑ is the lowest one that has a Position of wlb?###answer:SELECT MIN(games) AS ↑ FROM table_name_88 WHERE position = "wlb"###context:CREATE TABLE table_name_88 (games INTEGER, position VARCHAR)
###question:Which Games↑ is the lowest one that has a Number of 98?###answer:SELECT MIN(games) AS ↑ FROM table_name_88 WHERE number = 98###context:CREATE TABLE table_name_88 (games INTEGER, number VARCHAR)
###question:What is the height of Josh Tabb?###answer:SELECT height FROM table_name_28 WHERE name = "josh tabb"###context:CREATE TABLE table_name_28 (height VARCHAR, name VARCHAR)
###question:What series episode has stetson hats (part 1) under segment C?###answer:SELECT series_ep FROM table_name_22 WHERE segment_c = "stetson hats (part 1)"###context:CREATE TABLE table_name_22 (series_ep VARCHAR, segment_c VARCHAR)
###question:What is under segment C when s cuckoo clock is under segment B?###answer:SELECT segment_c FROM table_name_22 WHERE segment_b = "s cuckoo clock"###context:CREATE TABLE table_name_22 (segment_c VARCHAR, segment_b VARCHAR)
###question:When segment B is s pineapple, what is the segment C?###answer:SELECT segment_c FROM table_name_92 WHERE segment_b = "s pineapple"###context:CREATE TABLE table_name_92 (segment_c VARCHAR, segment_b VARCHAR)
###question:What series episode has jukeboxes as segment B?###answer:SELECT series_ep FROM table_name_80 WHERE segment_b = "jukeboxes"###context:CREATE TABLE table_name_80 (series_ep VARCHAR, segment_b VARCHAR)
###question:What week ended in a result of w 30-3, and had an attendance less than 62,795?###answer:SELECT MIN(week) FROM table_name_53 WHERE result = "w 30-3" AND attendance < 62 OFFSET 795###context:CREATE TABLE table_name_53 (week INTEGER, result VARCHAR, attendance VARCHAR)
###question:Which Format has a Catalog of 61298, and a Date of september 1984?###answer:SELECT format FROM table_name_51 WHERE catalog = 61298 AND date = "september 1984"###context:CREATE TABLE table_name_51 (format VARCHAR, catalog VARCHAR, date VARCHAR)
###question:Which Format has a Catalog smaller than 61298?###answer:SELECT format FROM table_name_11 WHERE catalog < 61298###context:CREATE TABLE table_name_11 (format VARCHAR, catalog INTEGER)
###question:What was the score of the game with 96 points?###answer:SELECT score FROM table_name_85 WHERE points = 96###context:CREATE TABLE table_name_85 (score VARCHAR, points VARCHAR)
###question:What was the score of the game with a record of 34–17–11–2?###answer:SELECT score FROM table_name_1 WHERE record = "34–17–11–2"###context:CREATE TABLE table_name_1 (score VARCHAR, record VARCHAR)
###question:What was the record after the game at Rich Stadium?###answer:SELECT record FROM table_name_72 WHERE game_site = "rich stadium"###context:CREATE TABLE table_name_72 (record VARCHAR, game_site VARCHAR)
###question:When was the first cap associated with 74 caps?###answer:SELECT first_cap FROM table_name_27 WHERE caps = 74###context:CREATE TABLE table_name_27 (first_cap VARCHAR, caps VARCHAR)
###question:How many goals are associated with over 97 caps and a Latest cap of april 24, 2013?###answer:SELECT AVG(goals) FROM table_name_43 WHERE latest_cap = "april 24, 2013" AND caps > 97###context:CREATE TABLE table_name_43 (goals INTEGER, latest_cap VARCHAR, caps VARCHAR)
###question:When was the first cap associated with 39 caps and under 33 goals?###answer:SELECT first_cap FROM table_name_29 WHERE goals < 33 AND caps = 39###context:CREATE TABLE table_name_29 (first_cap VARCHAR, goals VARCHAR, caps VARCHAR)
###question:What is the highest number of goals associated with 39 caps?###answer:SELECT MAX(goals) FROM table_name_33 WHERE caps = 39###context:CREATE TABLE table_name_33 (goals INTEGER, caps VARCHAR)
###question:How many days in April has a record of 42–22–12–3, and less than 99 points?###answer:SELECT COUNT(april) FROM table_name_98 WHERE record = "42–22–12–3" AND points < 99###context:CREATE TABLE table_name_98 (april VARCHAR, record VARCHAR, points VARCHAR)
###question:Name the total number of points for 44 game and january more than 15###answer:SELECT COUNT(points) FROM table_name_78 WHERE game = 44 AND january > 15###context:CREATE TABLE table_name_78 (points VARCHAR, game VARCHAR, january VARCHAR)
###question:Which Date had a Result of 7–20?###answer:SELECT date FROM table_name_37 WHERE result = "7–20"###context:CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR)
###question:Which Date had an Opponent of buffalo bills?###answer:SELECT date FROM table_name_50 WHERE opponent = "buffalo bills"###context:CREATE TABLE table_name_50 (date VARCHAR, opponent VARCHAR)
###question:Which Kickoff had a Game Site of bank of america stadium?###answer:SELECT kickoff FROM table_name_5 WHERE game_site = "bank of america stadium"###context:CREATE TABLE table_name_5 (kickoff VARCHAR, game_site VARCHAR)
###question:Which Kickoff had a Game Site of fawcett stadium?###answer:SELECT kickoff FROM table_name_12 WHERE game_site = "fawcett stadium"###context:CREATE TABLE table_name_12 (kickoff VARCHAR, game_site VARCHAR)
###question:Which NFL Recap had a Kickoff of 7:00pm edt?###answer:SELECT nfl_recap FROM table_name_16 WHERE kickoff = "7:00pm edt"###context:CREATE TABLE table_name_16 (nfl_recap VARCHAR, kickoff VARCHAR)
###question:Which NFL Recap had a Record of 1–3?###answer:SELECT nfl_recap FROM table_name_1 WHERE record = "1–3"###context:CREATE TABLE table_name_1 (nfl_recap VARCHAR, record VARCHAR)
###question:What was the Record on Game 50?###answer:SELECT record FROM table_name_68 WHERE game = 50###context:CREATE TABLE table_name_68 (record VARCHAR, game VARCHAR)
###question:what player score is higher than 17###answer:SELECT player FROM table_name_78 WHERE round = 17###context:CREATE TABLE table_name_78 (player VARCHAR, round VARCHAR)
###question:Which opponent has an attendance of 17,015?###answer:SELECT opponent FROM table_name_33 WHERE attendance = "17,015"###context:CREATE TABLE table_name_33 (opponent VARCHAR, attendance VARCHAR)
###question:Which Frequency MHz is the highest one that has a Call sign of k241an?###answer:SELECT MAX(frequency_mhz) FROM table_name_65 WHERE call_sign = "k241an"###context:CREATE TABLE table_name_65 (frequency_mhz INTEGER, call_sign VARCHAR)
###question:Which ERP W is the highest one that has a Frequency MHz larger than 88.3, and a City of license of lewis, kansas?###answer:SELECT MAX(erp_w) FROM table_name_9 WHERE frequency_mhz > 88.3 AND city_of_license = "lewis, kansas"###context:CREATE TABLE table_name_9 (erp_w INTEGER, frequency_mhz VARCHAR, city_of_l...
###question:Which FCC info has a ERP W smaller than 222, and a Call sign of k297ai?###answer:SELECT fcc_info FROM table_name_35 WHERE erp_w < 222 AND call_sign = "k297ai"###context:CREATE TABLE table_name_35 (fcc_info VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
###question:Which City of license has a Call sign of k241an?###answer:SELECT city_of_license FROM table_name_68 WHERE call_sign = "k241an"###context:CREATE TABLE table_name_68 (city_of_license VARCHAR, call_sign VARCHAR)
###question:Which Class has an ERP W of 222?###answer:SELECT class FROM table_name_21 WHERE erp_w = 222###context:CREATE TABLE table_name_21 (class VARCHAR, erp_w VARCHAR)
###question:What was the score on a clay surface in a year later than 2006 with David Ferrer as an opponent?###answer:SELECT score FROM table_name_43 WHERE surface = "clay" AND year > 2006 AND opponent = "david ferrer"###context:CREATE TABLE table_name_43 (score VARCHAR, opponent VARCHAR, surface VARCHAR, year VARCHAR)
###question:Which championship is in a year later than 2010 on a grass surface?###answer:SELECT championship FROM table_name_10 WHERE year > 2010 AND surface = "grass"###context:CREATE TABLE table_name_10 (championship VARCHAR, year VARCHAR, surface VARCHAR)
###question:Which championship has Roger Federer as an opponent on a clay surface in a year earlier than 2007?###answer:SELECT championship FROM table_name_36 WHERE opponent = "roger federer" AND surface = "clay" AND year < 2007###context:CREATE TABLE table_name_36 (championship VARCHAR, year VARCHAR, opponent VARCHAR,...
###question:What is the largest attendance that has December 16, 1962 as the date?###answer:SELECT MAX(attendance) FROM table_name_84 WHERE date = "december 16, 1962"###context:CREATE TABLE table_name_84 (attendance INTEGER, date VARCHAR)
###question:What is the largest week that has t 35-35 as the result?###answer:SELECT MAX(week) FROM table_name_69 WHERE result = "t 35-35"###context:CREATE TABLE table_name_69 (week INTEGER, result VARCHAR)
###question:Name the total number of no result for losses more than 1 and played of 38 and wins less than 19###answer:SELECT COUNT(no_result) FROM table_name_16 WHERE losses > 1 AND played = 38 AND wins < 19###context:CREATE TABLE table_name_16 (no_result VARCHAR, wins VARCHAR, losses VARCHAR, played VARCHAR)
###question:Name the sum of played with wins more than 19###answer:SELECT SUM(played) FROM table_name_14 WHERE wins > 19###context:CREATE TABLE table_name_14 (played INTEGER, wins INTEGER)
###question:Name the total number of losses with number result less than 0###answer:SELECT COUNT(losses) FROM table_name_5 WHERE no_result < 0###context:CREATE TABLE table_name_5 (losses VARCHAR, no_result INTEGER)
###question:Which Rank has Goals larger than 4, and a Scorer of oh seok-jae?###answer:SELECT rank FROM table_name_14 WHERE goals > 4 AND scorer = "oh seok-jae"###context:CREATE TABLE table_name_14 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)
###question:Which Goals is the lowest one that has Matches of 16, and a Scorer of park sang-in?###answer:SELECT MIN(goals) FROM table_name_92 WHERE matches = "16" AND scorer = "park sang-in"###context:CREATE TABLE table_name_92 (goals INTEGER, matches VARCHAR, scorer VARCHAR)
###question:Which Club has a Rank of 1?###answer:SELECT club FROM table_name_69 WHERE rank = "1"###context:CREATE TABLE table_name_69 (club VARCHAR, rank VARCHAR)
###question:Which Goals have a Club of hallelujah fc, and a Rank of 7?###answer:SELECT SUM(goals) FROM table_name_78 WHERE club = "hallelujah fc" AND rank = "7"###context:CREATE TABLE table_name_78 (goals INTEGER, club VARCHAR, rank VARCHAR)
###question:How many Extra points have Touchdowns larger than 2, and Field goals larger than 0?###answer:SELECT COUNT(extra_points) FROM table_name_4 WHERE touchdowns > 2 AND field_goals > 0###context:CREATE TABLE table_name_4 (extra_points VARCHAR, touchdowns VARCHAR, field_goals VARCHAR)
###question:Which Field goals is the highest one that has Touchdowns of 0, and Points larger than 4?###answer:SELECT MAX(field_goals) FROM table_name_76 WHERE touchdowns = 0 AND points > 4###context:CREATE TABLE table_name_76 (field_goals INTEGER, touchdowns VARCHAR, points VARCHAR)
###question:What is the grid number of Sandro Cortese, who has Aprilia as the manufacturer and less than 19 laps?###answer:SELECT SUM(grid) FROM table_name_44 WHERE manufacturer = "aprilia" AND laps < 19 AND rider = "sandro cortese"###context:CREATE TABLE table_name_44 (grid INTEGER, rider VARCHAR, manufacturer VARCHAR...
###question:Which Rank has a Lost smaller than 12, and a Played larger than 20, and an Avg Points larger than 1.73?###answer:SELECT MAX(rank) FROM table_name_95 WHERE lost < 12 AND played > 20 AND Avg.points > 1.73###context:CREATE TABLE table_name_95 (rank INTEGER, lost VARCHAR, played VARCHAR)
###question:Which Drew has a Rank of 5, and a Played larger than 30?###answer:SELECT COUNT(drew) FROM table_name_55 WHERE rank = 5 AND played > 30###context:CREATE TABLE table_name_55 (drew VARCHAR, rank VARCHAR, played VARCHAR)
###question:Which Rank has a Club of zulte waregem, and Points larger than 22?###answer:SELECT COUNT(rank) FROM table_name_93 WHERE club = "zulte waregem" AND points > 22###context:CREATE TABLE table_name_93 (rank VARCHAR, club VARCHAR, points VARCHAR)
###question:Which Lost has Seasons of 2, and Goals against larger than 43?###answer:SELECT MAX(lost) FROM table_name_75 WHERE seasons = 2 AND goals_against > 43###context:CREATE TABLE table_name_75 (lost INTEGER, seasons VARCHAR, goals_against VARCHAR)
###question:Which Drew has a Lost larger than 14?###answer:SELECT SUM(drew) FROM table_name_17 WHERE lost > 14###context:CREATE TABLE table_name_17 (drew INTEGER, lost INTEGER)
###question:Which Record has a Week smaller than 15, and an Opponent of at new york jets?###answer:SELECT record FROM table_name_48 WHERE week < 15 AND opponent = "at new york jets"###context:CREATE TABLE table_name_48 (record VARCHAR, week VARCHAR, opponent VARCHAR)
###question:Which Result has a Record of 5–4?###answer:SELECT result FROM table_name_14 WHERE record = "5–4"###context:CREATE TABLE table_name_14 (result VARCHAR, record VARCHAR)
###question:Which Record has a Time (ET) of 1:00pm, and an Opponent of kansas city chiefs?###answer:SELECT record FROM table_name_25 WHERE time___et__ = "1:00pm" AND opponent = "kansas city chiefs"###context:CREATE TABLE table_name_25 (record VARCHAR, time___et__ VARCHAR, opponent VARCHAR)
###question:What is the Hindi associated with a Domari of tærən?###answer:SELECT hindi FROM table_name_78 WHERE domari = "tærən"###context:CREATE TABLE table_name_78 (hindi VARCHAR, domari VARCHAR)
###question:What is the Lomavren associated with a Persian of se?###answer:SELECT lomavren FROM table_name_32 WHERE persian = "se"###context:CREATE TABLE table_name_32 (lomavren VARCHAR, persian VARCHAR)
###question:What is the Romani associated with a Domari of na?###answer:SELECT romani FROM table_name_44 WHERE domari = "na"###context:CREATE TABLE table_name_44 (romani VARCHAR, domari VARCHAR)
###question:What is the Domari associated with a Persian of yak, yek?###answer:SELECT domari FROM table_name_19 WHERE persian = "yak, yek"###context:CREATE TABLE table_name_19 (domari VARCHAR, persian VARCHAR)
###question:What is the Lomavren associated with a Hindi of sāt?###answer:SELECT lomavren FROM table_name_68 WHERE hindi = "sāt"###context:CREATE TABLE table_name_68 (lomavren VARCHAR, hindi VARCHAR)
###question:What is the Version before 2001 with a Length of 7:42?###answer:SELECT version FROM table_name_64 WHERE year < 2001 AND length = "7:42"###context:CREATE TABLE table_name_64 (version VARCHAR, year VARCHAR, length VARCHAR)
###question:In what Year is the length of the Song 7:42?###answer:SELECT AVG(year) FROM table_name_40 WHERE length = "7:42"###context:CREATE TABLE table_name_40 (year INTEGER, length VARCHAR)
###question:Which College/Junior/Club Team (League) has a Position of right wing, and a Round smaller than 3?###answer:SELECT college_junior_club_team__league_ FROM table_name_48 WHERE position = "right wing" AND round < 3###context:CREATE TABLE table_name_48 (college_junior_club_team__league_ VARCHAR, position VARCHAR...
###question:What is the orbital regime of launches greater than 4 and failures less than 2?###answer:SELECT orbital_regime FROM table_name_76 WHERE launches > 4 AND failures < 2###context:CREATE TABLE table_name_76 (orbital_regime VARCHAR, launches VARCHAR, failures VARCHAR)
###question:What is the total of medium earth orbital regime, accidentally achieved and successes greater than 3?###answer:SELECT SUM(accidentally_achieved) FROM table_name_19 WHERE orbital_regime = "medium earth" AND successes > 3###context:CREATE TABLE table_name_19 (accidentally_achieved INTEGER, orbital_regime VARC...
###question:What is the greatest successes that have failures greater than 1 and launches less than 28?###answer:SELECT MAX(successes) FROM table_name_25 WHERE failures > 1 AND launches < 28###context:CREATE TABLE table_name_25 (successes INTEGER, failures VARCHAR, launches VARCHAR)
###question:What is the total failures of heliocentric orbit orbital regimes and launches less than 1?###answer:SELECT SUM(failures) FROM table_name_33 WHERE orbital_regime = "heliocentric orbit" AND launches < 1###context:CREATE TABLE table_name_33 (failures INTEGER, orbital_regime VARCHAR, launches VARCHAR)
###question:What was the rank of tris speaker when BB/SO was 7?###answer:SELECT rank FROM table_name_20 WHERE player = "tris speaker" AND bb_so = 7###context:CREATE TABLE table_name_20 (rank VARCHAR, player VARCHAR, bb_so VARCHAR)
###question:What is the average rank for team cle when the BB/SO is 10.89?###answer:SELECT AVG(rank) FROM table_name_97 WHERE team = "cle" AND bb_so = 10.89###context:CREATE TABLE table_name_97 (rank INTEGER, team VARCHAR, bb_so VARCHAR)
###question:What is the name of a partner that played on a hard surface on 18 April 2011?###answer:SELECT partner FROM table_name_23 WHERE surface = "hard" AND date = "18 april 2011"###context:CREATE TABLE table_name_23 (partner VARCHAR, surface VARCHAR, date VARCHAR)
###question:What was the score for the final played on 2 July 2012?###answer:SELECT score FROM table_name_5 WHERE date = "2 july 2012"###context:CREATE TABLE table_name_5 (score VARCHAR, date VARCHAR)
###question:What was the Score on February 18, 2008?###answer:SELECT score FROM table_name_32 WHERE date = "february 18, 2008"###context:CREATE TABLE table_name_32 (score VARCHAR, date VARCHAR)
###question:What was the Opponent on the game played on a Hard Surface with a Score of 3–6, 6–3, [7–10]?###answer:SELECT opponent_in_the_final FROM table_name_61 WHERE surface = "hard" AND score = "3–6, 6–3, [7–10]"###context:CREATE TABLE table_name_61 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
###question:On what Surface was the game with Partner David Martin played Scoring 4–6, 6–7 (4-7)?###answer:SELECT surface FROM table_name_24 WHERE partner = "david martin" AND score = "4–6, 6–7 (4-7)"###context:CREATE TABLE table_name_24 (surface VARCHAR, partner VARCHAR, score VARCHAR)
###question:What was the Outcome of the game with a Score of 3–6, 4–6?###answer:SELECT outcome FROM table_name_67 WHERE score = "3–6, 4–6"###context:CREATE TABLE table_name_67 (outcome VARCHAR, score VARCHAR)
###question:What was the Partner on June 17, 2012?###answer:SELECT partner FROM table_name_69 WHERE date = "june 17, 2012"###context:CREATE TABLE table_name_69 (partner VARCHAR, date VARCHAR)
###question:What record has Glenn Robinson (16) as the leading scorer?###answer:SELECT record FROM table_name_83 WHERE leading_scorer = "glenn robinson (16)"###context:CREATE TABLE table_name_83 (record VARCHAR, leading_scorer VARCHAR)
###question:What date has 136-134 as the score?###answer:SELECT date FROM table_name_83 WHERE score = "136-134"###context:CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR)
###question:What home has 136-134 as the score?###answer:SELECT home FROM table_name_6 WHERE score = "136-134"###context:CREATE TABLE table_name_6 (home VARCHAR, score VARCHAR)
###question:What is the most recent year that China won a bronze?###answer:SELECT MAX(year) FROM table_name_77 WHERE bronze = "china"###context:CREATE TABLE table_name_77 (year INTEGER, bronze VARCHAR)
###question:What is the oldest year that the location was at Guangzhou?###answer:SELECT MIN(year) FROM table_name_1 WHERE location = "guangzhou"###context:CREATE TABLE table_name_1 (year INTEGER, location VARCHAR)
###question:For how many years was the location at Beijing?###answer:SELECT SUM(year) FROM table_name_7 WHERE location = "beijing"###context:CREATE TABLE table_name_7 (year INTEGER, location VARCHAR)
###question:What location is previous to 1994?###answer:SELECT location FROM table_name_56 WHERE year < 1994###context:CREATE TABLE table_name_56 (location VARCHAR, year INTEGER)
###question:What college(s) did the player(s) picked in round 4 with a pick number less than 98 play for?###answer:SELECT college FROM table_name_20 WHERE pick__number < 98 AND round = "round 4"###context:CREATE TABLE table_name_20 (college VARCHAR, pick__number VARCHAR, round VARCHAR)
###question:What is the pick number for the player(s) drafted in round 8?###answer:SELECT pick__number FROM table_name_31 WHERE round = "round 8"###context:CREATE TABLE table_name_31 (pick__number VARCHAR, round VARCHAR)
###question:What position(s) did the player(s) with a pick number of 125 play?###answer:SELECT position FROM table_name_38 WHERE pick__number = 125###context:CREATE TABLE table_name_38 (position VARCHAR, pick__number VARCHAR)
###question:What mean number of extra points was there when James Lawrence was a player and the touchdown number was less than 1?###answer:SELECT AVG(extra_points) FROM table_name_7 WHERE player = "james lawrence" AND touchdowns < 1###context:CREATE TABLE table_name_7 (extra_points INTEGER, player VARCHAR, touchdowns V...