Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
55,200
<question>: What is the highest number of laps that max biaggi rode on a grid larger than 2? <context>: CREATE TABLE table_name_12 (laps INTEGER, rider VARCHAR, grid VARCHAR)
SELECT MAX(laps) FROM table_name_12 WHERE rider = "max biaggi" AND grid > 2
55,201
<question>: What is the highest grid that tetsuya harada rode in? <context>: CREATE TABLE table_name_71 (grid INTEGER, rider VARCHAR)
SELECT MAX(grid) FROM table_name_71 WHERE rider = "tetsuya harada"
55,202
<question>: What is the average number of laps that were made when the race took a time of +48.325? <context>: CREATE TABLE table_name_89 (laps INTEGER, time_retired VARCHAR)
SELECT AVG(laps) FROM table_name_89 WHERE time_retired = "+48.325"
55,203
<question>: What is the total number of laps during the race that had a time of +9.682? <context>: CREATE TABLE table_name_6 (laps VARCHAR, time_retired VARCHAR)
SELECT COUNT(laps) FROM table_name_6 WHERE time_retired = "+9.682"
55,204
<question>: What is the highest Pick, when College is "Syracuse", and when Overall is less than 18? <context>: CREATE TABLE table_name_40 (pick INTEGER, college VARCHAR, overall VARCHAR)
SELECT MAX(pick) FROM table_name_40 WHERE college = "syracuse" AND overall < 18
55,205
<question>: What is Position, when College is "Houston"? <context>: CREATE TABLE table_name_97 (position VARCHAR, college VARCHAR)
SELECT position FROM table_name_97 WHERE college = "houston"
55,206
<question>: What is the number of networks when the size of rest bit field is 8? <context>: CREATE TABLE table_name_93 (number_of_networks VARCHAR, size_of_rest_bit_field VARCHAR)
SELECT number_of_networks FROM table_name_93 WHERE size_of_rest_bit_field = "8"
55,207
<question>: What is the start address when the network number bit field is 16? <context>: CREATE TABLE table_name_88 (start_address VARCHAR, size_of_network_number_bit_field VARCHAR)
SELECT start_address FROM table_name_88 WHERE size_of_network_number_bit_field = "16"
55,208
<question>: What is the end address for the Class E (Reserved)? <context>: CREATE TABLE table_name_61 (end_address VARCHAR, class VARCHAR)
SELECT end_address FROM table_name_61 WHERE class = "class e (reserved)"
55,209
<question>: What is the size of the rest bit field when the leading bits are more than 110 and the start address is 224.0.0.0? <context>: CREATE TABLE table_name_12 (size_of_rest_bit_field VARCHAR, leading_bits VARCHAR, start_address VARCHAR)
SELECT size_of_rest_bit_field FROM table_name_12 WHERE leading_bits > 110 AND start_address = "224.0.0.0"
55,210
<question>: W hat was the lowest Goals For when they played Team Goole Town and had a position lower than 9? <context>: CREATE TABLE table_name_65 (goals_for INTEGER, team VARCHAR, position VARCHAR)
SELECT MIN(goals_for) FROM table_name_65 WHERE team = "goole town" AND position < 9
55,211
<question>: Which team has a position higher than 3, a Drawn lower than 12, and a Goals Against higher than 85? <context>: CREATE TABLE table_name_15 (team VARCHAR, goals_against VARCHAR, drawn VARCHAR, position VARCHAR)
SELECT team FROM table_name_15 WHERE drawn < 12 AND position > 3 AND goals_against > 85
55,212
<question>: When the Points 1 were 44 and the Goals For were larger than 65, what was the total number of Goals Against? <context>: CREATE TABLE table_name_14 (goals_against VARCHAR, points_1 VARCHAR, goals_for VARCHAR)
SELECT COUNT(goals_against) FROM table_name_14 WHERE points_1 = 44 AND goals_for > 65
55,213
<question>: What was the year when the diameter was 729 km? <context>: CREATE TABLE table_name_59 (year_named VARCHAR, diameter__km_ VARCHAR)
SELECT year_named FROM table_name_59 WHERE diameter__km_ = 729
55,214
<question>: What is the highest diameter when the latitude is 43.5s? <context>: CREATE TABLE table_name_3 (diameter__km_ INTEGER, latitude VARCHAR)
SELECT MAX(diameter__km_) FROM table_name_3 WHERE latitude = "43.5s"
55,215
<question>: On what Date was the Attendance 75,891? <context>: CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_77 WHERE attendance = "75,891"
55,216
<question>: What was the Week on September 5, 1993? <context>: CREATE TABLE table_name_37 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_37 WHERE date = "september 5, 1993"
55,217
<question>: Who was the Opponent on October 31, 1993? <context>: CREATE TABLE table_name_71 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_71 WHERE date = "october 31, 1993"
55,218
<question>: what is the date for traction type electric with calgary location? <context>: CREATE TABLE table_name_18 (date__from_ VARCHAR, traction_type VARCHAR, location VARCHAR)
SELECT date__from_ FROM table_name_18 WHERE traction_type = "electric" AND location = "calgary"
55,219
<question>: Which date has date started from 30 Sep 1913? <context>: CREATE TABLE table_name_79 (date__to_ VARCHAR, date__from_ VARCHAR)
SELECT date__to_ FROM table_name_79 WHERE date__from_ = "30 sep 1913"
55,220
<question>: What is the 1st leg of 2q round? <context>: CREATE TABLE table_name_33 (round VARCHAR)
SELECT 1 AS st_leg FROM table_name_33 WHERE round = "2q"
55,221
<question>: What competition has the club villareal? <context>: CREATE TABLE table_name_89 (competition VARCHAR, club VARCHAR)
SELECT competition FROM table_name_89 WHERE club = "villareal"
55,222
<question>: Which competition has aik club? <context>: CREATE TABLE table_name_32 (competition VARCHAR, club VARCHAR)
SELECT competition FROM table_name_32 WHERE club = "aik"
55,223
<question>: What is the round of club bečej? <context>: CREATE TABLE table_name_38 (round VARCHAR, club VARCHAR)
SELECT round FROM table_name_38 WHERE club = "bečej"
55,224
<question>: What is the 1st leg of the uefa intertoto cup competition with club silkeborg? <context>: CREATE TABLE table_name_66 (competition VARCHAR, club VARCHAR)
SELECT 1 AS st_leg FROM table_name_66 WHERE competition = "uefa intertoto cup" AND club = "silkeborg"
55,225
<question>: Who had the high rebounds when the score was w 105–95 (ot) and Jason Kidd (8) had the high assists? <context>: CREATE TABLE table_name_57 (high_rebounds VARCHAR, high_assists VARCHAR, score VARCHAR)
SELECT high_rebounds FROM table_name_57 WHERE high_assists = "jason kidd (8)" AND score = "w 105–95 (ot)"
55,226
<question>: Which team scored l 87–115 (ot)? <context>: CREATE TABLE table_name_61 (team VARCHAR, score VARCHAR)
SELECT team FROM table_name_61 WHERE score = "l 87–115 (ot)"
55,227
<question>: What's the record of Game 56? <context>: CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_37 WHERE game = 56
55,228
<question>: Who was the team that played at Energysolutions Arena 19,911? <context>: CREATE TABLE table_name_29 (team VARCHAR, location_attendance VARCHAR)
SELECT team FROM table_name_29 WHERE location_attendance = "energysolutions arena 19,911"
55,229
<question>: Who had the high assists when the game was at American Airlines Center 20,223? <context>: CREATE TABLE table_name_8 (high_assists VARCHAR, location_attendance VARCHAR)
SELECT high_assists FROM table_name_8 WHERE location_attendance = "american airlines center 20,223"
55,230
<question>: What team has a Record of 50–28? <context>: CREATE TABLE table_name_9 (team VARCHAR, record VARCHAR)
SELECT team FROM table_name_9 WHERE record = "50–28"
55,231
<question>: What was the date of game 75? <context>: CREATE TABLE table_name_93 (date VARCHAR, game VARCHAR)
SELECT date FROM table_name_93 WHERE game = 75
55,232
<question>: Which manufacturer was used after 1969 with a finish position of 34? <context>: CREATE TABLE table_name_14 (manufacturer VARCHAR, year VARCHAR, finish VARCHAR)
SELECT manufacturer FROM table_name_14 WHERE year > 1969 AND finish = 34
55,233
<question>: What is the total attendance on April 25? <context>: CREATE TABLE table_name_28 (attendance VARCHAR, date VARCHAR)
SELECT COUNT(attendance) FROM table_name_28 WHERE date = "april 25"
55,234
<question>: What is the decision of the game with an attendance greater than 19,883? <context>: CREATE TABLE table_name_49 (decision VARCHAR, attendance INTEGER)
SELECT decision FROM table_name_49 WHERE attendance > 19 OFFSET 883
55,235
<question>: When the score was 76-73-67-69=285 what was the To par? <context>: CREATE TABLE table_name_31 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_31 WHERE score = 76 - 73 - 67 - 69 = 285
55,236
<question>: Which player has a To par of –6? <context>: CREATE TABLE table_name_83 (player VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_83 WHERE to_par = "–6"
55,237
<question>: How much memory (RAM) does the Maemo 5 operating system have? <context>: CREATE TABLE table_name_40 (memory___ram__ VARCHAR, operating_system_version VARCHAR)
SELECT memory___ram__ FROM table_name_40 WHERE operating_system_version = "maemo 5"
55,238
<question>: Which operating system has a storage (flash) of 128MB? <context>: CREATE TABLE table_name_18 (operating_system_version VARCHAR, storage___flash__ VARCHAR)
SELECT operating_system_version FROM table_name_18 WHERE storage___flash__ = "128mb"
55,239
<question>: What is the weight and dimensions of an N800? <context>: CREATE TABLE table_name_42 (weight VARCHAR, _dimensions VARCHAR, model VARCHAR)
SELECT weight, _dimensions FROM table_name_42 WHERE model = "n800"
55,240
<question>: Which operating system has 1GB (mobile ddr) memory (RAM)? <context>: CREATE TABLE table_name_27 (operating_system_version VARCHAR, memory___ram__ VARCHAR)
SELECT operating_system_version FROM table_name_27 WHERE memory___ram__ = "1gb (mobile ddr)"
55,241
<question>: What is the total number of Pick, when Round is greater than 1, and when Player is "Jim Stack"? <context>: CREATE TABLE table_name_1 (pick VARCHAR, round VARCHAR, player VARCHAR)
SELECT COUNT(pick) FROM table_name_1 WHERE round > 1 AND player = "jim stack"
55,242
<question>: What is the lowest Round, when College is "Washington State", and when Pick is less than 48? <context>: CREATE TABLE table_name_25 (round INTEGER, college VARCHAR, pick VARCHAR)
SELECT MIN(round) FROM table_name_25 WHERE college = "washington state" AND pick < 48
55,243
<question>: What is College, when Round is greater than 1, and when Pick is greater than 163? <context>: CREATE TABLE table_name_11 (college VARCHAR, round VARCHAR, pick VARCHAR)
SELECT college FROM table_name_11 WHERE round > 1 AND pick > 163
55,244
<question>: What is the location for the software of BIND and an IPv6 address of 2001:503:c27::2:30? <context>: CREATE TABLE table_name_90 (location__numbersites__global_local_ VARCHAR, software VARCHAR, ipv6_address VARCHAR)
SELECT location__numbersites__global_local_ FROM table_name_90 WHERE software = "bind" AND ipv6_address = "2001:503:c27::2:30"
55,245
<question>: Which IPv6 address has an operator of Wide project? <context>: CREATE TABLE table_name_65 (ipv6_address VARCHAR, operator VARCHAR)
SELECT ipv6_address FROM table_name_65 WHERE operator = "wide project"
55,246
<question>: Which letter has an operator of VeriSign and an AS-number of AS26415? <context>: CREATE TABLE table_name_45 (letter VARCHAR, operator VARCHAR, as_number VARCHAR)
SELECT letter FROM table_name_45 WHERE operator = "verisign" AND as_number = "as26415"
55,247
<question>: Which location has an AS-number of N/A? <context>: CREATE TABLE table_name_60 (location__numbersites__global_local_ VARCHAR, as_number VARCHAR)
SELECT location__numbersites__global_local_ FROM table_name_60 WHERE as_number = "n/a"
55,248
<question>: Which letter has an operator of the Defense Information Systems Agency? <context>: CREATE TABLE table_name_32 (letter VARCHAR, operator VARCHAR)
SELECT letter FROM table_name_32 WHERE operator = "defense information systems agency"
55,249
<question>: What is the sum of All-Time, when Amateur Era is less than 0? <context>: CREATE TABLE table_name_39 (all_time INTEGER, amateur_era INTEGER)
SELECT SUM(all_time) FROM table_name_39 WHERE amateur_era < 0
55,250
<question>: What is the lowest All-Time, when First Title is before 1974, when Last Title is "1933", and when Amateur Era is greater than 2? <context>: CREATE TABLE table_name_95 (all_time INTEGER, amateur_era VARCHAR, first_title VARCHAR, last_title VARCHAR)
SELECT MIN(all_time) FROM table_name_95 WHERE first_title < 1974 AND last_title = 1933 AND amateur_era > 2
55,251
<question>: What is the lowest All-Time, when First Title is "2007, and when Amateur Era is greater than 0? <context>: CREATE TABLE table_name_35 (all_time INTEGER, first_title VARCHAR, amateur_era VARCHAR)
SELECT MIN(all_time) FROM table_name_35 WHERE first_title = 2007 AND amateur_era > 0
55,252
<question>: What is the lowest First Title, when All-Time is greater than 1, when Country is "United States (USA)", and when Amateur Era is greater than 17? <context>: CREATE TABLE table_name_13 (first_title INTEGER, amateur_era VARCHAR, all_time VARCHAR, country VARCHAR)
SELECT MIN(first_title) FROM table_name_13 WHERE all_time > 1 AND country = "united states (usa)" AND amateur_era > 17
55,253
<question>: What is the Place of the Player with a To par of +2 and a Score of 70-72-73=215? <context>: CREATE TABLE table_name_22 (place VARCHAR, to_par VARCHAR, score VARCHAR)
SELECT place FROM table_name_22 WHERE to_par = "+2" AND score = 70 - 72 - 73 = 215
55,254
<question>: From what Country is T6 Place Player Robert Karlsson? <context>: CREATE TABLE table_name_19 (country VARCHAR, place VARCHAR, player VARCHAR)
SELECT country FROM table_name_19 WHERE place = "t6" AND player = "robert karlsson"
55,255
<question>: What is the To par of the T4 Place Player with a Score of 72-69-73=214? <context>: CREATE TABLE table_name_63 (to_par VARCHAR, place VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_63 WHERE place = "t4" AND score = 72 - 69 - 73 = 214
55,256
<question>: What is the To par of the Player with a Score of 70-72-73=215? <context>: CREATE TABLE table_name_7 (to_par VARCHAR, score VARCHAR)
SELECT to_par FROM table_name_7 WHERE score = 70 - 72 - 73 = 215
55,257
<question>: What Country is Rocco Mediate from? <context>: CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_49 WHERE player = "rocco mediate"
55,258
<question>: What is Mike Smith's To par? <context>: CREATE TABLE table_name_79 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_79 WHERE player = "mike smith"
55,259
<question>: What is Scott Hoch with a Score of 66 Country? <context>: CREATE TABLE table_name_36 (country VARCHAR, score VARCHAR, player VARCHAR)
SELECT country FROM table_name_36 WHERE score = 66 AND player = "scott hoch"
55,260
<question>: What is the T4 Place Player with a Score of more than 66? <context>: CREATE TABLE table_name_1 (player VARCHAR, score VARCHAR, place VARCHAR)
SELECT player FROM table_name_1 WHERE score > 66 AND place = "t4"
55,261
<question>: What is the vacancy date for the manager appointed on 2 November 2009 who left due to mutual consent? <context>: CREATE TABLE table_name_75 (date_of_vacancy VARCHAR, manner_of_departure VARCHAR, date_of_appointment VARCHAR)
SELECT date_of_vacancy FROM table_name_75 WHERE manner_of_departure = "mutual consent" AND date_of_appointment = "2 november 2009"
55,262
<question>: What was the manner of departure for the vacancy date of 20 September 2009? <context>: CREATE TABLE table_name_30 (manner_of_departure VARCHAR, date_of_vacancy VARCHAR)
SELECT manner_of_departure FROM table_name_30 WHERE date_of_vacancy = "20 september 2009"
55,263
<question>: What was the vacancy date of the manager appointed on 11 March 2010? <context>: CREATE TABLE table_name_45 (date_of_vacancy VARCHAR, date_of_appointment VARCHAR)
SELECT date_of_vacancy FROM table_name_45 WHERE date_of_appointment = "11 march 2010"
55,264
<question>: What is the lowest pick number where the overall pick number was 38? <context>: CREATE TABLE table_name_73 (pick INTEGER, overall VARCHAR)
SELECT MIN(pick) FROM table_name_73 WHERE overall = 38
55,265
<question>: What was the position of the player who was picked in round 22? <context>: CREATE TABLE table_name_49 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_49 WHERE round = 22
55,266
<question>: What was the call sign for ERP W of 99? <context>: CREATE TABLE table_name_68 (call_sign VARCHAR, erp_w VARCHAR)
SELECT call_sign FROM table_name_68 WHERE erp_w = 99
55,267
<question>: What is the team 1 in the match with a team 2 of Karabakh? <context>: CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR)
SELECT team_1 FROM table_name_20 WHERE team_2 = "karabakh"
55,268
<question>: What is the round of pick 63? <context>: CREATE TABLE table_name_36 (round VARCHAR, pick VARCHAR)
SELECT round FROM table_name_36 WHERE pick = 63
55,269
<question>: What is the lowest round of player chris burkett? <context>: CREATE TABLE table_name_99 (round INTEGER, player VARCHAR)
SELECT MIN(round) FROM table_name_99 WHERE player = "chris burkett"
55,270
<question>: What is the average pick of school/club team kutztown state with a round 4? <context>: CREATE TABLE table_name_3 (pick INTEGER, round VARCHAR, school_club_team VARCHAR)
SELECT AVG(pick) FROM table_name_3 WHERE round = 4 AND school_club_team = "kutztown state"
55,271
<question>: What is the average number of matches of leonardo in seasons after 1? <context>: CREATE TABLE table_name_79 (matches INTEGER, name VARCHAR, seasons VARCHAR)
SELECT AVG(matches) FROM table_name_79 WHERE name = "leonardo" AND seasons > 1
55,272
<question>: What is the average membership with 3.33% LDS and less than 47 branches? <context>: CREATE TABLE table_name_15 (membership INTEGER, _percentage_lds VARCHAR, branches VARCHAR)
SELECT AVG(membership) FROM table_name_15 WHERE _percentage_lds = "3.33%" AND branches < 47
55,273
<question>: what is 2005 when 2003 is A, 2007 is 2r and 2012 is 3r? <context>: CREATE TABLE table_name_49 (Id VARCHAR)
SELECT 2005 FROM table_name_49 WHERE 2003 = "a" AND 2007 = "2r" AND 2012 = "3r"
55,274
<question>: what is 2004 when the tournament is paris masters? <context>: CREATE TABLE table_name_49 (tournament VARCHAR)
SELECT 2004 FROM table_name_49 WHERE tournament = "paris masters"
55,275
<question>: what is 2009 when 2004 is 107? <context>: CREATE TABLE table_name_5 (Id VARCHAR)
SELECT 2009 FROM table_name_5 WHERE 2004 = "107"
55,276
<question>: what is 2003 when 2005 is did not qualify? <context>: CREATE TABLE table_name_37 (Id VARCHAR)
SELECT 2003 FROM table_name_37 WHERE 2005 = "did not qualify"
55,277
<question>: what is 2012 when the tournament is win %? <context>: CREATE TABLE table_name_9 (tournament VARCHAR)
SELECT 2012 FROM table_name_9 WHERE tournament = "win %"
55,278
<question>: What was the record on February 2? <context>: CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_42 WHERE date = "february 2"
55,279
<question>: What was the location of the game on February 2? <context>: CREATE TABLE table_name_50 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_50 WHERE date = "february 2"
55,280
<question>: What year was Black Swan up for the Gotham Awards? <context>: CREATE TABLE table_name_47 (year VARCHAR, title VARCHAR, award VARCHAR)
SELECT COUNT(year) FROM table_name_47 WHERE title = "black swan" AND award = "gotham awards"
55,281
<question>: What is the earliest year in which Requiem for a Dream was in the running for Best Director? <context>: CREATE TABLE table_name_21 (year INTEGER, title VARCHAR, category VARCHAR)
SELECT MIN(year) FROM table_name_21 WHERE title = "requiem for a dream" AND category = "best director"
55,282
<question>: Can you tell me the Record that has the Location of fleetcenter, and the Date of fri. apr. 5? <context>: CREATE TABLE table_name_16 (record VARCHAR, location VARCHAR, date VARCHAR)
SELECT record FROM table_name_16 WHERE location = "fleetcenter" AND date = "fri. apr. 5"
55,283
<question>: Can you tell me the Record that has the Game smaller than 76? <context>: CREATE TABLE table_name_61 (record VARCHAR, game INTEGER)
SELECT record FROM table_name_61 WHERE game < 76
55,284
<question>: Can you tell me the highest Game that has the Opponent of atlanta hawks? <context>: CREATE TABLE table_name_56 (game INTEGER, opponent VARCHAR)
SELECT MAX(game) FROM table_name_56 WHERE opponent = "atlanta hawks"
55,285
<question>: Can you tell me the Game that has the Opponent of miami heat? <context>: CREATE TABLE table_name_19 (game VARCHAR, opponent VARCHAR)
SELECT game FROM table_name_19 WHERE opponent = "miami heat"
55,286
<question>: Can you tell me the Record that has the Score of 100-105? <context>: CREATE TABLE table_name_99 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_99 WHERE score = "100-105"
55,287
<question>: Which Opponent has a Location/Attendance of delta center/19,911 on dec 6? <context>: CREATE TABLE table_name_63 (opponent VARCHAR, location_attendance VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_63 WHERE location_attendance = "delta center/19,911" AND date = "dec 6"
55,288
<question>: What is the Record for Game 17? <context>: CREATE TABLE table_name_36 (record VARCHAR, game VARCHAR)
SELECT record FROM table_name_36 WHERE game = "17"
55,289
<question>: What is the Location/Attendance on Dec 14? <context>: CREATE TABLE table_name_66 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_66 WHERE date = "dec 14"
55,290
<question>: Which Record is dated Dec 10? <context>: CREATE TABLE table_name_49 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_49 WHERE date = "dec 10"
55,291
<question>: What was the Location/Attendance on Dec 2? <context>: CREATE TABLE table_name_29 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_name_29 WHERE date = "dec 2"
55,292
<question>: Who rode a Honda CBR1000rr, had fewer than 22 laps, and a time of +2 laps? <context>: CREATE TABLE table_name_43 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR)
SELECT rider FROM table_name_43 WHERE bike = "honda cbr1000rr" AND laps < 22 AND time = "+2 laps"
55,293
<question>: What is the highest grid when the time is +45.162? <context>: CREATE TABLE table_name_65 (grid INTEGER, time VARCHAR)
SELECT MAX(grid) FROM table_name_65 WHERE time = "+45.162"
55,294
<question>: What is Fonsi Nieto's average grid when he's riding a Suzuki GSX-R1000? <context>: CREATE TABLE table_name_25 (grid INTEGER, bike VARCHAR, rider VARCHAR)
SELECT AVG(grid) FROM table_name_25 WHERE bike = "suzuki gsx-r1000" AND rider = "fonsi nieto"
55,295
<question>: How many grids did Shinichi Nakatomi ride in? <context>: CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)
SELECT SUM(grid) FROM table_name_46 WHERE rider = "shinichi nakatomi"
55,296
<question>: How many tries against have a losing bonus of 9? <context>: CREATE TABLE table_name_72 (tries_against VARCHAR, losing_bonus VARCHAR)
SELECT tries_against FROM table_name_72 WHERE losing_bonus = "9"
55,297
<question>: How many points were there for 15 losses? <context>: CREATE TABLE table_name_28 (points_for VARCHAR, lost VARCHAR)
SELECT points_for FROM table_name_28 WHERE lost = "15"
55,298
<question>: For which play was the points 271? <context>: CREATE TABLE table_name_74 (played VARCHAR, points_against VARCHAR)
SELECT played FROM table_name_74 WHERE points_against = "271"
55,299
<question>: How many points were there when the try bonus was 2? <context>: CREATE TABLE table_name_35 (points VARCHAR, try_bonus VARCHAR)
SELECT points FROM table_name_35 WHERE try_bonus = "2"