Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
50,400
<question>: What is the highest rank for Nat Lofthouse, and goals more than 255? <context>: CREATE TABLE table_name_20 (rank INTEGER, name VARCHAR, goals VARCHAR)
SELECT MAX(rank) FROM table_name_20 WHERE name = "nat lofthouse" AND goals > 255
50,401
<question>: What is the location/state that has adelaide international raceway as the circuit? <context>: CREATE TABLE table_name_5 (location___state VARCHAR, circuit VARCHAR)
SELECT location___state FROM table_name_5 WHERE circuit = "adelaide international raceway"
50,402
<question>: What is the Original air date for the episode with a Production code of 07-00-107? <context>: CREATE TABLE table_name_85 (original_air_date VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_85 WHERE production_code = "07-00-107"
50,403
<question>: What is the name of the director of the episode written by robin schwartz & robert tarlow? <context>: CREATE TABLE table_name_55 (directed_by VARCHAR, written_by VARCHAR)
SELECT directed_by FROM table_name_55 WHERE written_by = "robin schwartz & robert tarlow"
50,404
<question>: What is the Original air date for the episode directed by lev l. spiro, with a Production code of 07-00-109? <context>: CREATE TABLE table_name_35 (original_air_date VARCHAR, directed_by VARCHAR, production_code VARCHAR)
SELECT original_air_date FROM table_name_35 WHERE directed_by = "lev l. spiro" AND production_code = "07-00-109"
50,405
<question>: What is the name of the writer for the episode with an Original air date of october 9, 2000? <context>: CREATE TABLE table_name_71 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_name_71 WHERE original_air_date = "october 9, 2000"
50,406
<question>: What is the Title written by Terri Hughes & Ron Milbauer, and an Original air date of march 6, 2001? <context>: CREATE TABLE table_name_87 (title VARCHAR, written_by VARCHAR, original_air_date VARCHAR)
SELECT title FROM table_name_87 WHERE written_by = "terri hughes & ron milbauer" AND original_air_date = "march 6, 2001"
50,407
<question>: What time or retired does Scott Dixon have? <context>: CREATE TABLE table_name_7 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_7 WHERE driver = "scott dixon"
50,408
<question>: Which driver has a grid bigger than 3 and a time of +62.6 secs? <context>: CREATE TABLE table_name_38 (driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_38 WHERE grid > 3 AND time_retired = "+62.6 secs"
50,409
<question>: Who drives for Newman-Haas Racing with a time of 1:51:47.260? <context>: CREATE TABLE table_name_43 (driver VARCHAR, team VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_43 WHERE team = "newman-haas racing" AND time_retired = "1:51:47.260"
50,410
<question>: Which driver had less than 65 laps for Sigma Autosport? <context>: CREATE TABLE table_name_64 (driver VARCHAR, laps VARCHAR, team VARCHAR)
SELECT driver FROM table_name_64 WHERE laps < 65 AND team = "sigma autosport"
50,411
<question>: Which game modes have Pinyin of chāojí mǎlìōu shìjiè? <context>: CREATE TABLE table_name_13 (game_modes VARCHAR, pinyin VARCHAR)
SELECT game_modes FROM table_name_13 WHERE pinyin = "chāojí mǎlìōu shìjiè"
50,412
<question>: What is the lowest Population (1 July 2005 est.), when Population density (per km²) is 0? <context>: CREATE TABLE table_name_5 (population__1_july_2005_est_ INTEGER, population_density__per_km²_ VARCHAR)
SELECT MIN(population__1_july_2005_est_) FROM table_name_5 WHERE population_density__per_km²_ = 0
50,413
<question>: What is Population density (per km²), when Name is Antigua and Barbuda, and when Capital is St. John's? <context>: CREATE TABLE table_name_81 (population_density__per_km²_ VARCHAR, name VARCHAR, capital VARCHAR)
SELECT population_density__per_km²_ FROM table_name_81 WHERE name = "antigua and barbuda" AND capital = "st. john's"
50,414
<question>: Who were the opponents on grass when playing with Mark Woodforde, and the outcome of winner, and a year greater than 1996? <context>: CREATE TABLE table_name_61 (opponents VARCHAR, year VARCHAR, outcome VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT opponents FROM table_name_61 WHERE surface = "grass" AND partner = "mark woodforde" AND outcome = "winner" AND year > 1996
50,415
<question>: Who was the partner at the Australian Open, Melbourne when the score was 2–6, 7–5, 6–2, 4–6, 3–6? <context>: CREATE TABLE table_name_6 (partner VARCHAR, championship VARCHAR, score VARCHAR)
SELECT partner FROM table_name_6 WHERE championship = "australian open, melbourne" AND score = "2–6, 7–5, 6–2, 4–6, 3–6"
50,416
<question>: When playing on grass who was the opponents in a year greater than 1993, and playing with Jonas Björkman? <context>: CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, surface VARCHAR, year VARCHAR)
SELECT opponents FROM table_name_10 WHERE surface = "grass" AND year > 1993 AND partner = "jonas björkman"
50,417
<question>: Which league's playoffs was national semi-finals? <context>: CREATE TABLE table_name_51 (league VARCHAR, playoffs VARCHAR)
SELECT league FROM table_name_51 WHERE playoffs = "national semi-finals"
50,418
<question>: Which country is Lemd the ICAO of? <context>: CREATE TABLE table_name_34 (country VARCHAR, icao VARCHAR)
SELECT country FROM table_name_34 WHERE icao = "lemd"
50,419
<question>: Paris-Charles de Gaulle airport is in which country? <context>: CREATE TABLE table_name_46 (country VARCHAR, airport VARCHAR)
SELECT country FROM table_name_46 WHERE airport = "paris-charles de gaulle airport"
50,420
<question>: What is the ICAO for Riyadh, Saudi Arabia? <context>: CREATE TABLE table_name_35 (icao VARCHAR, country VARCHAR, city VARCHAR)
SELECT icao FROM table_name_35 WHERE country = "saudi arabia" AND city = "riyadh"
50,421
<question>: What is the IATA for Benghazi, Libya? <context>: CREATE TABLE table_name_56 (iata VARCHAR, country VARCHAR, city VARCHAR)
SELECT iata FROM table_name_56 WHERE country = "libya" AND city = "benghazi"
50,422
<question>: What is the average Grid for the honda cbr1000rr, with 18 laps and a time of +1:12.884? <context>: CREATE TABLE table_name_45 (grid INTEGER, time VARCHAR, bike VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_45 WHERE bike = "honda cbr1000rr" AND laps = 18 AND time = "+1:12.884"
50,423
<question>: What is the Bike with 18 laps and +41.280 as the time? <context>: CREATE TABLE table_name_51 (bike VARCHAR, laps VARCHAR, time VARCHAR)
SELECT bike FROM table_name_51 WHERE laps = 18 AND time = "+41.280"
50,424
<question>: What is the Time when there are 18 laps, grid larger than 15, and Rider of Russell Holland? <context>: CREATE TABLE table_name_42 (time VARCHAR, rider VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time FROM table_name_42 WHERE laps = 18 AND grid > 15 AND rider = "russell holland"
50,425
<question>: What is the Bike with a grid more than 4 and the rider is Michel Fabrizio? <context>: CREATE TABLE table_name_17 (bike VARCHAR, grid VARCHAR, rider VARCHAR)
SELECT bike FROM table_name_17 WHERE grid > 4 AND rider = "michel fabrizio"
50,426
<question>: What was Lee Smith's highest number of goals when he made fewer than 364 appearances? <context>: CREATE TABLE table_name_51 (goals INTEGER, name VARCHAR, appearances VARCHAR)
SELECT MAX(goals) FROM table_name_51 WHERE name = "lee smith" AND appearances < 364
50,427
<question>: Which goals/game ratio has fewer than 201 goals and fewer than 170 appearances? <context>: CREATE TABLE table_name_29 (goals VARCHAR, Game VARCHAR, appearances VARCHAR)
SELECT goals / Game AS Ratio FROM table_name_29 WHERE goals < 201 AND appearances < 170
50,428
<question>: What is the average rank of the airport with a 9.3% annual change? <context>: CREATE TABLE table_name_59 (rank INTEGER, annual_change VARCHAR)
SELECT AVG(rank) FROM table_name_59 WHERE annual_change = "9.3%"
50,429
<question>: Where is the airport located that has a 98.9% in use capacity? <context>: CREATE TABLE table_name_51 (location VARCHAR, capacity_in_use VARCHAR)
SELECT location FROM table_name_51 WHERE capacity_in_use = "98.9%"
50,430
<question>: What rank is the airport in Fortaleza? <context>: CREATE TABLE table_name_19 (rank VARCHAR, location VARCHAR)
SELECT rank FROM table_name_19 WHERE location = "fortaleza"
50,431
<question>: What is the Award name with a Team name that is cougar robotics team? <context>: CREATE TABLE table_name_53 (award_name VARCHAR, team_name VARCHAR)
SELECT award_name FROM table_name_53 WHERE team_name = "cougar robotics team"
50,432
<question>: What is the zan 1 that has 11 as the nor 1? <context>: CREATE TABLE table_name_34 (zan_1 VARCHAR, nor_1 VARCHAR)
SELECT zan_1 FROM table_name_34 WHERE nor_1 = "11"
50,433
<question>: What driver has 19 as the zan 1? <context>: CREATE TABLE table_name_13 (driver VARCHAR, zan_1 VARCHAR)
SELECT driver FROM table_name_13 WHERE zan_1 = "19"
50,434
<question>: What driver has 5 as the zan 2? <context>: CREATE TABLE table_name_69 (driver VARCHAR, zan_2 VARCHAR)
SELECT driver FROM table_name_69 WHERE zan_2 = "5"
50,435
<question>: What is the nor 2 that has nor 1 as nor 1? <context>: CREATE TABLE table_name_25 (nor_2 VARCHAR, nor_1 VARCHAR)
SELECT nor_2 FROM table_name_25 WHERE nor_1 = "nor 1"
50,436
<question>: What driver has 22 as nor 1? <context>: CREATE TABLE table_name_85 (driver VARCHAR, nor_1 VARCHAR)
SELECT driver FROM table_name_85 WHERE nor_1 = "22"
50,437
<question>: What Date had a Result of draw, and a Venue of lord's? <context>: CREATE TABLE table_name_28 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_28 WHERE result = "draw" AND venue = "lord's"
50,438
<question>: What Date that had a Result of draw, with Oval as a venue? <context>: CREATE TABLE table_name_32 (date VARCHAR, result VARCHAR, venue VARCHAR)
SELECT date FROM table_name_32 WHERE result = "draw" AND venue = "oval"
50,439
<question>: What is the Away captain when the Result was draw, and a Venue of lord's? <context>: CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR)
SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's"
50,440
<question>: What is the Date when the match Resulted in a draw? <context>: CREATE TABLE table_name_95 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_95 WHERE result = "draw"
50,441
<question>: What was the margin of victory when the winning score was –10 (70-72-68-68=278)? <context>: CREATE TABLE table_name_6 (margin_of_victory VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_6 WHERE winning_score = –10(70 - 72 - 68 - 68 = 278)
50,442
<question>: When Gary Player was the runner-up, what was the margin of victory? <context>: CREATE TABLE table_name_28 (margin_of_victory VARCHAR, runner_s__up VARCHAR)
SELECT margin_of_victory FROM table_name_28 WHERE runner_s__up = "gary player"
50,443
<question>: In what tournament was the winning score –10 (68-71-69-70=278)? <context>: CREATE TABLE table_name_21 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_21 WHERE winning_score = –10(68 - 71 - 69 - 70 = 278)
50,444
<question>: What is the highest number of wins when more than 17 cuts and more than 25 starts were made, and the top 10 ranking is less than 8? <context>: CREATE TABLE table_name_95 (wins INTEGER, top_10 VARCHAR, cuts_made VARCHAR, starts VARCHAR)
SELECT MAX(wins) FROM table_name_95 WHERE cuts_made > 17 AND starts > 25 AND top_10 < 8
50,445
<question>: What is the average number of starts when the money list rank is 108 and the rank in the top 25 is greater than 4? <context>: CREATE TABLE table_name_58 (starts INTEGER, money_list_rank VARCHAR, top_25 VARCHAR)
SELECT AVG(starts) FROM table_name_58 WHERE money_list_rank = "108" AND top_25 > 4
50,446
<question>: What is the average number of starts when 11 cuts were made and the top 10 ranking is larger than 4? <context>: CREATE TABLE table_name_33 (starts INTEGER, cuts_made VARCHAR, top_10 VARCHAR)
SELECT AVG(starts) FROM table_name_33 WHERE cuts_made = 11 AND top_10 > 4
50,447
<question>: What is the Name when the position is g, and weight is 190 pounds? <context>: CREATE TABLE table_name_54 (name VARCHAR, position VARCHAR, weight__lbs_ VARCHAR)
SELECT name FROM table_name_54 WHERE position = "g" AND weight__lbs_ = 190
50,448
<question>: Who was the home team of the game on 2 February 2006? <context>: CREATE TABLE table_name_12 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_12 WHERE date = "2 february 2006"
50,449
<question>: What is the home team of the game with Warriors as the visitor team? <context>: CREATE TABLE table_name_35 (home VARCHAR, visitor VARCHAR)
SELECT home FROM table_name_35 WHERE visitor = "warriors"
50,450
<question>: What date was the match on a hard surface with a score of 6–4, 2–6, 3–6? <context>: CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, score VARCHAR)
SELECT date FROM table_name_83 WHERE surface = "hard" AND score = "6–4, 2–6, 3–6"
50,451
<question>: What is the Score of the match on a clay surface with an outcome of winner, at the tournament ciudad juárez, and an Opponent in the final of estefania craciún? <context>: CREATE TABLE table_name_48 (score VARCHAR, opponent_in_the_final VARCHAR, tournament VARCHAR, surface VARCHAR, outcome VARCHAR)
SELECT score FROM table_name_48 WHERE surface = "clay" AND outcome = "winner" AND tournament = "ciudad juárez" AND opponent_in_the_final = "estefania craciún"
50,452
<question>: What is the Outcome of the match with a Score of 6–3, 6–4? <context>: CREATE TABLE table_name_2 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_2 WHERE score = "6–3, 6–4"
50,453
<question>: What is the Outcome of the match with a Score of 6–3, 6–4? <context>: CREATE TABLE table_name_75 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_75 WHERE score = "6–3, 6–4"
50,454
<question>: What is the Outcome of the match on 12 september 2004? <context>: CREATE TABLE table_name_21 (outcome VARCHAR, date VARCHAR)
SELECT outcome FROM table_name_21 WHERE date = "12 september 2004"
50,455
<question>: What was the Surface when the Score was 6–4, 2–6, 3–6? <context>: CREATE TABLE table_name_17 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_17 WHERE score = "6–4, 2–6, 3–6"
50,456
<question>: What was the total attendance at a game against the Pittsburgh Steelers before week 4? <context>: CREATE TABLE table_name_76 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)
SELECT COUNT(attendance) FROM table_name_76 WHERE opponent = "pittsburgh steelers" AND week < 4
50,457
<question>: What was the date of the game held at the A venue with a result of 0-1 against the Rangers? <context>: CREATE TABLE table_name_87 (date VARCHAR, opponent VARCHAR, venue VARCHAR, result VARCHAR)
SELECT date FROM table_name_87 WHERE venue = "a" AND result = "0-1" AND opponent = "rangers"
50,458
<question>: Who was the opponent on November 11, 2001? <context>: CREATE TABLE table_name_4 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_4 WHERE date = "november 11, 2001"
50,459
<question>: Who was the opponent before week 5 that played on September 23, 2001? <context>: CREATE TABLE table_name_99 (opponent VARCHAR, week VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_99 WHERE week < 5 AND date = "september 23, 2001"
50,460
<question>: What is the frequency of the Turion 64 X2 TL-62? <context>: CREATE TABLE table_name_8 (frequency VARCHAR, model_number VARCHAR)
SELECT frequency FROM table_name_8 WHERE model_number = "turion 64 x2 tl-62"
50,461
<question>: What is the socket for Order Part Number TMDTL68HAX5DM? <context>: CREATE TABLE table_name_67 (socket VARCHAR, order_part_number VARCHAR)
SELECT socket FROM table_name_67 WHERE order_part_number = "tmdtl68hax5dm"
50,462
<question>: What is the multiplier 1 for chips with a frequency of 1800MHz? <context>: CREATE TABLE table_name_25 (multiplier_1 VARCHAR, frequency VARCHAR)
SELECT multiplier_1 FROM table_name_25 WHERE frequency = "1800mhz"
50,463
<question>: What is the socket type for the processor with a multiplier 1 of 11.5x? <context>: CREATE TABLE table_name_66 (socket VARCHAR, multiplier_1 VARCHAR)
SELECT socket FROM table_name_66 WHERE multiplier_1 = "11.5x"
50,464
<question>: What is the highest sample size administered on October 18? <context>: CREATE TABLE table_name_35 (sample_size INTEGER, date_s__administered VARCHAR)
SELECT MAX(sample_size) FROM table_name_35 WHERE date_s__administered = "october 18"
50,465
<question>: What is the percentage for Mel Martinez when the sample size is 800? <context>: CREATE TABLE table_name_6 (mel_martinez__r_ VARCHAR, sample_size VARCHAR)
SELECT mel_martinez__r_ FROM table_name_6 WHERE sample_size = 800
50,466
<question>: How many games were played by the Scottish Wanderers where less than 5 Points were scored? <context>: CREATE TABLE table_name_21 (played INTEGER, team VARCHAR, points VARCHAR)
SELECT SUM(played) FROM table_name_21 WHERE team = "scottish wanderers" AND points < 5
50,467
<question>: How many games were played where exactly 15 points were scored? <context>: CREATE TABLE table_name_34 (played INTEGER, points VARCHAR)
SELECT SUM(played) FROM table_name_34 WHERE points = 15
50,468
<question>: What LINER class has a W.A. of 0-6-0st with a 2 No. Built? <context>: CREATE TABLE table_name_44 (lner_class VARCHAR, wa VARCHAR, no_built VARCHAR)
SELECT lner_class FROM table_name_44 WHERE wa = "0-6-0st" AND no_built = 2
50,469
<question>: What is the pick number for Peter Moore of the Montreal Alouettes? <context>: CREATE TABLE table_name_74 (pick__number VARCHAR, cfl_team VARCHAR, player VARCHAR)
SELECT pick__number FROM table_name_74 WHERE cfl_team = "montreal alouettes" AND player = "peter moore"
50,470
<question>: What CFL team did Kelly Bates play for? <context>: CREATE TABLE table_name_32 (cfl_team VARCHAR, player VARCHAR)
SELECT cfl_team FROM table_name_32 WHERE player = "kelly bates"
50,471
<question>: How many average total matches have a swansea win less than 3, fa cup as the competition, with a draw less than 0? <context>: CREATE TABLE table_name_23 (total_matches INTEGER, draw VARCHAR, swansea_win VARCHAR, competition VARCHAR)
SELECT AVG(total_matches) FROM table_name_23 WHERE swansea_win < 3 AND competition = "fa cup" AND draw < 0
50,472
<question>: How many cardiff wins have a draw greater than 27? <context>: CREATE TABLE table_name_26 (cardiff_win VARCHAR, draw INTEGER)
SELECT COUNT(cardiff_win) FROM table_name_26 WHERE draw > 27
50,473
<question>: How many average total matches have league cup as the competition, with a draw greater than 0? <context>: CREATE TABLE table_name_34 (total_matches INTEGER, competition VARCHAR, draw VARCHAR)
SELECT AVG(total_matches) FROM table_name_34 WHERE competition = "league cup" AND draw > 0
50,474
<question>: What is the number of tries for when the try bonus is 0? <context>: CREATE TABLE table_name_16 (tries_for VARCHAR, try_bonus VARCHAR)
SELECT tries_for FROM table_name_16 WHERE try_bonus = "0"
50,475
<question>: How many points is there when the lost is 6 and the try bonus is 9? <context>: CREATE TABLE table_name_24 (points_for VARCHAR, lost VARCHAR, try_bonus VARCHAR)
SELECT points_for FROM table_name_24 WHERE lost = "6" AND try_bonus = "9"
50,476
<question>: How many pints does the Cambrian Welfare RFC have? <context>: CREATE TABLE table_name_50 (points_for VARCHAR, club VARCHAR)
SELECT points_for FROM table_name_50 WHERE club = "cambrian welfare rfc"
50,477
<question>: When the try bonus is 9 and the lost 4, what is the drawn? <context>: CREATE TABLE table_name_50 (drawn VARCHAR, try_bonus VARCHAR, lost VARCHAR)
SELECT drawn FROM table_name_50 WHERE try_bonus = "9" AND lost = "4"
50,478
<question>: Club Clwb Rygbi Cymru Caerdydd RFC has how many points? <context>: CREATE TABLE table_name_40 (points VARCHAR, club VARCHAR)
SELECT points FROM table_name_40 WHERE club = "clwb rygbi cymru caerdydd rfc"
50,479
<question>: What is the highest Rank with a density less than 376.37, the province was valverde, and an Area larger than 823? <context>: CREATE TABLE table_name_68 (rank INTEGER, area VARCHAR, density VARCHAR, province VARCHAR)
SELECT MAX(rank) FROM table_name_68 WHERE density < 376.37 AND province = "valverde" AND area > 823
50,480
<question>: What is the highest Density for the independencia province, with an area smaller than 2,007.4? <context>: CREATE TABLE table_name_88 (density INTEGER, province VARCHAR, area VARCHAR)
SELECT MAX(density) FROM table_name_88 WHERE province = "independencia" AND area < 2 OFFSET 007.4
50,481
<question>: Which 2nd leg has pamesa valencia for team #2? <context>: CREATE TABLE table_name_52 (team__number2 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_52 WHERE team__number2 = "pamesa valencia"
50,482
<question>: What is the team #1 that has unics kazan for team #2? <context>: CREATE TABLE table_name_97 (team__number1 VARCHAR, team__number2 VARCHAR)
SELECT team__number1 FROM table_name_97 WHERE team__number2 = "unics kazan"
50,483
<question>: What is the 1st leg that has akasvayu girona as team #2? <context>: CREATE TABLE table_name_37 (team__number2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_37 WHERE team__number2 = "akasvayu girona"
50,484
<question>: Which Wins has a Tournament of totals, and a Cuts made larger than 42? <context>: CREATE TABLE table_name_2 (wins INTEGER, tournament VARCHAR, cuts_made VARCHAR)
SELECT AVG(wins) FROM table_name_2 WHERE tournament = "totals" AND cuts_made > 42
50,485
<question>: Which Top-10 has a Cuts made larger than 42? <context>: CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made INTEGER)
SELECT MIN(top_10) FROM table_name_57 WHERE cuts_made > 42
50,486
<question>: Which Wins has a Top-5 of 6? <context>: CREATE TABLE table_name_26 (wins INTEGER, top_5 VARCHAR)
SELECT AVG(wins) FROM table_name_26 WHERE top_5 = 6
50,487
<question>: Which Cuts made has a Top-25 smaller than 3? <context>: CREATE TABLE table_name_26 (cuts_made INTEGER, top_25 INTEGER)
SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3
50,488
<question>: Which Top-10 has a Cuts made of 10, and a Top-5 larger than 1? <context>: CREATE TABLE table_name_95 (top_10 INTEGER, cuts_made VARCHAR, top_5 VARCHAR)
SELECT MIN(top_10) FROM table_name_95 WHERE cuts_made = 10 AND top_5 > 1
50,489
<question>: Concerning protestantism by country, the ranking is out of how many total? <context>: CREATE TABLE table_name_62 (out_of VARCHAR, source VARCHAR)
SELECT out_of FROM table_name_62 WHERE source = "protestantism by country"
50,490
<question>: What is the lowest rank that the protestants population holds? <context>: CREATE TABLE table_name_67 (rank INTEGER, name VARCHAR)
SELECT MIN(rank) FROM table_name_67 WHERE name = "protestants population"
50,491
<question>: The album titled I had what chart positions? <context>: CREATE TABLE table_name_21 (chart_positions VARCHAR, album_title VARCHAR)
SELECT chart_positions FROM table_name_21 WHERE album_title = "i"
50,492
<question>: What is the title of the album that has Popup has the original label? <context>: CREATE TABLE table_name_25 (album_title VARCHAR, original_label VARCHAR)
SELECT album_title FROM table_name_25 WHERE original_label = "popup"
50,493
<question>: What is the format of the album with a year less than 1992? <context>: CREATE TABLE table_name_58 (format VARCHAR, year INTEGER)
SELECT format FROM table_name_58 WHERE year < 1992
50,494
<question>: What chart positions did the album reach when ep was the format? <context>: CREATE TABLE table_name_1 (chart_positions VARCHAR, format VARCHAR)
SELECT chart_positions FROM table_name_1 WHERE format = "ep"
50,495
<question>: What was the average pick with Ed O'Bannon and a round smaller than 1? <context>: CREATE TABLE table_name_74 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT AVG(pick) FROM table_name_74 WHERE player = "ed o'bannon" AND round < 1
50,496
<question>: What player was drafted for the Detroit Pistons? <context>: CREATE TABLE table_name_27 (player VARCHAR, nba_team VARCHAR)
SELECT player FROM table_name_27 WHERE nba_team = "detroit pistons"
50,497
<question>: Which Team 2 had a Team 1 of montreal impact? <context>: CREATE TABLE table_name_81 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_81 WHERE team_1 = "montreal impact"
50,498
<question>: Which Team 2 had a Team 1of joe public? <context>: CREATE TABLE table_name_52 (team_2 VARCHAR, team_1 VARCHAR)
SELECT team_2 FROM table_name_52 WHERE team_1 = "joe public"
50,499
<question>: Which team 1 had a Team 2 of hankook verdes? <context>: CREATE TABLE table_name_19 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_19 WHERE team_2 = "hankook verdes"