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