Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
15,100
<question>: How many people attended games at alberto picco stadium? <context>: CREATE TABLE table_name_97 (capacity VARCHAR, stadium VARCHAR)
SELECT COUNT(capacity) FROM table_name_97 WHERE stadium = "alberto picco"
15,101
<question>: What team is from terni? <context>: CREATE TABLE table_name_59 (team VARCHAR, home_city VARCHAR)
SELECT team FROM table_name_59 WHERE home_city = "terni"
15,102
<question>: What is the total attendance of the game with Toronto as the visitor team? <context>: CREATE TABLE table_name_82 (attendance VARCHAR, visitor VARCHAR)
SELECT COUNT(attendance) FROM table_name_82 WHERE visitor = "toronto"
15,103
<question>: What position does tim barnett play? <context>: CREATE TABLE table_name_26 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_26 WHERE player = "tim barnett"
15,104
<question>: I want the sum of number of seasons in top division for position in 2012-13 of 009 9th and number of seasons in premier league less than 3 <context>: CREATE TABLE table_name_48 (number_of_seasons_in_top_division INTEGER, position_in_2012_13 VARCHAR, number_of_seasons_in_the_premier_league VARCHAR)
SELECT SUM(number_of_seasons_in_top_division) FROM table_name_48 WHERE position_in_2012_13 = "009 9th" AND number_of_seasons_in_the_premier_league < 3
15,105
<question>: How many tons was the ship from norway? <context>: CREATE TABLE table_name_14 (tons VARCHAR, nationality VARCHAR)
SELECT COUNT(tons) FROM table_name_14 WHERE nationality = "norway"
15,106
<question>: How many people were in attendance at Glenferrie Oval? <context>: CREATE TABLE table_name_43 (crowd INTEGER, venue VARCHAR)
SELECT MIN(crowd) FROM table_name_43 WHERE venue = "glenferrie oval"
15,107
<question>: What was the away team score at Brunswick Street Oval? <context>: CREATE TABLE table_name_82 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_82 WHERE venue = "brunswick street oval"
15,108
<question>: What was Melbourne's away team score? <context>: CREATE TABLE table_name_20 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_20 WHERE away_team = "melbourne"
15,109
<question>: What is Adam Keefe's nationality? <context>: CREATE TABLE table_name_42 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_42 WHERE player = "adam keefe"
15,110
<question>: Who is the player who went to Stanford? <context>: CREATE TABLE table_name_8 (player VARCHAR, school_club_team VARCHAR)
SELECT player FROM table_name_8 WHERE school_club_team = "stanford"
15,111
<question>: What are the years on the Jazz for the player who is a combo forward? <context>: CREATE TABLE table_name_12 (years_for_jazz VARCHAR, position VARCHAR)
SELECT years_for_jazz FROM table_name_12 WHERE position = "combo forward"
15,112
<question>: What is the total for the state of new york and a swimsuit less than 9.394? <context>: CREATE TABLE table_name_97 (interview INTEGER, state VARCHAR, swimsuit VARCHAR)
SELECT SUM(interview) FROM table_name_97 WHERE state = "new york" AND swimsuit < 9.394
15,113
<question>: What is the greatest interview that has a swimsuit less than 8.838? <context>: CREATE TABLE table_name_98 (interview INTEGER, swimsuit INTEGER)
SELECT MAX(interview) FROM table_name_98 WHERE swimsuit < 8.838
15,114
<question>: What is the lowest average that has a swimsuit less than 8.966, for west virginia and an evening gown less than 8.711? <context>: CREATE TABLE table_name_15 (average INTEGER, evening_gown VARCHAR, swimsuit VARCHAR, state VARCHAR)
SELECT MIN(average) FROM table_name_15 WHERE swimsuit < 8.966 AND state = "west virginia" AND evening_gown < 8.711
15,115
<question>: What is the lowest swimsuit that has an evening gown bigger than 8.794 for illinois? <context>: CREATE TABLE table_name_47 (swimsuit INTEGER, evening_gown VARCHAR, state VARCHAR)
SELECT MIN(swimsuit) FROM table_name_47 WHERE evening_gown > 8.794 AND state = "illinois"
15,116
<question>: What day was the score 3-0 after 2011? <context>: CREATE TABLE table_name_88 (date VARCHAR, score VARCHAR, year VARCHAR)
SELECT date FROM table_name_88 WHERE score = "3-0" AND year = 2011
15,117
<question>: What day was the result a win, the score 2-1, and the year before 2012? <context>: CREATE TABLE table_name_7 (date VARCHAR, year VARCHAR, result VARCHAR, score VARCHAR)
SELECT date FROM table_name_7 WHERE result = "win" AND score = "2-1" AND year < 2012
15,118
<question>: What is the highest amount of floors in Stockholm with a rank of 15? <context>: CREATE TABLE table_name_96 (floors INTEGER, location VARCHAR, rank VARCHAR)
SELECT MAX(floors) FROM table_name_96 WHERE location = "stockholm" AND rank = "15"
15,119
<question>: What is the rank of Skanskaskrapan? <context>: CREATE TABLE table_name_3 (rank VARCHAR, name VARCHAR)
SELECT rank FROM table_name_3 WHERE name = "skanskaskrapan"
15,120
<question>: What is the rank of Point Hyllie? <context>: CREATE TABLE table_name_52 (rank VARCHAR, name VARCHAR)
SELECT rank FROM table_name_52 WHERE name = "point hyllie"
15,121
<question>: How many bronzes for the nation with 2 golds and ranked below 2? <context>: CREATE TABLE table_name_9 (bronze INTEGER, gold VARCHAR, rank VARCHAR)
SELECT SUM(bronze) FROM table_name_9 WHERE gold = 2 AND rank > 2
15,122
<question>: What was the decision when montreal was at home? <context>: CREATE TABLE table_name_12 (decision VARCHAR, home VARCHAR)
SELECT decision FROM table_name_12 WHERE home = "montreal"
15,123
<question>: What day is the team 17–24–5? <context>: CREATE TABLE table_name_59 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_59 WHERE record = "17–24–5"
15,124
<question>: Who was the visitor on november 14 with leclaire recording the decision? <context>: CREATE TABLE table_name_43 (visitor VARCHAR, decision VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_43 WHERE decision = "leclaire" AND date = "november 14"
15,125
<question>: What day was St. Louis the visitor? <context>: CREATE TABLE table_name_85 (date VARCHAR, visitor VARCHAR)
SELECT date FROM table_name_85 WHERE visitor = "st. louis"
15,126
<question>: What club team is the United States player with an overall pick smaller than 142 from? <context>: CREATE TABLE table_name_98 (club_team VARCHAR, nationality VARCHAR, overall VARCHAR)
SELECT club_team FROM table_name_98 WHERE nationality = "united states" AND overall < 142
15,127
<question>: Which object type had an NGC number greater than 6357 and a declination (J2000) of Β°45β€²34β€³? <context>: CREATE TABLE table_name_53 (object_type VARCHAR, ngc_number VARCHAR, declination___j2000__ VARCHAR)
SELECT object_type FROM table_name_53 WHERE ngc_number > 6357 AND declination___j2000__ = "Β°45β€²34β€³"
15,128
<question>: For the constellation scorpius and object of planetary nebula, what was the declination (J2000)? <context>: CREATE TABLE table_name_53 (declination___j2000__ VARCHAR, constellation VARCHAR, object_type VARCHAR)
SELECT declination___j2000__ FROM table_name_53 WHERE constellation = "scorpius" AND object_type = "planetary nebula"
15,129
<question>: What is the earliest year a red maple had a mintage over 15,000? <context>: CREATE TABLE table_name_48 (year INTEGER, theme VARCHAR, mintage VARCHAR)
SELECT MIN(year) FROM table_name_48 WHERE theme = "red maple" AND mintage > 15 OFFSET 000
15,130
<question>: What is the issue price of a voyageur before 2006? <context>: CREATE TABLE table_name_89 (issue_price VARCHAR, year VARCHAR, theme VARCHAR)
SELECT issue_price FROM table_name_89 WHERE year < 2006 AND theme = "voyageur"
15,131
<question>: How many cowboy coins were minted? <context>: CREATE TABLE table_name_1 (mintage VARCHAR, theme VARCHAR)
SELECT mintage FROM table_name_1 WHERE theme = "cowboy"
15,132
<question>: What was the attendance of the South Melbourne away game? <context>: CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)
SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = "south melbourne"
15,133
<question>: What was the opponents score when Carlton played at home? <context>: CREATE TABLE table_name_55 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_55 WHERE home_team = "carlton"
15,134
<question>: Who was the home team at MCG? <context>: CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_39 WHERE venue = "mcg"
15,135
<question>: Tell me the HDD capacity for # FDD larger than 0 when FDD capacity is 710kb <context>: CREATE TABLE table_name_7 (hdd_capacity VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR)
SELECT hdd_capacity FROM table_name_7 WHERE _number_fdd > 0 AND fdd_capacity__each_ = "710kb"
15,136
<question>: I want to know the HP model with a #HDD of 1 of sides of ds <context>: CREATE TABLE table_name_68 (hp_model VARCHAR, _number_hdd VARCHAR, sides VARCHAR)
SELECT hp_model FROM table_name_68 WHERE _number_hdd = 1 AND sides = "ds"
15,137
<question>: Tell me the command set with FDD capacity of 270kb and sides of ds with #FDD more than 1 <context>: CREATE TABLE table_name_35 (command_set VARCHAR, _number_fdd VARCHAR, fdd_capacity__each_ VARCHAR, sides VARCHAR)
SELECT command_set FROM table_name_35 WHERE fdd_capacity__each_ = "270kb" AND sides = "ds" AND _number_fdd > 1
15,138
<question>: what was the foundation of Politeknik Pagoh? <context>: CREATE TABLE table_name_73 (foundation INTEGER, official_name_in_malay VARCHAR)
SELECT AVG(foundation) FROM table_name_73 WHERE official_name_in_malay = "politeknik pagoh"
15,139
<question>: When the shares were less than 8, how many total viewers were there? <context>: CREATE TABLE table_name_12 (total_viewers VARCHAR, share INTEGER)
SELECT total_viewers FROM table_name_12 WHERE share < 8
15,140
<question>: What is the lowest crowd when North Melbourne played at home? <context>: CREATE TABLE table_name_92 (crowd INTEGER, home_team VARCHAR)
SELECT MIN(crowd) FROM table_name_92 WHERE home_team = "north melbourne"
15,141
<question>: Which home team has a crowd larger than 25,000? <context>: CREATE TABLE table_name_42 (home_team VARCHAR, crowd INTEGER)
SELECT home_team FROM table_name_42 WHERE crowd > 25 OFFSET 000
15,142
<question>: What driver has a grid of under 10, and under 70 laps? <context>: CREATE TABLE table_name_84 (driver VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT driver FROM table_name_84 WHERE grid < 10 AND laps < 70
15,143
<question>: How many total laps for a grid of 3? <context>: CREATE TABLE table_name_42 (laps VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_42 WHERE grid = 3
15,144
<question>: What is the average grid for giorgio pantano? <context>: CREATE TABLE table_name_70 (grid INTEGER, driver VARCHAR)
SELECT AVG(grid) FROM table_name_70 WHERE driver = "giorgio pantano"
15,145
<question>: What is the Year 10 6th Quads for the Open 2nd VIII of ACGS and a Year 11 2nd VIII NC? <context>: CREATE TABLE table_name_7 (year_10_6th_quad VARCHAR, open_2nd_viii VARCHAR, year_11_2nd_viii VARCHAR)
SELECT year_10_6th_quad FROM table_name_7 WHERE open_2nd_viii = "acgs" AND year_11_2nd_viii = "nc"
15,146
<question>: What is the Year 10 5th Quads with NC as Open 1st VIII and NC as a Year 10 3rd Quads? <context>: CREATE TABLE table_name_16 (year_10_5th_quad VARCHAR, open_1st_viii VARCHAR, year_10_3rd_quad VARCHAR)
SELECT year_10_5th_quad FROM table_name_16 WHERE open_1st_viii = "nc" AND year_10_3rd_quad = "nc"
15,147
<question>: What is the Open 1st VIII for the 2012 crew? <context>: CREATE TABLE table_name_76 (open_1st_viii VARCHAR, crew VARCHAR)
SELECT open_1st_viii FROM table_name_76 WHERE crew = 2012
15,148
<question>: On July 25 what is the lowest attendance with the Brewers as the opponent? <context>: CREATE TABLE table_name_26 (attendance INTEGER, opponent VARCHAR, date VARCHAR)
SELECT MIN(attendance) FROM table_name_26 WHERE opponent = "brewers" AND date = "july 25"
15,149
<question>: Tell me the high assists for orlando <context>: CREATE TABLE table_name_46 (high_assists VARCHAR, team VARCHAR)
SELECT high_assists FROM table_name_46 WHERE team = "orlando"
15,150
<question>: Who was the presenter on Friday of the series in which Alice Levine Jamie East presented on Sunday? <context>: CREATE TABLE table_name_34 (friday VARCHAR, sunday VARCHAR)
SELECT friday FROM table_name_34 WHERE sunday = "alice levine jamie east"
15,151
<question>: In what series did Alice Levine Jamie East give a presentation on Saturday? <context>: CREATE TABLE table_name_60 (series VARCHAR, saturday VARCHAR)
SELECT series FROM table_name_60 WHERE saturday = "alice levine jamie east"
15,152
<question>: Who was the presenter on Thursday of the series in which Emma Willis was the presenter on Wednesday, and Alice Levine Jamie East was the presenter on Sunday? <context>: CREATE TABLE table_name_15 (thursday VARCHAR, wednesday VARCHAR, sunday VARCHAR)
SELECT thursday FROM table_name_15 WHERE wednesday = "emma willis" AND sunday = "alice levine jamie east"
15,153
<question>: On the series in which Emma Willis Jamie East presented on Friday, who was the presenter on Sunday? <context>: CREATE TABLE table_name_79 (sunday VARCHAR, friday VARCHAR)
SELECT sunday FROM table_name_79 WHERE friday = "emma willis jamie east"
15,154
<question>: Who was the presenter on Monday of "Big Brother 13" in which Alice Levine Jamie East presented on Sunday? <context>: CREATE TABLE table_name_45 (monday VARCHAR, sunday VARCHAR, series VARCHAR)
SELECT monday FROM table_name_45 WHERE sunday = "alice levine jamie east" AND series = "big brother 13"
15,155
<question>: What state was the president who was elected earlier than 1848 born in? <context>: CREATE TABLE table_name_43 (birth_state VARCHAR, election_year INTEGER)
SELECT birth_state FROM table_name_43 WHERE election_year < 1848
15,156
<question>: What is the resident state for the president elected in 1864? <context>: CREATE TABLE table_name_83 (resident_state VARCHAR, election_year VARCHAR)
SELECT resident_state FROM table_name_83 WHERE election_year = 1864
15,157
<question>: What is the election year of the president with a Birth State of lost connecticut? <context>: CREATE TABLE table_name_61 (election_year INTEGER, birth_state VARCHAR)
SELECT AVG(election_year) FROM table_name_61 WHERE birth_state = "lost connecticut"
15,158
<question>: Which ICAO's IATA is ath? <context>: CREATE TABLE table_name_63 (icao VARCHAR, iata VARCHAR)
SELECT icao FROM table_name_63 WHERE iata = "ath"
15,159
<question>: Which country's city is Sendai? <context>: CREATE TABLE table_name_5 (country VARCHAR, city VARCHAR)
SELECT country FROM table_name_5 WHERE city = "sendai"
15,160
<question>: Which ICAO's city is Manchester? <context>: CREATE TABLE table_name_96 (icao VARCHAR, city VARCHAR)
SELECT icao FROM table_name_96 WHERE city = "manchester"
15,161
<question>: Which airport is in Saudi Arabia when the ICAO is oejn? <context>: CREATE TABLE table_name_20 (airport VARCHAR, country VARCHAR, icao VARCHAR)
SELECT airport FROM table_name_20 WHERE country = "saudi arabia" AND icao = "oejn"
15,162
<question>: Which IATA's ICAO is rjss? <context>: CREATE TABLE table_name_17 (iata VARCHAR, icao VARCHAR)
SELECT iata FROM table_name_17 WHERE icao = "rjss"
15,163
<question>: Which country features Adelaide Airport? <context>: CREATE TABLE table_name_21 (country VARCHAR, airport VARCHAR)
SELECT country FROM table_name_21 WHERE airport = "adelaide airport"
15,164
<question>: What is the mean number of laps when the grid was 8? <context>: CREATE TABLE table_name_8 (laps INTEGER, grid VARCHAR)
SELECT AVG(laps) FROM table_name_8 WHERE grid = 8
15,165
<question>: What is the largest lap number when the time was +31.982? <context>: CREATE TABLE table_name_5 (laps INTEGER, time VARCHAR)
SELECT MAX(laps) FROM table_name_5 WHERE time = "+31.982"
15,166
<question>: What time was there when the bike was Ducati 999 F06 and the grid number was 15? <context>: CREATE TABLE table_name_93 (time VARCHAR, bike VARCHAR, grid VARCHAR)
SELECT time FROM table_name_93 WHERE bike = "ducati 999 f06" AND grid = 15
15,167
<question>: What network is the Korean title of mbc 베슀트극μž₯ - μž‘μ€ 도둑 on? <context>: CREATE TABLE table_name_30 (network VARCHAR, korean_title VARCHAR)
SELECT network FROM table_name_30 WHERE korean_title = "mbc 베슀트극μž₯ - μž‘μ€ 도둑"
15,168
<question>: On what surface was the tournament with opponents kathleen horvath marcella mesker in the finals? <context>: CREATE TABLE table_name_1 (surface VARCHAR, opponents_in_the_final VARCHAR)
SELECT surface FROM table_name_1 WHERE opponents_in_the_final = "kathleen horvath marcella mesker"
15,169
<question>: What is the date of the final that has a score of 3–6, 6–3, 6–4 and penny barg paula smith was the opponent? <context>: CREATE TABLE table_name_98 (date VARCHAR, score_in_the_final VARCHAR, opponents_in_the_final VARCHAR)
SELECT date FROM table_name_98 WHERE score_in_the_final = "3–6, 6–3, 6–4" AND opponents_in_the_final = "penny barg paula smith"
15,170
<question>: How many people attended games at vfl park? <context>: CREATE TABLE table_name_12 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_12 WHERE venue = "vfl park"
15,171
<question>: Who is the home side when geelong is the away side? <context>: CREATE TABLE table_name_80 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_80 WHERE away_team = "geelong"
15,172
<question>: Which Pick has the College named Far Eastern / PSBA? <context>: CREATE TABLE table_name_68 (pick VARCHAR, college VARCHAR)
SELECT pick FROM table_name_68 WHERE college = "far eastern / psba"
15,173
<question>: When did Hawthorn play as the away team? <context>: CREATE TABLE table_name_95 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_95 WHERE away_team = "hawthorn"
15,174
<question>: Which team played Footscray? <context>: CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_41 WHERE home_team = "footscray"
15,175
<question>: How many were in the crowd when North Melbourne was the home team? <context>: CREATE TABLE table_name_24 (crowd VARCHAR, home_team VARCHAR)
SELECT crowd FROM table_name_24 WHERE home_team = "north melbourne"
15,176
<question>: Tell me the home team score for essendon <context>: CREATE TABLE table_name_54 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_54 WHERE home_team = "essendon"
15,177
<question>: Tell me the Host interface for digital of dvb-t (cx22702) and model of nova-t pci (90002) <context>: CREATE TABLE table_name_34 (host_interface VARCHAR, digital VARCHAR, model VARCHAR)
SELECT host_interface FROM table_name_34 WHERE digital = "dvb-t (cx22702)" AND model = "nova-t pci (90002)"
15,178
<question>: I want the model for digital of dvb-t (cx22702) and tuner of thomson dtt75105 <context>: CREATE TABLE table_name_7 (model VARCHAR, digital VARCHAR, tuner VARCHAR)
SELECT model FROM table_name_7 WHERE digital = "dvb-t (cx22702)" AND tuner = "thomson dtt75105"
15,179
<question>: I want the type for host interface of pci saa7146 tmx320av7111 <context>: CREATE TABLE table_name_89 (type VARCHAR, host_interface VARCHAR)
SELECT type FROM table_name_89 WHERE host_interface = "pci saa7146 tmx320av7111"
15,180
<question>: I want the tuner for hybrid video recorder and Digital of dvb-t (zl10353), and a Model of hvr-900 <context>: CREATE TABLE table_name_32 (tuner VARCHAR, model VARCHAR, type VARCHAR, digital VARCHAR)
SELECT tuner FROM table_name_32 WHERE type = "hybrid video recorder" AND digital = "dvb-t (zl10353)" AND model = "hvr-900"
15,181
<question>: Tell me the digital for tuner of thomson dtt75105 <context>: CREATE TABLE table_name_91 (digital VARCHAR, tuner VARCHAR)
SELECT digital FROM table_name_91 WHERE tuner = "thomson dtt75105"
15,182
<question>: What's the Total number of Opening Weekend Net Gross that occured after the year 2012 with a Rank of 1? <context>: CREATE TABLE table_name_82 (opening_weekend_net_gross VARCHAR, year VARCHAR, rank VARCHAR)
SELECT COUNT(opening_weekend_net_gross) FROM table_name_82 WHERE year > 2012 AND rank = 1
15,183
<question>: Which Studio has the Year of 2012 listed and the Movie, Dabangg? <context>: CREATE TABLE table_name_22 (studio_s_ VARCHAR, year VARCHAR, movie VARCHAR)
SELECT studio_s_ FROM table_name_22 WHERE year = 2012 AND movie = "dabangg"
15,184
<question>: What's the sum of Opening Weekend Net Gross at the Studio of UTV Motion Pictures? <context>: CREATE TABLE table_name_8 (opening_weekend_net_gross INTEGER, studio_s_ VARCHAR)
SELECT SUM(opening_weekend_net_gross) FROM table_name_8 WHERE studio_s_ = "utv motion pictures"
15,185
<question>: What is the number for evening gown in kansas with less than 9.357 interviews? <context>: CREATE TABLE table_name_96 (evening_gown INTEGER, state VARCHAR, interview VARCHAR)
SELECT SUM(evening_gown) FROM table_name_96 WHERE state = "kansas" AND interview < 9.357
15,186
<question>: What state had less than 8.874 for swimsuit, less than 9.257 for evening gown, and less than 9.121 for interview? <context>: CREATE TABLE table_name_26 (state VARCHAR, interview VARCHAR, swimsuit VARCHAR, evening_gown VARCHAR)
SELECT state FROM table_name_26 WHERE swimsuit < 8.874 AND evening_gown < 9.257 AND interview < 9.121
15,187
<question>: What is the number for swimsuit when the interview number is less than 8.808? <context>: CREATE TABLE table_name_93 (swimsuit VARCHAR, interview INTEGER)
SELECT swimsuit FROM table_name_93 WHERE interview < 8.808
15,188
<question>: What is the number for swimsuit when the evening gown number is larger than 9.257 and the interview number is 9.357? <context>: CREATE TABLE table_name_25 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
SELECT SUM(swimsuit) FROM table_name_25 WHERE evening_gown > 9.257 AND interview = 9.357
15,189
<question>: What is the highest evening gown number in North Carolina with less than 9.214 interviews? <context>: CREATE TABLE table_name_94 (evening_gown INTEGER, state VARCHAR, interview VARCHAR)
SELECT MAX(evening_gown) FROM table_name_94 WHERE state = "north carolina" AND interview < 9.214
15,190
<question>: At what location was the time 1:54:21? <context>: CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)
SELECT location FROM table_name_90 WHERE time = "1:54:21"
15,191
<question>: Which Athlete is from the United Kingdom? <context>: CREATE TABLE table_name_14 (athlete VARCHAR, country_state VARCHAR)
SELECT athlete FROM table_name_14 WHERE country_state = "united kingdom"
15,192
<question>: Which country had des moines as the location in 2011? <context>: CREATE TABLE table_name_68 (country_state VARCHAR, location VARCHAR, year VARCHAR)
SELECT country_state FROM table_name_68 WHERE location = "des moines" AND year = 2011
15,193
<question>: What was the time for 2009? <context>: CREATE TABLE table_name_14 (time VARCHAR, year VARCHAR)
SELECT time FROM table_name_14 WHERE year = 2009
15,194
<question>: Who was the opponent on June 29? <context>: CREATE TABLE table_name_86 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_86 WHERE date = "june 29"
15,195
<question>: What was the 2010 result for a 2008 result of LQ and 2011 result of 2R? <context>: CREATE TABLE table_name_30 (Id VARCHAR)
SELECT 2010 FROM table_name_30 WHERE 2008 = "lq" AND 2011 = "2r"
15,196
<question>: What was the 2007 result for a 2008 result of 1R and 2009 result of 2R? <context>: CREATE TABLE table_name_47 (Id VARCHAR)
SELECT 2007 FROM table_name_47 WHERE 2009 = "2r" AND 2008 = "1r"
15,197
<question>: Which tournament had a 2010 result of A? <context>: CREATE TABLE table_name_87 (tournament VARCHAR)
SELECT tournament FROM table_name_87 WHERE 2010 = "a"
15,198
<question>: Which pick was Bill Bray? <context>: CREATE TABLE table_name_66 (pick INTEGER, player VARCHAR)
SELECT SUM(pick) FROM table_name_66 WHERE player = "bill bray"
15,199
<question>: From which school did the Minnesota Twins SS come from? <context>: CREATE TABLE table_name_50 (school VARCHAR, team VARCHAR, position VARCHAR)
SELECT school FROM table_name_50 WHERE team = "minnesota twins" AND position = "ss"