Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
17,000
<question>: Which award took place after 2009? <context>: CREATE TABLE table_name_88 (award VARCHAR, year INTEGER)
SELECT award FROM table_name_88 WHERE year > 2009
17,001
<question>: What year had the category of best international newcomer? <context>: CREATE TABLE table_name_53 (year VARCHAR, category VARCHAR)
SELECT COUNT(year) FROM table_name_53 WHERE category = "best international newcomer"
17,002
<question>: Which Player has an Opposition of clare? <context>: CREATE TABLE table_name_11 (player VARCHAR, opposition VARCHAR)
SELECT player FROM table_name_11 WHERE opposition = "clare"
17,003
<question>: Which Total has a Player of matt ruth? <context>: CREATE TABLE table_name_40 (total VARCHAR, player VARCHAR)
SELECT total FROM table_name_40 WHERE player = "matt ruth"
17,004
<question>: Which Rank has a Player of matt ruth? <context>: CREATE TABLE table_name_62 (rank INTEGER, player VARCHAR)
SELECT SUM(rank) FROM table_name_62 WHERE player = "matt ruth"
17,005
<question>: How many byes were there recorded with 0 draws? <context>: CREATE TABLE table_name_27 (byes INTEGER, draws INTEGER)
SELECT SUM(byes) FROM table_name_27 WHERE draws < 0
17,006
<question>: How many draws occured with a record of 10 losses, and 6 wins? <context>: CREATE TABLE table_name_38 (draws VARCHAR, losses VARCHAR, wins VARCHAR)
SELECT COUNT(draws) FROM table_name_38 WHERE losses = 10 AND wins > 6
17,007
<question>: How many byes were there with an Against of 1655 and more than 10 wins? <context>: CREATE TABLE table_name_51 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT MIN(byes) FROM table_name_51 WHERE against = 1655 AND wins > 10
17,008
<question>: What was the against were there were less than 3 byes? <context>: CREATE TABLE table_name_93 (against INTEGER, byes INTEGER)
SELECT AVG(against) FROM table_name_93 WHERE byes < 3
17,009
<question>: What's the general classification of Ignatas Konovalovas when the mountains classification was Stefano Garzelli and points classification was Danilo Di Luca? <context>: CREATE TABLE table_name_36 (general_classification VARCHAR, winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR...
SELECT general_classification FROM table_name_36 WHERE mountains_classification = "stefano garzelli" AND points_classification = "danilo di luca" AND winner = "ignatas konovalovas"
17,010
<question>: What's the mountains classification when the points classification is Alessandro Petacchi and the general classification is Danilo Di Luca? <context>: CREATE TABLE table_name_26 (mountains_classification VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
SELECT mountains_classification FROM table_name_26 WHERE points_classification = "alessandro petacchi" AND general_classification = "danilo di luca"
17,011
<question>: Who was the winner of Stage 9 when then general classification was Danilo Di Luca? <context>: CREATE TABLE table_name_60 (winner VARCHAR, general_classification VARCHAR, stage VARCHAR)
SELECT winner FROM table_name_60 WHERE general_classification = "danilo di luca" AND stage = "9"
17,012
<question>: What is the stage of winner Carlos Sastre when the general classification was Denis Menchov? <context>: CREATE TABLE table_name_21 (stage VARCHAR, general_classification VARCHAR, winner VARCHAR)
SELECT stage FROM table_name_21 WHERE general_classification = "denis menchov" AND winner = "carlos sastre"
17,013
<question>: What's the points classification of Stage 18 when the general classification was Denis Menchov? <context>: CREATE TABLE table_name_46 (points_classification VARCHAR, general_classification VARCHAR, stage VARCHAR)
SELECT points_classification FROM table_name_46 WHERE general_classification = "denis menchov" AND stage = "18"
17,014
<question>: What's the mountains classification of winner Carlos Sastre when the general classification is Denis Menchov? <context>: CREATE TABLE table_name_15 (mountains_classification VARCHAR, general_classification VARCHAR, winner VARCHAR)
SELECT mountains_classification FROM table_name_15 WHERE general_classification = "denis menchov" AND winner = "carlos sastre"
17,015
<question>: Who is team 1 with an agg of 2-5? <context>: CREATE TABLE table_name_1 (team_1 VARCHAR, agg VARCHAR)
SELECT team_1 FROM table_name_1 WHERE agg = "2-5"
17,016
<question>: Who was the director of the episode Rebel Rabbit? <context>: CREATE TABLE table_name_90 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_90 WHERE title = "rebel rabbit"
17,017
<question>: How many years have claudia beni as the artist? <context>: CREATE TABLE table_name_3 (year INTEGER, artist VARCHAR)
SELECT SUM(year) FROM table_name_3 WHERE artist = "claudia beni"
17,018
<question>: What song has filipa sousa as an artist? <context>: CREATE TABLE table_name_94 (song VARCHAR, artist VARCHAR)
SELECT song FROM table_name_94 WHERE artist = "filipa sousa"
17,019
<question>: How many rounds have a Surface of wintry asphalt? <context>: CREATE TABLE table_name_24 (round VARCHAR, surface VARCHAR)
SELECT COUNT(round) FROM table_name_24 WHERE surface = "wintry asphalt"
17,020
<question>: Which Surface has a Support Category of jwrc/pwrc, and a Round larger than 5? <context>: CREATE TABLE table_name_21 (surface VARCHAR, support_category VARCHAR, round VARCHAR)
SELECT surface FROM table_name_21 WHERE support_category = "jwrc/pwrc" AND round > 5
17,021
<question>: Which Rally Name has a Surface of asphalt and gravel? <context>: CREATE TABLE table_name_17 (rally_name VARCHAR, surface VARCHAR)
SELECT rally_name FROM table_name_17 WHERE surface = "asphalt and gravel"
17,022
<question>: Which dates have a Rally HQ of kingscliff? <context>: CREATE TABLE table_name_6 (dates VARCHAR, rally_hq VARCHAR)
SELECT dates FROM table_name_6 WHERE rally_hq = "kingscliff"
17,023
<question>: Which Round has a Rally HQ of salou? <context>: CREATE TABLE table_name_80 (round INTEGER, rally_hq VARCHAR)
SELECT MIN(round) FROM table_name_80 WHERE rally_hq = "salou"
17,024
<question>: Who were the Opponents on December 18, 2005? <context>: CREATE TABLE table_name_31 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_31 WHERE date = "december 18, 2005"
17,025
<question>: Which Coach has a Runner-up of northeastern and a Score of 6–3? <context>: CREATE TABLE table_name_82 (coach VARCHAR, runner_up VARCHAR, score VARCHAR)
SELECT coach FROM table_name_82 WHERE runner_up = "northeastern" AND score = "6–3"
17,026
<question>: Name the Score of the Year larger than 2004 and a Runner-up of northeastern? <context>: CREATE TABLE table_name_43 (score VARCHAR, year VARCHAR, runner_up VARCHAR)
SELECT score FROM table_name_43 WHERE year > 2004 AND runner_up = "northeastern"
17,027
<question>: Name the Runner-up of a Year in 1963? <context>: CREATE TABLE table_name_18 (runner_up VARCHAR, year VARCHAR)
SELECT runner_up FROM table_name_18 WHERE year = 1963
17,028
<question>: Name the highest Year with a Score of 4–1? <context>: CREATE TABLE table_name_71 (year INTEGER, score VARCHAR)
SELECT MAX(year) FROM table_name_71 WHERE score = "4–1"
17,029
<question>: Which Start has a Qual of 207.590? <context>: CREATE TABLE table_name_55 (start VARCHAR, qual VARCHAR)
SELECT start FROM table_name_55 WHERE qual = "207.590"
17,030
<question>: Which Year has a Rank of 25? <context>: CREATE TABLE table_name_64 (year VARCHAR, rank VARCHAR)
SELECT year FROM table_name_64 WHERE rank = "25"
17,031
<question>: Which Laps have a Finish of 15? <context>: CREATE TABLE table_name_30 (laps VARCHAR, finish VARCHAR)
SELECT laps FROM table_name_30 WHERE finish = "15"
17,032
<question>: Which Qual has Laps smaller than 195, and a Rank of 25? <context>: CREATE TABLE table_name_74 (qual VARCHAR, laps VARCHAR, rank VARCHAR)
SELECT qual FROM table_name_74 WHERE laps < 195 AND rank = "25"
17,033
<question>: Which Rank has a Finish of 8? <context>: CREATE TABLE table_name_11 (rank VARCHAR, finish VARCHAR)
SELECT rank FROM table_name_11 WHERE finish = "8"
17,034
<question>: Which Rank has a Heat larger than 7? <context>: CREATE TABLE table_name_58 (rank INTEGER, heat INTEGER)
SELECT MAX(rank) FROM table_name_58 WHERE heat > 7
17,035
<question>: Which Heat has a Nation of australia, and a Rank larger than 7? <context>: CREATE TABLE table_name_36 (heat INTEGER, nation VARCHAR, rank VARCHAR)
SELECT MAX(heat) FROM table_name_36 WHERE nation = "australia" AND rank > 7
17,036
<question>: What is the average number of podiums for drivers with under 12 finishes and under 1 start? <context>: CREATE TABLE table_name_24 (podiums INTEGER, finishes VARCHAR, starts VARCHAR)
SELECT AVG(podiums) FROM table_name_24 WHERE finishes < 12 AND starts < 1
17,037
<question>: What is the number of wins associated with 1 point, more than 1 start, and under 7 finishes? <context>: CREATE TABLE table_name_68 (wins VARCHAR, points VARCHAR, finishes VARCHAR, starts VARCHAR)
SELECT wins FROM table_name_68 WHERE finishes < 7 AND starts > 1 AND points = 1
17,038
<question>: What is the number of finishes associated with 13 starts, more than 169 points, and 96 stage wins? <context>: CREATE TABLE table_name_12 (finishes VARCHAR, stage_wins VARCHAR, starts VARCHAR, points VARCHAR)
SELECT finishes FROM table_name_12 WHERE starts = 13 AND points > 169 AND stage_wins = 96
17,039
<question>: Who directed the episode with production code 40811-005? <context>: CREATE TABLE table_name_7 (director VARCHAR, prod_code VARCHAR)
SELECT director FROM table_name_7 WHERE prod_code = "40811-005"
17,040
<question>: What is the title of the episode with production code 40811-002? <context>: CREATE TABLE table_name_87 (title VARCHAR, prod_code VARCHAR)
SELECT title FROM table_name_87 WHERE prod_code = "40811-002"
17,041
<question>: what is the tournament when the score is 2-6, 4-6? <context>: CREATE TABLE table_name_1 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_1 WHERE score = "2-6, 4-6"
17,042
<question>: what is the outcome on april 24, 1988? <context>: CREATE TABLE table_name_20 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_20 WHERE date = "april 24, 1988"
17,043
<question>: What is the date when the tournament is san diego and the opponent is ann grossman? <context>: CREATE TABLE table_name_92 (date VARCHAR, tournament VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_92 WHERE tournament = "san diego" AND opponent = "ann grossman"
17,044
<question>: what is the outcome when the tournament is san diego and the opponent is ann grossman? <context>: CREATE TABLE table_name_40 (outcome VARCHAR, tournament VARCHAR, opponent VARCHAR)
SELECT outcome FROM table_name_40 WHERE tournament = "san diego" AND opponent = "ann grossman"
17,045
<question>: what is the score when the opponent is ann grossman? <context>: CREATE TABLE table_name_79 (score VARCHAR, opponent VARCHAR)
SELECT score FROM table_name_79 WHERE opponent = "ann grossman"
17,046
<question>: what is the outcome when the tournament is tokyo? <context>: CREATE TABLE table_name_83 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_83 WHERE tournament = "tokyo"
17,047
<question>: In what Year was the 32nd Ceremony with winner William A. Horning in the Film North by Northwest? <context>: CREATE TABLE table_name_87 (year VARCHAR, film VARCHAR, ceremony VARCHAR, name VARCHAR)
SELECT year FROM table_name_87 WHERE ceremony = "32nd" AND name = "william a. horning" AND film = "north by northwest"
17,048
<question>: In what Year was the Film Your National Gallery winner? <context>: CREATE TABLE table_name_70 (year VARCHAR, film VARCHAR)
SELECT year FROM table_name_70 WHERE film = "your national gallery"
17,049
<question>: What is the Film with winner Jerome Kern in the 19th Ceremony? <context>: CREATE TABLE table_name_47 (film VARCHAR, ceremony VARCHAR, name VARCHAR)
SELECT film FROM table_name_47 WHERE ceremony = "19th" AND name = "jerome kern"
17,050
<question>: What is the Academy Award for the Film Educating Peter? <context>: CREATE TABLE table_name_34 (academy_award VARCHAR, film VARCHAR)
SELECT academy_award FROM table_name_34 WHERE film = "educating peter"
17,051
<question>: Which Number of electorates (2009) has 188 Constituents? <context>: CREATE TABLE table_name_93 (number_of_electorates__2009_ VARCHAR, constituency_number VARCHAR)
SELECT number_of_electorates__2009_ FROM table_name_93 WHERE constituency_number = "188"
17,052
<question>: Who is the runner(s)-up with a winning score of −5 (72-71-68=211)? <context>: CREATE TABLE table_name_48 (runner_s__up VARCHAR, winning_score VARCHAR)
SELECT runner_s__up FROM table_name_48 WHERE winning_score = −5(72 - 71 - 68 = 211)
17,053
<question>: What date was there a playoff on the margin of victory during the Shirley Englehorn Invitational? <context>: CREATE TABLE table_name_36 (date VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT date FROM table_name_36 WHERE margin_of_victory = "playoff" AND tournament = "shirley englehorn invitational"
17,054
<question>: Who is the runner(s)-up for the Lady Carling Open with 3 strokes margin of victory? <context>: CREATE TABLE table_name_10 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT runner_s__up FROM table_name_10 WHERE margin_of_victory = "3 strokes" AND tournament = "lady carling open"
17,055
<question>: What is the attendance in a week larter than 4, on December 6, 1992? <context>: CREATE TABLE table_name_80 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_80 WHERE week > 4 AND date = "december 6, 1992"
17,056
<question>: What week has a Date of October 4, 1992? <context>: CREATE TABLE table_name_78 (week INTEGER, date VARCHAR)
SELECT SUM(week) FROM table_name_78 WHERE date = "october 4, 1992"
17,057
<question>: What is the date when the result was l 37-3? <context>: CREATE TABLE table_name_77 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_77 WHERE result = "l 37-3"
17,058
<question>: What is the attendance when the opponent was the Houston Oilers? <context>: CREATE TABLE table_name_47 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_47 WHERE opponent = "houston oilers"
17,059
<question>: Which Lane has a Reaction Time smaller than 0.199, and a Country of united states, and a Name of muna lee, and a Time larger than 22.01? <context>: CREATE TABLE table_name_3 (lane INTEGER, time VARCHAR, name VARCHAR, reaction_time VARCHAR, country VARCHAR)
SELECT MAX(lane) FROM table_name_3 WHERE reaction_time < 0.199 AND country = "united states" AND name = "muna lee" AND time > 22.01
17,060
<question>: How many Lanes have a Country of jamaica, and a Name of kerron stewart, and a Time larger than 22? <context>: CREATE TABLE table_name_46 (lane INTEGER, time VARCHAR, country VARCHAR, name VARCHAR)
SELECT SUM(lane) FROM table_name_46 WHERE country = "jamaica" AND name = "kerron stewart" AND time > 22
17,061
<question>: How many Times have a Reaction Time larger than 0.17500000000000002, and a Lane of 3? <context>: CREATE TABLE table_name_62 (time VARCHAR, reaction_time VARCHAR, lane VARCHAR)
SELECT COUNT(time) FROM table_name_62 WHERE reaction_time > 0.17500000000000002 AND lane = 3
17,062
<question>: Which Lane has a Country of united states, and a Time smaller than 22.01, and a Reaction Time smaller than 0.193? <context>: CREATE TABLE table_name_95 (lane INTEGER, reaction_time VARCHAR, country VARCHAR, time VARCHAR)
SELECT MIN(lane) FROM table_name_95 WHERE country = "united states" AND time < 22.01 AND reaction_time < 0.193
17,063
<question>: What's the ladder position when team is less than 10 and the Finals qualifications were DNQ? <context>: CREATE TABLE table_name_75 (final_ladder_position VARCHAR, finals_qualification VARCHAR, teams VARCHAR)
SELECT final_ladder_position FROM table_name_75 WHERE finals_qualification = "dnq" AND teams < 10
17,064
<question>: What is the total teams during the 2012-13 season? <context>: CREATE TABLE table_name_19 (teams INTEGER, season VARCHAR)
SELECT SUM(teams) FROM table_name_19 WHERE season = "2012-13"
17,065
<question>: What's the ACL qualification when the minor ladder position is 5th and the finals qualifications were DNQ? <context>: CREATE TABLE table_name_11 (acl_qualification VARCHAR, finals_qualification VARCHAR, minor_ladder_position VARCHAR)
SELECT acl_qualification FROM table_name_11 WHERE finals_qualification = "dnq" AND minor_ladder_position = "5th"
17,066
<question>: What's the finals qualification during the 2009-10 season? <context>: CREATE TABLE table_name_88 (finals_qualification VARCHAR, season VARCHAR)
SELECT finals_qualification FROM table_name_88 WHERE season = "2009-10"
17,067
<question>: Name the the average Lib Dem with Conservative smaller than 0? <context>: CREATE TABLE table_name_87 (lib_dem INTEGER, conservative INTEGER)
SELECT AVG(lib_dem) FROM table_name_87 WHERE conservative < 0
17,068
<question>: Name the lowest Green with a Year larger than 2010, and a Labour larger than 29? Question 3 <context>: CREATE TABLE table_name_82 (green INTEGER, year VARCHAR, labour VARCHAR)
SELECT MIN(green) FROM table_name_82 WHERE year > 2010 AND labour > 29
17,069
<question>: Name the average Independent with a Green larger than 7, and a Conservative smaller than 0? <context>: CREATE TABLE table_name_35 (independent INTEGER, green VARCHAR, conservative VARCHAR)
SELECT AVG(independent) FROM table_name_35 WHERE green > 7 AND conservative < 0
17,070
<question>: Name the highest Labour with Lib Dem larger than 21? <context>: CREATE TABLE table_name_86 (labour INTEGER, lib_dem INTEGER)
SELECT MAX(labour) FROM table_name_86 WHERE lib_dem > 21
17,071
<question>: What is the score in the final of the tournament with a clay surface on 18 April 2011? <context>: CREATE TABLE table_name_88 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_name_88 WHERE surface = "clay" AND date = "18 april 2011"
17,072
<question>: What is the score in the final of the tournament with a hard surface? <context>: CREATE TABLE table_name_8 (score_in_the_final VARCHAR, surface VARCHAR)
SELECT score_in_the_final FROM table_name_8 WHERE surface = "hard"
17,073
<question>: Who is the opponent in the final on 24 November 2008? <context>: CREATE TABLE table_name_43 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_43 WHERE date = "24 november 2008"
17,074
<question>: What is the Opponent at the game with an Attendance of 64,900 in Week prior to 15 with a Result of L 38-31? <context>: CREATE TABLE table_name_86 (opponent VARCHAR, result VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_86 WHERE week < 15 AND attendance = "64,900" AND result = "l 38-31"
17,075
<question>: What is the Week of the game with an Attendance of 64,900 and a Result of L 34-13? <context>: CREATE TABLE table_name_83 (week INTEGER, attendance VARCHAR, result VARCHAR)
SELECT MAX(week) FROM table_name_83 WHERE attendance = "64,900" AND result = "l 34-13"
17,076
<question>: What is the Week of the game against Minnesota Vikings? <context>: CREATE TABLE table_name_10 (week INTEGER, opponent VARCHAR)
SELECT MAX(week) FROM table_name_10 WHERE opponent = "minnesota vikings"
17,077
<question>: What is the Week of the game against Seattle Seahawks? <context>: CREATE TABLE table_name_30 (week INTEGER, opponent VARCHAR)
SELECT AVG(week) FROM table_name_30 WHERE opponent = "seattle seahawks"
17,078
<question>: Which Total Goals have an FA Cup Goals of 0, and an FA Cup Apps of 3, and a Position of fw? <context>: CREATE TABLE table_name_92 (total_goals INTEGER, position VARCHAR, fa_cup_goals VARCHAR, fa_cup_apps VARCHAR)
SELECT AVG(total_goals) FROM table_name_92 WHERE fa_cup_goals = 0 AND fa_cup_apps = "3" AND position = "fw"
17,079
<question>: What year was Caroline Medina Miss Fire (3rd Runner-up)? <context>: CREATE TABLE table_name_21 (year INTEGER, miss_fire__3rd_runner_up_ VARCHAR)
SELECT AVG(year) FROM table_name_21 WHERE miss_fire__3rd_runner_up_ = "caroline medina"
17,080
<question>: Who won Miss Air (1st Runner-up) when Catherine Untalan was Miss Water (2nd Runner-up) earlier than 2007? <context>: CREATE TABLE table_name_35 (miss_air__1st_runner_up_ VARCHAR, year VARCHAR, miss_water__2nd_runner_up_ VARCHAR)
SELECT miss_air__1st_runner_up_ FROM table_name_35 WHERE year < 2007 AND miss_water__2nd_runner_up_ = "catherine untalan"
17,081
<question>: what is the name when the sr no is less than 74 and floors is more than 36? <context>: CREATE TABLE table_name_61 (name VARCHAR, sr_no VARCHAR, floors VARCHAR)
SELECT name FROM table_name_61 WHERE sr_no < 74 AND floors > 36
17,082
<question>: how many times is the building type residential and the locale yashodham? <context>: CREATE TABLE table_name_22 (sr_no VARCHAR, building_type VARCHAR, locale VARCHAR)
SELECT COUNT(sr_no) FROM table_name_22 WHERE building_type = "residential" AND locale = "yashodham"
17,083
<question>: what is the least floors when the building type is residential and the sr no is 8? <context>: CREATE TABLE table_name_79 (floors INTEGER, building_type VARCHAR, sr_no VARCHAR)
SELECT MIN(floors) FROM table_name_79 WHERE building_type = "residential" AND sr_no = 8
17,084
<question>: what is the height when the locale is nepean sea road, floors is more than 30 and sr no is 58? <context>: CREATE TABLE table_name_99 (height VARCHAR, sr_no VARCHAR, locale VARCHAR, floors VARCHAR)
SELECT height FROM table_name_99 WHERE locale = "nepean sea road" AND floors > 30 AND sr_no = 58
17,085
<question>: what is the name that had 46 floors? <context>: CREATE TABLE table_name_47 (name VARCHAR, floors VARCHAR)
SELECT name FROM table_name_47 WHERE floors = 46
17,086
<question>: Which player from A-League 39 (110) has the highest games per goal? <context>: CREATE TABLE table_name_34 (games_per_goal INTEGER, a_league VARCHAR)
SELECT MAX(games_per_goal) FROM table_name_34 WHERE a_league = "39 (110)"
17,087
<question>: What player had a finals score of 0 (10)? <context>: CREATE TABLE table_name_5 (name VARCHAR, finals VARCHAR)
SELECT name FROM table_name_5 WHERE finals = "0 (10)"
17,088
<question>: Which player has a total of 8 (24)? <context>: CREATE TABLE table_name_8 (name VARCHAR, total VARCHAR)
SELECT name FROM table_name_8 WHERE total = "8 (24)"
17,089
<question>: What's the week when the result was W 38-24 and attendance was less than 43,449? <context>: CREATE TABLE table_name_33 (week INTEGER, result VARCHAR, attendance VARCHAR)
SELECT SUM(week) FROM table_name_33 WHERE result = "w 38-24" AND attendance < 43 OFFSET 449
17,090
<question>: What round had a time of 0:39? <context>: CREATE TABLE table_name_21 (round INTEGER, time VARCHAR)
SELECT MIN(round) FROM table_name_21 WHERE time = "0:39"
17,091
<question>: What was the location of the competition with a Rank-Final of 1st and a Score-Qualifying under 28.975? <context>: CREATE TABLE table_name_95 (location VARCHAR, rank_final VARCHAR, score_qualifying VARCHAR)
SELECT location FROM table_name_95 WHERE rank_final = "1st" AND score_qualifying < 28.975
17,092
<question>: What competition had a Rank-Qualifying of 1st and a ball apparatus? <context>: CREATE TABLE table_name_94 (competition_description VARCHAR, rank_qualifying VARCHAR, apparatus VARCHAR)
SELECT competition_description FROM table_name_94 WHERE rank_qualifying = "1st" AND apparatus = "ball"
17,093
<question>: What is the date for the ship Afrika, with nationality Great Britain? <context>: CREATE TABLE table_name_73 (date VARCHAR, nationality VARCHAR, ship VARCHAR)
SELECT date FROM table_name_73 WHERE nationality = "great britain" AND ship = "afrika"
17,094
<question>: What is the highest tonnage for a ship from Great Britain named Newton Ash? <context>: CREATE TABLE table_name_13 (tonnage INTEGER, nationality VARCHAR, ship VARCHAR)
SELECT MAX(tonnage) FROM table_name_13 WHERE nationality = "great britain" AND ship = "newton ash"
17,095
<question>: What was the nationality of the ship named Toward? <context>: CREATE TABLE table_name_91 (nationality VARCHAR, ship VARCHAR)
SELECT nationality FROM table_name_91 WHERE ship = "toward"
17,096
<question>: What was the nationality of the sunk ship named Rinos? <context>: CREATE TABLE table_name_52 (nationality VARCHAR, fate VARCHAR, ship VARCHAR)
SELECT nationality FROM table_name_52 WHERE fate = "sunk" AND ship = "rinos"
17,097
<question>: What is the Comp of the Shooter with a Score of 489.5? <context>: CREATE TABLE table_name_3 (comp VARCHAR, score VARCHAR)
SELECT comp FROM table_name_3 WHERE score = "489.5"
17,098
<question>: What is the Date of Shooter New Targets from 1989's record? <context>: CREATE TABLE table_name_39 (date VARCHAR, shooter VARCHAR)
SELECT date FROM table_name_39 WHERE shooter = "new targets from 1989"
17,099
<question>: What is the average total value for Spain? <context>: CREATE TABLE table_name_58 (total INTEGER, nation VARCHAR)
SELECT AVG(total) FROM table_name_58 WHERE nation = "spain"