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