Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
46,100
<question>: What is the total number of attendence has points greater than 40, and detroit as the home? <context>: CREATE TABLE table_name_99 (attendance VARCHAR, points VARCHAR, home VARCHAR)
SELECT COUNT(attendance) FROM table_name_99 WHERE points > 40 AND home = "detroit"
46,101
<question>: What is the largest number for tropical Lows for the 1990–91 season with more than 10 tropical cyclones? <context>: CREATE TABLE table_name_13 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR)
SELECT MAX(tropical_lows) FROM table_name_13 WHERE season = "1990–91" AND tropical_cyclones > 10
46,102
<question>: What is the least number of tropical cyclones when the strongest storm was Tiffany and less than 10 tropical lows. <context>: CREATE TABLE table_name_88 (Severe INTEGER, strongest_storm VARCHAR, tropical_lows VARCHAR)
SELECT MIN(Severe) AS tropical_cyclones FROM table_name_88 WHERE strongest_storm = "tiffany" AND tropical_lows > 10
46,103
<question>: What is the least amount of severe tropical cyclones for the 1992–93 season and the tropical Lows smaller than 6? <context>: CREATE TABLE table_name_61 (Severe INTEGER, season VARCHAR, tropical_lows VARCHAR)
SELECT MIN(Severe) AS tropical_cyclones FROM table_name_61 WHERE season = "1992–93" AND tropical_lows < 6
46,104
<question>: What is the least amount of tropical lows for the 1993–94 season with less than 11 tropical cyclones <context>: CREATE TABLE table_name_41 (tropical_lows INTEGER, season VARCHAR, tropical_cyclones VARCHAR)
SELECT MIN(tropical_lows) FROM table_name_41 WHERE season = "1993–94" AND tropical_cyclones < 11
46,105
<question>: How many Weeks are on september 8, 1980 and Attendances larger than 55,045? Question 4 <context>: CREATE TABLE table_name_22 (week VARCHAR, date VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_22 WHERE date = "september 8, 1980" AND attendance > 55 OFFSET 045
46,106
<question>: Which Round has a College of stanford? <context>: CREATE TABLE table_name_31 (round VARCHAR, college VARCHAR)
SELECT round FROM table_name_31 WHERE college = "stanford"
46,107
<question>: Which Round has a Pick of 174? <context>: CREATE TABLE table_name_47 (round VARCHAR, pick VARCHAR)
SELECT round FROM table_name_47 WHERE pick = 174
46,108
<question>: Which Position has a Pick of 174? <context>: CREATE TABLE table_name_66 (position VARCHAR, pick VARCHAR)
SELECT position FROM table_name_66 WHERE pick = 174
46,109
<question>: that was held in 1964? <context>: CREATE TABLE table_name_39 (event VARCHAR, year VARCHAR)
SELECT event FROM table_name_39 WHERE year = 1964
46,110
<question>: What is the name of the Event with a venue that was in toronto, canada? <context>: CREATE TABLE table_name_62 (event VARCHAR, venue VARCHAR)
SELECT event FROM table_name_62 WHERE venue = "toronto, canada"
46,111
<question>: What is the Year the competition the british empire and commonwealth games were held? <context>: CREATE TABLE table_name_98 (year INTEGER, competition VARCHAR)
SELECT SUM(year) FROM table_name_98 WHERE competition = "british empire and commonwealth games"
46,112
<question>: What is the position of the commonwealth games? <context>: CREATE TABLE table_name_98 (position VARCHAR, competition VARCHAR)
SELECT position FROM table_name_98 WHERE competition = "commonwealth games"
46,113
<question>: What is the venue with a competition in 1964? <context>: CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR)
SELECT venue FROM table_name_15 WHERE year = 1964
46,114
<question>: Name the date for clay surface and location of santos, brazil <context>: CREATE TABLE table_name_84 (date VARCHAR, surface VARCHAR, location VARCHAR)
SELECT date FROM table_name_84 WHERE surface = "clay" AND location = "santos, brazil"
46,115
<question>: Name the date with outcome of winner and score of 4–6 6–2 7–6 (7–4) <context>: CREATE TABLE table_name_25 (date VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT date FROM table_name_25 WHERE outcome = "winner" AND score = "4–6 6–2 7–6 (7–4)"
46,116
<question>: What's the highest capacity for a position of 5 in 2004? <context>: CREATE TABLE table_name_81 (capacity INTEGER, position_in_2004 VARCHAR)
SELECT MAX(capacity) FROM table_name_81 WHERE position_in_2004 = "5"
46,117
<question>: Which venue was number 9 for 2004? <context>: CREATE TABLE table_name_45 (venue VARCHAR, position_in_2004 VARCHAR)
SELECT venue FROM table_name_45 WHERE position_in_2004 = "9"
46,118
<question>: What city was founded in 1857? <context>: CREATE TABLE table_name_99 (city VARCHAR, founded VARCHAR)
SELECT city FROM table_name_99 WHERE founded = 1857
46,119
<question>: Which Opponent has a Time of 2:31? <context>: CREATE TABLE table_name_42 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_name_42 WHERE time = "2:31"
46,120
<question>: Which Method has a Round of 1, and a Time of 0:28? <context>: CREATE TABLE table_name_98 (method VARCHAR, round VARCHAR, time VARCHAR)
SELECT method FROM table_name_98 WHERE round = 1 AND time = "0:28"
46,121
<question>: Which Time has an Event of call to arms i? <context>: CREATE TABLE table_name_15 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_15 WHERE event = "call to arms i"
46,122
<question>: what team played on april 9 <context>: CREATE TABLE table_name_58 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_58 WHERE date = "april 9"
46,123
<question>: What is the smallest frequency (kHz) that is in the location of Longview? <context>: CREATE TABLE table_name_61 (frequency__khz_ INTEGER, licensed_location VARCHAR)
SELECT MIN(frequency__khz_) FROM table_name_61 WHERE licensed_location = "longview"
46,124
<question>: What is the location with a frequency (kHz) greater than 1370? <context>: CREATE TABLE table_name_44 (licensed_location VARCHAR, frequency__khz_ INTEGER)
SELECT licensed_location FROM table_name_44 WHERE frequency__khz_ > 1370
46,125
<question>: What is the capacity number for Yunost? <context>: CREATE TABLE table_name_27 (capacity VARCHAR, venue VARCHAR)
SELECT COUNT(capacity) FROM table_name_27 WHERE venue = "yunost"
46,126
<question>: What is the total number of first prizes in USD for the Canadian Open? <context>: CREATE TABLE table_name_68 (tournament VARCHAR)
SELECT SUM(1 AS st_prize___) AS $__ FROM table_name_68 WHERE tournament = "canadian open"
46,127
<question>: Which Drawn has a Lost of 19? <context>: CREATE TABLE table_name_61 (drawn VARCHAR, lost VARCHAR)
SELECT drawn FROM table_name_61 WHERE lost = "19"
46,128
<question>: Which Played has a Club of club? <context>: CREATE TABLE table_name_94 (played VARCHAR)
SELECT played FROM table_name_94 WHERE "club" = "club"
46,129
<question>: Which Club has 1 Losing bonus? <context>: CREATE TABLE table_name_18 (club VARCHAR, losing_bonus VARCHAR)
SELECT club FROM table_name_18 WHERE losing_bonus = "1"
46,130
<question>: What is the Losing bonus of 571 Points ? <context>: CREATE TABLE table_name_65 (losing_bonus VARCHAR, points_for VARCHAR)
SELECT losing_bonus FROM table_name_65 WHERE points_for = "571"
46,131
<question>: Which Lost has a Tries for of 75? <context>: CREATE TABLE table_name_78 (lost VARCHAR, tries_for VARCHAR)
SELECT lost FROM table_name_78 WHERE tries_for = "75"
46,132
<question>: Who is the opponent in the final of the match on 19 February 2006? <context>: CREATE TABLE table_name_24 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_24 WHERE date = "19 february 2006"
46,133
<question>: Who is the opponent in the final of the match on 26 March 2006? <context>: CREATE TABLE table_name_49 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_49 WHERE date = "26 march 2006"
46,134
<question>: What is the overall number of the player from Utah with a pick # higher than 7? <context>: CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR, pick__number VARCHAR)
SELECT SUM(overall) FROM table_name_54 WHERE college = "utah" AND pick__number < 7
46,135
<question>: What is the highest round of the player with a pick number lower than 34? <context>: CREATE TABLE table_name_83 (round INTEGER, pick__number INTEGER)
SELECT MAX(round) FROM table_name_83 WHERE pick__number > 34
46,136
<question>: What round did Mitch Davis, with an overall higher than 118, have? <context>: CREATE TABLE table_name_50 (round INTEGER, name VARCHAR, overall VARCHAR)
SELECT SUM(round) FROM table_name_50 WHERE name = "mitch davis" AND overall < 118
46,137
<question>: What is the highest overall of the player from Georgia? <context>: CREATE TABLE table_name_54 (overall INTEGER, college VARCHAR)
SELECT MAX(overall) FROM table_name_54 WHERE college = "georgia"
46,138
<question>: What is the position of the player with an overall of 45? <context>: CREATE TABLE table_name_70 (position VARCHAR, overall VARCHAR)
SELECT position FROM table_name_70 WHERE overall = 45
46,139
<question>: How many wins for team nsu and over 2 points? <context>: CREATE TABLE table_name_54 (wins INTEGER, team VARCHAR, points VARCHAR)
SELECT AVG(wins) FROM table_name_54 WHERE team = "nsu" AND points > 2
46,140
<question>: What is the earliest year associated with under 0 wins? <context>: CREATE TABLE table_name_55 (year INTEGER, wins INTEGER)
SELECT MIN(year) FROM table_name_55 WHERE wins < 0
46,141
<question>: How many wins for team mv agusta, over 10 points, and after 1957? <context>: CREATE TABLE table_name_59 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR)
SELECT SUM(wins) FROM table_name_59 WHERE team = "mv agusta" AND points > 10 AND year > 1957
46,142
<question>: What College/Junior/Club Team (League) has a round of 3? <context>: CREATE TABLE table_name_32 (college_junior_club_team__league_ VARCHAR, round VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_32 WHERE round = 3
46,143
<question>: What player has a round larger than 1 in Austria? <context>: CREATE TABLE table_name_6 (player VARCHAR, round VARCHAR, nationality VARCHAR)
SELECT player FROM table_name_6 WHERE round > 1 AND nationality = "austria"
46,144
<question>: Which player's nationality is from Sweden? <context>: CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR)
SELECT player FROM table_name_83 WHERE nationality = "sweden"
46,145
<question>: What College/Junior/Club Team (League) from Canada has a round smaller than 3? <context>: CREATE TABLE table_name_52 (college_junior_club_team__league_ VARCHAR, nationality VARCHAR, round VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_52 WHERE nationality = "canada" AND round < 3
46,146
<question>: What was the distance in 1997? <context>: CREATE TABLE table_name_71 (distance VARCHAR, year VARCHAR)
SELECT distance FROM table_name_71 WHERE year = 1997
46,147
<question>: Who was the opponents in the final on January 5, 2003, on a hard surface? <context>: CREATE TABLE table_name_19 (opponents_in_the_final VARCHAR, surface VARCHAR, date VARCHAR)
SELECT opponents_in_the_final FROM table_name_19 WHERE surface = "hard" AND date = "january 5, 2003"
46,148
<question>: What was the final score on the February 19, 2012 final? <context>: CREATE TABLE table_name_46 (score_in_the_final VARCHAR, date VARCHAR)
SELECT score_in_the_final FROM table_name_46 WHERE date = "february 19, 2012"
46,149
<question>: Name the least attendance with venue of away on 24 august 2007 <context>: CREATE TABLE table_name_99 (attendance__away_ INTEGER, venue VARCHAR, date VARCHAR)
SELECT MIN(attendance__away_) FROM table_name_99 WHERE venue = "away" AND date = "24 august 2007"
46,150
<question>: Name the average attendance with result of won 2-0 on 2 november 2007 <context>: CREATE TABLE table_name_82 (attendance__away_ INTEGER, result VARCHAR, date VARCHAR)
SELECT AVG(attendance__away_) FROM table_name_82 WHERE result = "won 2-0" AND date = "2 november 2007"
46,151
<question>: What is the uniform number of the player whose last name is Wiltshire? <context>: CREATE TABLE table_name_25 (uni_number INTEGER, surname VARCHAR)
SELECT MIN(uni_number) FROM table_name_25 WHERE surname = "wiltshire"
46,152
<question>: When the rank is larger than 3 with a second quarter of johnson & johnson 156,515.9, what is the fourth quarter? <context>: CREATE TABLE table_name_86 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR)
SELECT fourth_quarter FROM table_name_86 WHERE rank > 3 AND second_quarter = "johnson & johnson 156,515.9"
46,153
<question>: With a rank of 2 what is the second quarter? <context>: CREATE TABLE table_name_69 (second_quarter VARCHAR, rank VARCHAR)
SELECT second_quarter FROM table_name_69 WHERE rank = 2
46,154
<question>: When the third quarter is China Mobile 195,680.4, what is the rank? <context>: CREATE TABLE table_name_45 (rank VARCHAR, third_quarter VARCHAR)
SELECT rank FROM table_name_45 WHERE third_quarter = "china mobile 195,680.4"
46,155
<question>: When the first quarter is procter & gamble 138,013, what is the rank? <context>: CREATE TABLE table_name_15 (rank VARCHAR, first_quarter VARCHAR)
SELECT rank FROM table_name_15 WHERE first_quarter = "procter & gamble 138,013"
46,156
<question>: When the rank is less than 4, and has a second quarter of exxon mobil 341,140.3, what is the fourth quarter? <context>: CREATE TABLE table_name_27 (fourth_quarter VARCHAR, rank VARCHAR, second_quarter VARCHAR)
SELECT fourth_quarter FROM table_name_27 WHERE rank < 4 AND second_quarter = "exxon mobil 341,140.3"
46,157
<question>: What is the Term end that has a Party of united australia and 184 days in office? <context>: CREATE TABLE table_name_74 (term_end VARCHAR, party VARCHAR, term_in_office VARCHAR)
SELECT term_end FROM table_name_74 WHERE party = "united australia" AND term_in_office = "184 days"
46,158
<question>: What is the sum of average values for 23 yards? <context>: CREATE TABLE table_name_5 (average INTEGER, yards VARCHAR)
SELECT SUM(average) FROM table_name_5 WHERE yards = 23
46,159
<question>: What are the most yards for 2 sacks and an average greater than 0? <context>: CREATE TABLE table_name_27 (yards INTEGER, sacks VARCHAR, average VARCHAR)
SELECT MAX(yards) FROM table_name_27 WHERE sacks = 2 AND average > 0
46,160
<question>: What is listed for the Bronze, with the Location of Bangkok, and the Year of 1978? <context>: CREATE TABLE table_name_6 (bronze VARCHAR, location VARCHAR, year VARCHAR)
SELECT bronze FROM table_name_6 WHERE location = "bangkok" AND year = 1978
46,161
<question>: What's listed for the lowest Year that a Silver of Kim Kyung-Ho? <context>: CREATE TABLE table_name_51 (year INTEGER, silver VARCHAR)
SELECT MIN(year) FROM table_name_51 WHERE silver = "kim kyung-ho"
46,162
<question>: What's the Gold that also has Bronze of Kim Sun-Bin? <context>: CREATE TABLE table_name_61 (gold VARCHAR, bronze VARCHAR)
SELECT gold FROM table_name_61 WHERE bronze = "kim sun-bin"
46,163
<question>: What's the Bronze that's also got a Godl of Kim Woo-Jin? <context>: CREATE TABLE table_name_75 (bronze VARCHAR, gold VARCHAR)
SELECT bronze FROM table_name_75 WHERE gold = "kim woo-jin"
46,164
<question>: What is listed as the highest Year that's also got a Bronze of Wataru Haraguchi? <context>: CREATE TABLE table_name_1 (year INTEGER, bronze VARCHAR)
SELECT MAX(year) FROM table_name_1 WHERE bronze = "wataru haraguchi"
46,165
<question>: What was the score when their record was 35–23–15? <context>: CREATE TABLE table_name_58 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_58 WHERE record = "35–23–15"
46,166
<question>: Which home team has a score of 5 – 6? <context>: CREATE TABLE table_name_90 (home VARCHAR, score VARCHAR)
SELECT home FROM table_name_90 WHERE score = "5 – 6"
46,167
<question>: In what county is the school of Merrillville? <context>: CREATE TABLE table_name_17 (county VARCHAR, school VARCHAR)
SELECT county FROM table_name_17 WHERE school = "merrillville"
46,168
<question>: The school of Portage was in what conference previous? <context>: CREATE TABLE table_name_41 (previous_conference VARCHAR, school VARCHAR)
SELECT previous_conference FROM table_name_41 WHERE school = "portage"
46,169
<question>: What is the name of the school that is in Valparaiso? <context>: CREATE TABLE table_name_37 (school VARCHAR, location VARCHAR)
SELECT school FROM table_name_37 WHERE location = "valparaiso"
46,170
<question>: Which FA Cup is the highest one that has a Malaysia Cup of 0, and a Player of ahmad fouzee masuri, and a Total larger than 0? <context>: CREATE TABLE table_name_25 (fa_cup INTEGER, total VARCHAR, malaysia_cup VARCHAR, player VARCHAR)
SELECT MAX(fa_cup) FROM table_name_25 WHERE malaysia_cup = 0 AND player = "ahmad fouzee masuri" AND total > 0
46,171
<question>: How many totals have a Player of ahmad fouzee masuri, and an FA Cup larger than 0? <context>: CREATE TABLE table_name_37 (total VARCHAR, player VARCHAR, fa_cup VARCHAR)
SELECT COUNT(total) FROM table_name_37 WHERE player = "ahmad fouzee masuri" AND fa_cup > 0
46,172
<question>: Which FA Cup has a Player of khairan ezuan razali, and a Total smaller than 0? <context>: CREATE TABLE table_name_62 (fa_cup INTEGER, player VARCHAR, total VARCHAR)
SELECT AVG(fa_cup) FROM table_name_62 WHERE player = "khairan ezuan razali" AND total < 0
46,173
<question>: How many Malaysia Cups have a Total larger than 3, and a Player of ivan yusoff, and a League smaller than 2? <context>: CREATE TABLE table_name_8 (malaysia_cup VARCHAR, league VARCHAR, total VARCHAR, player VARCHAR)
SELECT COUNT(malaysia_cup) FROM table_name_8 WHERE total > 3 AND player = "ivan yusoff" AND league < 2
46,174
<question>: Which FA Cup has a Malaysia Cup larger than 0, and a Total of 8? <context>: CREATE TABLE table_name_44 (fa_cup INTEGER, malaysia_cup VARCHAR, total VARCHAR)
SELECT SUM(fa_cup) FROM table_name_44 WHERE malaysia_cup > 0 AND total = 8
46,175
<question>: Which Year is the highest one that has a Venue of edmonton, canada? <context>: CREATE TABLE table_name_50 (year INTEGER, venue VARCHAR)
SELECT MAX(year) FROM table_name_50 WHERE venue = "edmonton, canada"
46,176
<question>: Which Position has a Competition of world championships, and a Year larger than 1997? <context>: CREATE TABLE table_name_27 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_27 WHERE competition = "world championships" AND year > 1997
46,177
<question>: Which Venue has a Notes of heptathlon, and a Year of 1991? <context>: CREATE TABLE table_name_20 (venue VARCHAR, notes VARCHAR, year VARCHAR)
SELECT venue FROM table_name_20 WHERE notes = "heptathlon" AND year = 1991
46,178
<question>: What days held has noiz as the wrestler? <context>: CREATE TABLE table_name_95 (days_held VARCHAR, wrestler VARCHAR)
SELECT days_held FROM table_name_95 WHERE wrestler = "noiz"
46,179
<question>: What location has tatsuhito takaiwa as the wrestler? <context>: CREATE TABLE table_name_14 (location VARCHAR, wrestler VARCHAR)
SELECT location FROM table_name_14 WHERE wrestler = "tatsuhito takaiwa"
46,180
<question>: What event has 8 as the days held? <context>: CREATE TABLE table_name_33 (event VARCHAR, days_held VARCHAR)
SELECT event FROM table_name_33 WHERE days_held = "8"
46,181
<question>: What event has unknown as the days held.? <context>: CREATE TABLE table_name_98 (event VARCHAR, days_held VARCHAR)
SELECT event FROM table_name_98 WHERE days_held = "unknown"
46,182
<question>: What is the Displacement of the Iveco F1CE3481E Engine? <context>: CREATE TABLE table_name_87 (displacement VARCHAR, engine VARCHAR)
SELECT displacement FROM table_name_87 WHERE engine = "iveco f1ce3481e"
46,183
<question>: What is the Displacement of the 180 Multijet Power/3.0 HDI Model? <context>: CREATE TABLE table_name_68 (displacement VARCHAR, model VARCHAR)
SELECT displacement FROM table_name_68 WHERE model = "180 multijet power/3.0 hdi"
46,184
<question>: What is the Valvetrain of the Diesel Engines Model? <context>: CREATE TABLE table_name_12 (valvetrain VARCHAR, model VARCHAR)
SELECT valvetrain FROM table_name_12 WHERE model = "diesel engines"
46,185
<question>: Year(s) won of 1994 , 1997 has what average total? <context>: CREATE TABLE table_name_6 (total INTEGER, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_6 WHERE year_s__won = "1994 , 1997"
46,186
<question>: Player of corey pavin, and a To par larger than 5 has what average total? <context>: CREATE TABLE table_name_41 (total INTEGER, player VARCHAR, to_par VARCHAR)
SELECT AVG(total) FROM table_name_41 WHERE player = "corey pavin" AND to_par > 5
46,187
<question>: Total smaller than 285, and a To par larger than 1 belongs to what player? <context>: CREATE TABLE table_name_29 (player VARCHAR, total VARCHAR, to_par VARCHAR)
SELECT player FROM table_name_29 WHERE total < 285 AND to_par > 1
46,188
<question>: Total larger than 285, and a Finish of t30 belongs to what player? <context>: CREATE TABLE table_name_83 (player VARCHAR, total VARCHAR, finish VARCHAR)
SELECT player FROM table_name_83 WHERE total > 285 AND finish = "t30"
46,189
<question>: Which player for a team with an 18-20 record had the most rebounds in a game? <context>: CREATE TABLE table_name_38 (high_rebounds VARCHAR, record VARCHAR)
SELECT high_rebounds FROM table_name_38 WHERE record = "18-20"
46,190
<question>: Name the total number of frequency Mhz with class of d and call sign of k201bm and ERP W less than 74 <context>: CREATE TABLE table_name_54 (frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR, call_sign VARCHAR)
SELECT COUNT(frequency_mhz) FROM table_name_54 WHERE class = "d" AND call_sign = "k201bm" AND erp_w < 74
46,191
<question>: Name the least frequency Mhz with call sign of k202ag <context>: CREATE TABLE table_name_24 (frequency_mhz INTEGER, call_sign VARCHAR)
SELECT MIN(frequency_mhz) FROM table_name_24 WHERE call_sign = "k202ag"
46,192
<question>: Name the class with call sign of k220cp <context>: CREATE TABLE table_name_2 (class VARCHAR, call_sign VARCHAR)
SELECT class FROM table_name_2 WHERE call_sign = "k220cp"
46,193
<question>: What is the Winnipeg Jets record? <context>: CREATE TABLE table_name_51 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_51 WHERE opponent = "winnipeg jets"
46,194
<question>: What's the stadium on November 8? <context>: CREATE TABLE table_name_26 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_26 WHERE date = "november 8"
46,195
<question>: Who was the visitor on March 17? <context>: CREATE TABLE table_name_53 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_53 WHERE date = "march 17"
46,196
<question>: What's the score for Toronto Maple Leafs on November 10? <context>: CREATE TABLE table_name_49 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE home = "toronto maple leafs" AND date = "november 10"
46,197
<question>: Who was the visitor on October 31? <context>: CREATE TABLE table_name_75 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_75 WHERE date = "october 31"
46,198
<question>: What is the rank associated with 0 wins and a 350cc class? <context>: CREATE TABLE table_name_42 (rank VARCHAR, wins VARCHAR, class VARCHAR)
SELECT rank FROM table_name_42 WHERE wins = 0 AND class = "350cc"
46,199
<question>: What is the run 2 of the athlete from Australia with a run 1 less than 53.75? <context>: CREATE TABLE table_name_73 (run_2 VARCHAR, country VARCHAR, run_1 VARCHAR)
SELECT run_2 FROM table_name_73 WHERE country = "australia" AND run_1 < 53.75