Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
10,300
<question>: When was the earliest that New England Patriots played? <context>: CREATE TABLE table_name_80 (week INTEGER, opponent VARCHAR)
SELECT MIN(week) FROM table_name_80 WHERE opponent = "new england patriots"
10,301
<question>: What is the average week with St. Louis Cardinals with less than 80,010 attendance? <context>: CREATE TABLE table_name_99 (week INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT AVG(week) FROM table_name_99 WHERE opponent = "st. louis cardinals" AND attendance < 80 OFFSET 010
10,302
<question>: Which Runs is the highest one that has a Match larger than 63, and a Venue of national stadium, karachi, and a Year smaller than 1996? <context>: CREATE TABLE table_name_75 (runs INTEGER, year VARCHAR, match VARCHAR, venue VARCHAR)
SELECT MAX(runs) FROM table_name_75 WHERE match > 63 AND venue = "national stadium, karachi" AND year < 1996
10,303
<question>: Which Year has a Match of 63? <context>: CREATE TABLE table_name_82 (year VARCHAR, match VARCHAR)
SELECT year FROM table_name_82 WHERE match = 63
10,304
<question>: Which Match has Runs of 100, and a Year larger than 1994? <context>: CREATE TABLE table_name_14 (match INTEGER, runs VARCHAR, year VARCHAR)
SELECT SUM(match) FROM table_name_14 WHERE runs = 100 AND year > 1994
10,305
<question>: How many matches have a City/Country of karachi, pakistan, and a Year larger than 1996? <context>: CREATE TABLE table_name_63 (match VARCHAR, city_country VARCHAR, year VARCHAR)
SELECT COUNT(match) FROM table_name_63 WHERE city_country = "karachi, pakistan" AND year > 1996
10,306
<question>: What is the highest number of Silvers for rank 7 teams with 1 gold and under 1 bronze? <context>: CREATE TABLE table_name_37 (silver INTEGER, rank VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT MAX(silver) FROM table_name_37 WHERE bronze < 1 AND gold = 1 AND rank = "7"
10,307
<question>: What is the fewest number of silvers for teams with more than 21 gold and more than 4 bronze? <context>: CREATE TABLE table_name_56 (silver INTEGER, bronze VARCHAR, gold VARCHAR)
SELECT MIN(silver) FROM table_name_56 WHERE bronze > 4 AND gold > 21
10,308
<question>: What is the average number of silvers for teams ranked 5 with 0 bronze? <context>: CREATE TABLE table_name_31 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
SELECT AVG(silver) FROM table_name_31 WHERE rank = "5" AND bronze < 0
10,309
<question>: Where was the game with a result of won 5-0? <context>: CREATE TABLE table_name_6 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_6 WHERE result = "won 5-0"
10,310
<question>: What was the date of the game with a result of won 4-2? <context>: CREATE TABLE table_name_15 (date VARCHAR, result VARCHAR)
SELECT date FROM table_name_15 WHERE result = "won 4-2"
10,311
<question>: What was the date of the game against Hayes & Yeading United? <context>: CREATE TABLE table_name_60 (date VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_60 WHERE opponent = "hayes & yeading united"
10,312
<question>: Where was the game with a result of won 5-0? <context>: CREATE TABLE table_name_25 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_25 WHERE result = "won 5-0"
10,313
<question>: If the RR Rate is less than 0.75 with a result of RR:08,09, what is the average appeared? <context>: CREATE TABLE table_name_56 (appeared INTEGER, rr_w_rate VARCHAR, result VARCHAR)
SELECT AVG(appeared) FROM table_name_56 WHERE rr_w_rate < 0.75 AND result = "rr:08,09"
10,314
<question>: What's the total appeared that has an RR Rate less than 0.17? <context>: CREATE TABLE table_name_95 (appeared INTEGER, rr_w_rate INTEGER)
SELECT SUM(appeared) FROM table_name_95 WHERE rr_w_rate < 0.17
10,315
<question>: For Angelique Kerber who had an RR Rate of less than 0.33, what's the appeared? <context>: CREATE TABLE table_name_87 (appeared INTEGER, rr_w_rate VARCHAR, player VARCHAR)
SELECT SUM(appeared) FROM table_name_87 WHERE rr_w_rate < 0.33 AND player = "angelique kerber"
10,316
<question>: What is the area (km²) of Nairnshire county, which has a population less than 11,050? <context>: CREATE TABLE table_name_34 (area__km²_ INTEGER, county VARCHAR, population VARCHAR)
SELECT SUM(area__km²_) FROM table_name_34 WHERE county = "nairnshire" AND population < 11 OFFSET 050
10,317
<question>: What was the Attendance of August 26? <context>: CREATE TABLE table_name_14 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_14 WHERE date = "august 26"
10,318
<question>: What is the highest number of severe tropical cyclones when there are 10 tropical cyclones and 14 tropical lows? <context>: CREATE TABLE table_name_78 (Severe INTEGER, tropical_cyclones VARCHAR, tropical_lows VARCHAR)
SELECT MAX(Severe) AS tropical_cyclones FROM table_name_78 WHERE tropical_cyclones = 10 AND tropical_lows = 14
10,319
<question>: Which track in Austria has Bobsleigh-skeleton curves with a grade of 14%? <context>: CREATE TABLE table_name_82 (track VARCHAR, bobsleigh_skeleton_curves VARCHAR, country VARCHAR)
SELECT track FROM table_name_82 WHERE bobsleigh_skeleton_curves = "14" AND country = "austria"
10,320
<question>: What is the shortest length of a track in Norway that has a maximum grade of 15% and a vertical drop less than 122.22 m? <context>: CREATE TABLE table_name_72 (length__m_ INTEGER, country VARCHAR, maximum_grade___percentage_ VARCHAR, vertical_drop__m_ VARCHAR)
SELECT MIN(length__m_) FROM table_name_72 WHERE maximum_grade___percentage_ = "15" AND vertical_drop__m_ < 122.22 AND country = "norway"
10,321
<question>: What is the highest vertical drop among the 1,200 meter long tracks? <context>: CREATE TABLE table_name_9 (vertical_drop__m_ INTEGER, length__m_ VARCHAR)
SELECT MAX(vertical_drop__m_) FROM table_name_9 WHERE length__m_ = 1 OFFSET 200
10,322
<question>: How many Attendance has a Opponent of west bromwich albion, and a Result of 3 – 3, and a Match larger than 20? <context>: CREATE TABLE table_name_79 (attendance INTEGER, match VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT SUM(attendance) FROM table_name_79 WHERE opponent = "west bromwich albion" AND result = "3 – 3" AND match > 20
10,323
<question>: WHich Match has a Venue of h on 22 september 1888 with Attendances smaller than 4,000? <context>: CREATE TABLE table_name_99 (match INTEGER, attendance VARCHAR, venue VARCHAR, date VARCHAR)
SELECT MAX(match) FROM table_name_99 WHERE venue = "h" AND date = "22 september 1888" AND attendance < 4 OFFSET 000
10,324
<question>: What is the venue of the match on 5 April 2000? <context>: CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)
SELECT venue FROM table_name_45 WHERE date = "5 april 2000"
10,325
<question>: What is the round number of the match with Michael Buell as the opponent? <context>: CREATE TABLE table_name_66 (round VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_66 WHERE opponent = "michael buell"
10,326
<question>: What is the time of the match with a win result, more than 2 rounds, and Makoto Ishikawa as the opponent? <context>: CREATE TABLE table_name_74 (time VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR)
SELECT time FROM table_name_74 WHERE res = "win" AND round > 2 AND opponent = "makoto ishikawa"
10,327
<question>: what team scored 65-87 <context>: CREATE TABLE table_name_83 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_83 WHERE record = "65-87"
10,328
<question>: what was the score on september 14 <context>: CREATE TABLE table_name_43 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_43 WHERE date = "september 14"
10,329
<question>: What form factor has capacities at 60/120/180/240? <context>: CREATE TABLE table_name_65 (form_factor VARCHAR, capacities__gb_ VARCHAR)
SELECT form_factor FROM table_name_65 WHERE capacities__gb_ = "60/120/180/240"
10,330
<question>: Which value for Form factor has Sandforce with Capacity 80/120/180/240/360/480 introduced in July 2013? <context>: CREATE TABLE table_name_84 (form_factor VARCHAR, introduced VARCHAR, controller VARCHAR, capacities__gb_ VARCHAR)
SELECT form_factor FROM table_name_84 WHERE controller = "sandforce" AND capacities__gb_ = "80/120/180/240/360/480" AND introduced = "july 2013"
10,331
<question>: Which controller has an interface of pcie 2.0 × 8? <context>: CREATE TABLE table_name_37 (controller VARCHAR, interface VARCHAR)
SELECT controller FROM table_name_37 WHERE interface = "pcie 2.0 × 8"
10,332
<question>: Which controller is NAND type 25nm mlc-het with sequential read/write MB/s of 270/210? <context>: CREATE TABLE table_name_67 (controller VARCHAR, nand_type VARCHAR, seq_read_write_mb_s VARCHAR)
SELECT controller FROM table_name_67 WHERE nand_type = "25nm mlc-het" AND seq_read_write_mb_s = "270/210"
10,333
<question>: Which interface uses Sandforce with a code name of Sierra Star? <context>: CREATE TABLE table_name_27 (interface VARCHAR, controller VARCHAR, codename VARCHAR)
SELECT interface FROM table_name_27 WHERE controller = "sandforce" AND codename = "sierra star"
10,334
<question>: What is the Highest finish with a Most recent finish that was 2nd? <context>: CREATE TABLE table_name_48 (highest_finish VARCHAR, most_recent_finish VARCHAR)
SELECT highest_finish FROM table_name_48 WHERE most_recent_finish = "2nd"
10,335
<question>: What is the result of the game at the Shea Stadium at 12:30pm (ET)? <context>: CREATE TABLE table_name_94 (result VARCHAR, time___et__ VARCHAR, location VARCHAR)
SELECT result FROM table_name_94 WHERE time___et__ = "12:30pm" AND location = "shea stadium"
10,336
<question>: Which Played is the lowest one that has a Blackpool smaller than 0? <context>: CREATE TABLE table_name_57 (played INTEGER, blackpool INTEGER)
SELECT MIN(played) FROM table_name_57 WHERE blackpool < 0
10,337
<question>: Which Blackpool is the highest one that has a Draw larger than 18? <context>: CREATE TABLE table_name_82 (blackpool INTEGER, draw INTEGER)
SELECT MAX(blackpool) FROM table_name_82 WHERE draw > 18
10,338
<question>: How much Preston North End has a Blackpool smaller than 0? <context>: CREATE TABLE table_name_90 (preston_north_end VARCHAR, blackpool INTEGER)
SELECT COUNT(preston_north_end) FROM table_name_90 WHERE blackpool < 0
10,339
<question>: Which Blackpool has a Preston North End smaller than 46, and a Competition of other, and a Draw larger than 1? <context>: CREATE TABLE table_name_94 (blackpool INTEGER, draw VARCHAR, preston_north_end VARCHAR, competition VARCHAR)
SELECT SUM(blackpool) FROM table_name_94 WHERE preston_north_end < 46 AND competition = "other" AND draw > 1
10,340
<question>: What is the finish for the chip ganassi racing team that was later than 2010 and a Start of 17? <context>: CREATE TABLE table_name_82 (finish VARCHAR, start VARCHAR, team VARCHAR, year VARCHAR)
SELECT finish FROM table_name_82 WHERE team = "chip ganassi racing" AND year > 2010 AND start = "17"
10,341
<question>: What is shown for Chassis for the year of 2007? <context>: CREATE TABLE table_name_70 (chassis VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_70 WHERE year = 2007
10,342
<question>: What is the name of the team with a finish of 19? <context>: CREATE TABLE table_name_48 (team VARCHAR, finish VARCHAR)
SELECT team FROM table_name_48 WHERE finish = "19"
10,343
<question>: What is the Finish when the start shows 3 in the year of 2010? <context>: CREATE TABLE table_name_74 (finish VARCHAR, start VARCHAR, year VARCHAR)
SELECT finish FROM table_name_74 WHERE start = "3" AND year = 2010
10,344
<question>: What is the Engine with 3 as the start in the year of 2007? <context>: CREATE TABLE table_name_8 (engine VARCHAR, start VARCHAR, year VARCHAR)
SELECT engine FROM table_name_8 WHERE start = "3" AND year = 2007
10,345
<question>: What was the Score on October 24, 1982 in Tokyo, Japan? <context>: CREATE TABLE table_name_60 (score VARCHAR, tournament VARCHAR, date VARCHAR)
SELECT score FROM table_name_60 WHERE tournament = "tokyo, japan" AND date = "october 24, 1982"
10,346
<question>: What Tournament on October 24, 1982 had Alycia Moulton as the Partner? <context>: CREATE TABLE table_name_23 (tournament VARCHAR, date VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_23 WHERE date = "october 24, 1982" AND partner = "alycia moulton"
10,347
<question>: Who were the Opponents when Laura DuPont had Pam Shriver as Partner with a Score of 6-3, 6-3? <context>: CREATE TABLE table_name_10 (opponents VARCHAR, partner VARCHAR, score VARCHAR)
SELECT opponents FROM table_name_10 WHERE partner = "pam shriver" AND score = "6-3, 6-3"
10,348
<question>: On what Surface was the match with a Score of 3-6, 1-6 played? <context>: CREATE TABLE table_name_99 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_99 WHERE score = "3-6, 1-6"
10,349
<question>: In what Tournament was Barbara Jordan a Partner with a Score of 6-2, 3-6, 3-6? <context>: CREATE TABLE table_name_85 (tournament VARCHAR, partner VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_85 WHERE partner = "barbara jordan" AND score = "6-2, 3-6, 3-6"
10,350
<question>: Name the points with tries for of 40 <context>: CREATE TABLE table_name_62 (points_for VARCHAR, tries_for VARCHAR)
SELECT points_for FROM table_name_62 WHERE tries_for = "40"
10,351
<question>: Name the played with losing bonus of 3 and points against of 426 <context>: CREATE TABLE table_name_37 (played VARCHAR, losing_bonus VARCHAR, points_against VARCHAR)
SELECT played FROM table_name_37 WHERE losing_bonus = "3" AND points_against = "426"
10,352
<question>: Name the club with points of 56 <context>: CREATE TABLE table_name_9 (club VARCHAR, points VARCHAR)
SELECT club FROM table_name_9 WHERE points = "56"
10,353
<question>: Name the points against for porthcawl rfc <context>: CREATE TABLE table_name_87 (points_against VARCHAR, club VARCHAR)
SELECT points_against FROM table_name_87 WHERE club = "porthcawl rfc"
10,354
<question>: Name the club for drawn of 0 and lost of 0 <context>: CREATE TABLE table_name_92 (club VARCHAR, drawn VARCHAR, lost VARCHAR)
SELECT club FROM table_name_92 WHERE drawn = "0" AND lost = "0"
10,355
<question>: Name the points with lost of 19 <context>: CREATE TABLE table_name_96 (points VARCHAR, lost VARCHAR)
SELECT points FROM table_name_96 WHERE lost = "19"
10,356
<question>: result is lost re-election republican gain, what is the district? <context>: CREATE TABLE table_name_48 (district VARCHAR, result VARCHAR)
SELECT district FROM table_name_48 WHERE result = "lost re-election republican gain"
10,357
<question>: Which Winning constructor has a Winning driver of felice nazzaro? <context>: CREATE TABLE table_name_52 (winning_constructor VARCHAR, winning_driver VARCHAR)
SELECT winning_constructor FROM table_name_52 WHERE winning_driver = "felice nazzaro"
10,358
<question>: Who is Winning driver on 18 may? <context>: CREATE TABLE table_name_30 (winning_driver VARCHAR, date VARCHAR)
SELECT winning_driver FROM table_name_30 WHERE date = "18 may"
10,359
<question>: WHo is Winning driver that is in st. petersburg - moscow? <context>: CREATE TABLE table_name_73 (winning_driver VARCHAR, name VARCHAR)
SELECT winning_driver FROM table_name_73 WHERE name = "st. petersburg - moscow"
10,360
<question>: Which Date has a Winning constructor of fiat and a Winning driver of louis wagner? <context>: CREATE TABLE table_name_34 (date VARCHAR, winning_constructor VARCHAR, winning_driver VARCHAR)
SELECT date FROM table_name_34 WHERE winning_constructor = "fiat" AND winning_driver = "louis wagner"
10,361
<question>: Which Report is on 1 june? <context>: CREATE TABLE table_name_13 (report VARCHAR, date VARCHAR)
SELECT report FROM table_name_13 WHERE date = "1 june"
10,362
<question>: When is vanderbilt cup in? <context>: CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR)
SELECT date FROM table_name_55 WHERE name = "vanderbilt cup"
10,363
<question>: Which event is in round 1 with a record at 5-1? <context>: CREATE TABLE table_name_28 (event VARCHAR, round VARCHAR, record VARCHAR)
SELECT event FROM table_name_28 WHERE round = 1 AND record = "5-1"
10,364
<question>: When the country is Cambodia and the total is smaller than 1 what's the lowest silver? <context>: CREATE TABLE table_name_42 (silver INTEGER, country VARCHAR, total VARCHAR)
SELECT MIN(silver) FROM table_name_42 WHERE country = "cambodia" AND total < 1
10,365
<question>: What is the highest gold for Cambodia when the total is less than 1? <context>: CREATE TABLE table_name_94 (gold INTEGER, country VARCHAR, total VARCHAR)
SELECT MAX(gold) FROM table_name_94 WHERE country = "cambodia" AND total < 1
10,366
<question>: What is the total silver when bronze is smaller than 0? <context>: CREATE TABLE table_name_92 (silver VARCHAR, bronze INTEGER)
SELECT COUNT(silver) FROM table_name_92 WHERE bronze < 0
10,367
<question>: What is the total when the gold of 0, and a bronze larger than 1? <context>: CREATE TABLE table_name_25 (total INTEGER, gold VARCHAR, bronze VARCHAR)
SELECT MAX(total) FROM table_name_25 WHERE gold = 0 AND bronze > 1
10,368
<question>: What is the total when bronze has a silver larger than 2? <context>: CREATE TABLE table_name_12 (bronze VARCHAR, silver INTEGER)
SELECT COUNT(bronze) FROM table_name_12 WHERE silver > 2
10,369
<question>: What is the sum of silver medals for teams with more than 14 total medals and more than 16 golds? <context>: CREATE TABLE table_name_14 (silver INTEGER, total VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_14 WHERE total > 14 AND gold > 16
10,370
<question>: What is the rank of the team having 3 bronzes and 0 silver? <context>: CREATE TABLE table_name_79 (rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_79 WHERE bronze = 3 AND silver = 0
10,371
<question>: How many tries against did the club with 383 points against have? <context>: CREATE TABLE table_name_39 (tries_against VARCHAR, points_against VARCHAR)
SELECT tries_against FROM table_name_39 WHERE points_against = "383"
10,372
<question>: How many tries against did the club with 48 tries for have? <context>: CREATE TABLE table_name_90 (tries_against VARCHAR, tries_for VARCHAR)
SELECT tries_against FROM table_name_90 WHERE tries_for = "48"
10,373
<question>: How many points did the club with 13 losses and 461 points against have? <context>: CREATE TABLE table_name_59 (points VARCHAR, lost VARCHAR, points_against VARCHAR)
SELECT points FROM table_name_59 WHERE lost = "13" AND points_against = "461"
10,374
<question>: How many tries against did Pentyrch RFC have? <context>: CREATE TABLE table_name_92 (tries_against VARCHAR, club VARCHAR)
SELECT tries_against FROM table_name_92 WHERE club = "pentyrch rfc"
10,375
<question>: What is the lowest drawn that has games less than 7? <context>: CREATE TABLE table_name_83 (drawn INTEGER, games INTEGER)
SELECT MIN(drawn) FROM table_name_83 WHERE games < 7
10,376
<question>: Hoe many of lost have points greater than 14? <context>: CREATE TABLE table_name_50 (lost VARCHAR, points INTEGER)
SELECT COUNT(lost) FROM table_name_50 WHERE points > 14
10,377
<question>: How many of lost have 11 as the points, and a drawn greater than 1? <context>: CREATE TABLE table_name_81 (lost VARCHAR, points VARCHAR, drawn VARCHAR)
SELECT COUNT(lost) FROM table_name_81 WHERE points = 11 AND drawn > 1
10,378
<question>: What is the lowest game that has a drawn less than 0? <context>: CREATE TABLE table_name_26 (games INTEGER, drawn INTEGER)
SELECT MIN(games) FROM table_name_26 WHERE drawn < 0
10,379
<question>: Which Total is the lowest one that has a Bronze of 0, and a Silver larger than 0, and a Rank of 5? <context>: CREATE TABLE table_name_51 (total INTEGER, rank VARCHAR, bronze VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_51 WHERE bronze = 0 AND silver > 0 AND rank = 5
10,380
<question>: Which Bronze has a Total smaller than 2, and a Silver larger than 0, and a Gold smaller than 0? <context>: CREATE TABLE table_name_69 (bronze INTEGER, gold VARCHAR, total VARCHAR, silver VARCHAR)
SELECT SUM(bronze) FROM table_name_69 WHERE total < 2 AND silver > 0 AND gold < 0
10,381
<question>: Which Rank is the lowest one that has a Nation of switzerland, and a Bronze smaller than 0? <context>: CREATE TABLE table_name_38 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT MIN(rank) FROM table_name_38 WHERE nation = "switzerland" AND bronze < 0
10,382
<question>: Which Total is the highest one that has a Bronze of 0, and a Nation of poland, and a Gold smaller than 0? <context>: CREATE TABLE table_name_87 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR)
SELECT MAX(total) FROM table_name_87 WHERE bronze = 0 AND nation = "poland" AND gold < 0
10,383
<question>: What is the save of the game that 23,394 people attended? <context>: CREATE TABLE table_name_49 (save VARCHAR, attendance VARCHAR)
SELECT save FROM table_name_49 WHERE attendance = "23,394"
10,384
<question>: Whihc Date is the lowest one that has a Competition of league, and a Venue of away, and an Opponent of swindon wildcats, and an Attendance larger than 1,201? <context>: CREATE TABLE table_name_51 (date INTEGER, attendance VARCHAR, opponent VARCHAR, competition VARCHAR, venue VARCHAR)
SELECT MIN(date) FROM table_name_51 WHERE competition = "league" AND venue = "away" AND opponent = "swindon wildcats" AND attendance > 1 OFFSET 201
10,385
<question>: How many Dates have an Opponent of romford raiders, and a Result of won 7-3, and an Attendance larger than 1,769? <context>: CREATE TABLE table_name_24 (date VARCHAR, attendance VARCHAR, opponent VARCHAR, result VARCHAR)
SELECT COUNT(date) FROM table_name_24 WHERE opponent = "romford raiders" AND result = "won 7-3" AND attendance > 1 OFFSET 769
10,386
<question>: Which Date has an Opponent of milton keynes lightning, and an Attendance smaller than 1,771? <context>: CREATE TABLE table_name_96 (date INTEGER, opponent VARCHAR, attendance VARCHAR)
SELECT AVG(date) FROM table_name_96 WHERE opponent = "milton keynes lightning" AND attendance < 1 OFFSET 771
10,387
<question>: Which Attendance has a Date of october 25? <context>: CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 25"
10,388
<question>: Which Score has a Visitor of atlanta? <context>: CREATE TABLE table_name_72 (score VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_72 WHERE visitor = "atlanta"
10,389
<question>: Which Yards has a Attempts of 247 <context>: CREATE TABLE table_name_74 (yards VARCHAR, attempts VARCHAR)
SELECT yards FROM table_name_74 WHERE attempts = "247"
10,390
<question>: Which yard has a Completion of 64.9%? <context>: CREATE TABLE table_name_26 (yards VARCHAR, completion__percentage VARCHAR)
SELECT yards FROM table_name_26 WHERE completion__percentage = "64.9%"
10,391
<question>: Which Completions has Yards of 10,098? <context>: CREATE TABLE table_name_36 (completions VARCHAR, yards VARCHAR)
SELECT completions FROM table_name_36 WHERE yards = "10,098"
10,392
<question>: When has Attempts of 282 ? <context>: CREATE TABLE table_name_3 (year VARCHAR, attempts VARCHAR)
SELECT year FROM table_name_3 WHERE attempts = "282"
10,393
<question>: Which Completions has Attempts of 1,271? <context>: CREATE TABLE table_name_89 (completions VARCHAR, attempts VARCHAR)
SELECT completions FROM table_name_89 WHERE attempts = "1,271"
10,394
<question>: which Completion % has a Yards of 2,175? <context>: CREATE TABLE table_name_57 (completion__percentage VARCHAR, yards VARCHAR)
SELECT completion__percentage FROM table_name_57 WHERE yards = "2,175"
10,395
<question>: What was the surface for Adrian Ungur as an opponent? <context>: CREATE TABLE table_name_86 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_86 WHERE opponent = "adrian ungur"
10,396
<question>: What was the score on a clay surface on May 29, 2006? <context>: CREATE TABLE table_name_5 (score VARCHAR, surface VARCHAR, date VARCHAR)
SELECT score FROM table_name_5 WHERE surface = "clay" AND date = "may 29, 2006"
10,397
<question>: Which tournament had a score of 6–3, 7–6? <context>: CREATE TABLE table_name_75 (tournament VARCHAR, score VARCHAR)
SELECT tournament FROM table_name_75 WHERE score = "6–3, 7–6"
10,398
<question>: On what surface was the opponent Michael Berrer? <context>: CREATE TABLE table_name_15 (surface VARCHAR, opponent VARCHAR)
SELECT surface FROM table_name_15 WHERE opponent = "michael berrer"
10,399
<question>: What game has 2 points? <context>: CREATE TABLE table_name_58 (games INTEGER, points VARCHAR)
SELECT MAX(games) FROM table_name_58 WHERE points = 2