Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
44,400
<question>: What is the class for the position of lg? <context>: CREATE TABLE table_name_4 (class VARCHAR, position VARCHAR)
SELECT class FROM table_name_4 WHERE position = "lg"
44,401
<question>: What is the highest weight for the Farnley Stakes race? <context>: CREATE TABLE table_name_67 (weight__kg_ INTEGER, race VARCHAR)
SELECT MAX(weight__kg_) FROM table_name_67 WHERE race = "farnley stakes"
44,402
<question>: What time is associated with the event that happened in Tokyo, Japan, ending in a draw, with 3 rounds? <context>: CREATE TABLE table_name_44 (time VARCHAR, res VARCHAR, location VARCHAR, round VARCHAR)
SELECT time FROM table_name_44 WHERE location = "tokyo, japan" AND round = 3 AND res = "draw"
44,403
<question>: Which 2012 has a 2007 of 0 / 4? <context>: CREATE TABLE table_name_8 (Id VARCHAR)
SELECT 2012 FROM table_name_8 WHERE 2007 = "0 / 4"
44,404
<question>: Which 2011 has a Career Win-Loss of 7–10? <context>: CREATE TABLE table_name_65 (career_win_loss VARCHAR)
SELECT 2011 FROM table_name_65 WHERE career_win_loss = "7–10"
44,405
<question>: Which 1998 has a 2002 of 2–4? <context>: CREATE TABLE table_name_65 (Id VARCHAR)
SELECT 1998 FROM table_name_65 WHERE 2002 = "2–4"
44,406
<question>: Which 2002 has a 2008 of 3–3? <context>: CREATE TABLE table_name_79 (Id VARCHAR)
SELECT 2002 FROM table_name_79 WHERE 2008 = "3–3"
44,407
<question>: Which 2003 has a 2012 of 1r, and a 2008 of 1r? <context>: CREATE TABLE table_name_42 (Id VARCHAR)
SELECT 2003 FROM table_name_42 WHERE 2012 = "1r" AND 2008 = "1r"
44,408
<question>: What club is robert gallery a part of <context>: CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR)
SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
44,409
<question>: How many attendance numbers had more than 15 games, and sellouts of more than 8 in the 2011-12 season? <context>: CREATE TABLE table_name_34 (attendance VARCHAR, season VARCHAR, games VARCHAR, sellouts VARCHAR)
SELECT COUNT(attendance) FROM table_name_34 WHERE games > 15 AND sellouts > 8 AND season = "2011-12"
44,410
<question>: What's the mean attendance number when the record is 12-4 and the average is less than 10,027? <context>: CREATE TABLE table_name_24 (attendance INTEGER, record VARCHAR, average VARCHAR)
SELECT AVG(attendance) FROM table_name_24 WHERE record = "12-4" AND average < 10 OFFSET 027
44,411
<question>: What is the full amount of averages when the sellouts are less than 14, the season is 2011-12, and attendance is less than 162,474? <context>: CREATE TABLE table_name_73 (average VARCHAR, attendance VARCHAR, sellouts VARCHAR, season VARCHAR)
SELECT COUNT(average) FROM table_name_73 WHERE sellouts < 14 AND season = "2011-12" AND attendance < 162 OFFSET 474
44,412
<question>: What medal was awarded in the men's freestyle 52 kg? <context>: CREATE TABLE table_name_69 (medal VARCHAR, event VARCHAR)
SELECT medal FROM table_name_69 WHERE event = "men's freestyle 52 kg"
44,413
<question>: Events smaller than 1 had what highest cuts made? <context>: CREATE TABLE table_name_65 (cuts_made INTEGER, events INTEGER)
SELECT MAX(cuts_made) FROM table_name_65 WHERE events < 1
44,414
<question>: What position was played with a Difference of - 5, and a Played larger than 14? <context>: CREATE TABLE table_name_48 (position INTEGER, difference VARCHAR, played VARCHAR)
SELECT AVG(position) FROM table_name_48 WHERE difference = "- 5" AND played > 14
44,415
<question>: How many games lost associated with under 14 played? <context>: CREATE TABLE table_name_66 (lost VARCHAR, played INTEGER)
SELECT COUNT(lost) FROM table_name_66 WHERE played < 14
44,416
<question>: How many games against for team guarani with under 3 draws? <context>: CREATE TABLE table_name_84 (against INTEGER, team VARCHAR, drawn VARCHAR)
SELECT SUM(against) FROM table_name_84 WHERE team = "guarani" AND drawn < 3
44,417
<question>: What Congress had less than 23 cosponsors and had June 30, 2005 as the date of introduction of the bill? <context>: CREATE TABLE table_name_92 (congress VARCHAR, _number_of_cosponsors VARCHAR, date_introduced VARCHAR)
SELECT congress FROM table_name_92 WHERE _number_of_cosponsors < 23 AND date_introduced = "june 30, 2005"
44,418
<question>: Who sponsored the bill introduced on June 9, 2011? <context>: CREATE TABLE table_name_77 (sponsor_s_ VARCHAR, date_introduced VARCHAR)
SELECT sponsor_s_ FROM table_name_77 WHERE date_introduced = "june 9, 2011"
44,419
<question>: Who sponsored the bill that was introduced on June 2, 2009? <context>: CREATE TABLE table_name_55 (sponsor_s_ VARCHAR, date_introduced VARCHAR)
SELECT sponsor_s_ FROM table_name_55 WHERE date_introduced = "june 2, 2009"
44,420
<question>: What is the Outcome of the Melbourne Tournament? <context>: CREATE TABLE table_name_48 (outcome VARCHAR, tournament VARCHAR)
SELECT outcome FROM table_name_48 WHERE tournament = "melbourne"
44,421
<question>: In what Tournament was Janet Young a Partner? <context>: CREATE TABLE table_name_18 (tournament VARCHAR, partner VARCHAR)
SELECT tournament FROM table_name_18 WHERE partner = "janet young"
44,422
<question>: What was the Outcome of the match with a Score of w/o? <context>: CREATE TABLE table_name_57 (outcome VARCHAR, score VARCHAR)
SELECT outcome FROM table_name_57 WHERE score = "w/o"
44,423
<question>: Which school or club team has a pick of 139? <context>: CREATE TABLE table_name_60 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_60 WHERE pick = 139
44,424
<question>: What is the pick number for the player playing tackle position, and a round less than 15? <context>: CREATE TABLE table_name_97 (pick INTEGER, position VARCHAR, round VARCHAR)
SELECT SUM(pick) FROM table_name_97 WHERE position = "tackle" AND round < 15
44,425
<question>: Which school of club team has a pick of 46? <context>: CREATE TABLE table_name_83 (school_club_team VARCHAR, pick VARCHAR)
SELECT school_club_team FROM table_name_83 WHERE pick = 46
44,426
<question>: Who got 59.486 for Qual 2? <context>: CREATE TABLE table_name_15 (name VARCHAR, qual_2 VARCHAR)
SELECT name FROM table_name_15 WHERE qual_2 = "59.486"
44,427
<question>: Who got 59.578 for Qual 1? <context>: CREATE TABLE table_name_79 (name VARCHAR, qual_1 VARCHAR)
SELECT name FROM table_name_79 WHERE qual_1 = "59.578"
44,428
<question>: What team was Andrew Ranger in? <context>: CREATE TABLE table_name_78 (team VARCHAR, name VARCHAR)
SELECT team FROM table_name_78 WHERE name = "andrew ranger"
44,429
<question>: What team has 59.372 for qual 1? <context>: CREATE TABLE table_name_37 (team VARCHAR, qual_1 VARCHAR)
SELECT team FROM table_name_37 WHERE qual_1 = "59.372"
44,430
<question>: What did Alex Tagliani get for Qual 1? <context>: CREATE TABLE table_name_93 (qual_1 VARCHAR, name VARCHAR)
SELECT qual_1 FROM table_name_93 WHERE name = "alex tagliani"
44,431
<question>: What was the result of the game on November 7, 1999? <context>: CREATE TABLE table_name_9 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_9 WHERE date = "november 7, 1999"
44,432
<question>: When was the game before week 15 with the result of bye? <context>: CREATE TABLE table_name_26 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_26 WHERE week < 15 AND result = "bye"
44,433
<question>: Who is the writer of Wallace & Gromit: A Close Shave, a short film from before 2008? <context>: CREATE TABLE table_name_15 (writer VARCHAR, title VARCHAR, year VARCHAR, notes VARCHAR)
SELECT writer FROM table_name_15 WHERE year < 2008 AND notes = "short film" AND title = "wallace & gromit: a close shave"
44,434
<question>: What notes did the creature comforts film have? <context>: CREATE TABLE table_name_31 (notes VARCHAR, title VARCHAR)
SELECT notes FROM table_name_31 WHERE title = "creature comforts"
44,435
<question>: Who is the director of Wallace & Gromit: The Curse of the Were-Rabbit? <context>: CREATE TABLE table_name_99 (director VARCHAR, title VARCHAR)
SELECT director FROM table_name_99 WHERE title = "wallace & gromit: the curse of the were-rabbit"
44,436
<question>: What is the earliest year of Wallace & Gromit: The Curse of the Were-Rabbit? <context>: CREATE TABLE table_name_13 (year INTEGER, title VARCHAR)
SELECT MIN(year) FROM table_name_13 WHERE title = "wallace & gromit: the curse of the were-rabbit"
44,437
<question>: what was the length of the game on may 19 <context>: CREATE TABLE table_name_10 (length VARCHAR, date VARCHAR)
SELECT length FROM table_name_10 WHERE date = "may 19"
44,438
<question>: March of 26 has what lowest game? <context>: CREATE TABLE table_name_24 (game INTEGER, march VARCHAR)
SELECT MIN(game) FROM table_name_24 WHERE march = 26
44,439
<question>: March of 29 involves what highest scoring game? <context>: CREATE TABLE table_name_40 (game INTEGER, march VARCHAR)
SELECT MAX(game) FROM table_name_40 WHERE march = 29
44,440
<question>: Game larger than 76, and a March larger than 26 involves what score? <context>: CREATE TABLE table_name_60 (score VARCHAR, game VARCHAR, march VARCHAR)
SELECT score FROM table_name_60 WHERE game > 76 AND march > 26
44,441
<question>: What was the time when the laps were smaller than 66 and the grid was 15? <context>: CREATE TABLE table_name_62 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_62 WHERE laps < 66 AND grid = 15
44,442
<question>: What was the grid for anthony davidson when the laps were less than 8? <context>: CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_86 WHERE driver = "anthony davidson" AND laps < 8
44,443
<question>: What team did carlos cardus drive for in 1983 when he got less than 21 points? <context>: CREATE TABLE table_name_69 (team VARCHAR, points VARCHAR, year VARCHAR)
SELECT team FROM table_name_69 WHERE points < 21 AND year = 1983
44,444
<question>: What is the sum of the points when Carlos drove for repsol honda in 8th place? <context>: CREATE TABLE table_name_93 (points INTEGER, team VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_93 WHERE team = "repsol honda" AND rank = "8th"
44,445
<question>: What is the average points won when Carlos had 0 wins? <context>: CREATE TABLE table_name_5 (points INTEGER, wins INTEGER)
SELECT AVG(points) FROM table_name_5 WHERE wins < 0
44,446
<question>: What is the highest year that Carlos drove for repsol honda and had less than 4 wins and less than 162 points? <context>: CREATE TABLE table_name_56 (year INTEGER, points VARCHAR, team VARCHAR, wins VARCHAR)
SELECT MAX(year) FROM table_name_56 WHERE team = "repsol honda" AND wins < 4 AND points < 162
44,447
<question>: What is the total number of goals from 24 tries and 96 or greater points? <context>: CREATE TABLE table_name_46 (goals INTEGER, tries VARCHAR, points VARCHAR)
SELECT SUM(goals) FROM table_name_46 WHERE tries = 24 AND points > 96
44,448
<question>: What year has tries less than 24 and 0 points? <context>: CREATE TABLE table_name_38 (year VARCHAR, tries VARCHAR, points VARCHAR)
SELECT year FROM table_name_38 WHERE tries < 24 AND points = 0
44,449
<question>: What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks? <context>: CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR)
SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks"
44,450
<question>: What Game has a Location of Philadelphia Spectrum and a Date of April 1? <context>: CREATE TABLE table_name_80 (game VARCHAR, location VARCHAR, date VARCHAR)
SELECT game FROM table_name_80 WHERE location = "philadelphia spectrum" AND date = "april 1"
44,451
<question>: What is the segment for Netflix episode S08E04? <context>: CREATE TABLE table_name_94 (segment_a VARCHAR, netflix VARCHAR)
SELECT segment_a FROM table_name_94 WHERE netflix = "s08e04"
44,452
<question>: What is the Netflix episode for series episode 15-01? <context>: CREATE TABLE table_name_64 (netflix VARCHAR, series_ep VARCHAR)
SELECT netflix FROM table_name_64 WHERE series_ep = "15-01"
44,453
<question>: What is the segment A for the episode with Children's Ride-on Cars for segment D? <context>: CREATE TABLE table_name_10 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_name_10 WHERE segment_d = "children's ride-on cars"
44,454
<question>: What is the earliest year with fewer than 5 wins and 89 points? <context>: CREATE TABLE table_name_12 (year INTEGER, wins VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_12 WHERE wins < 5 AND points = 89
44,455
<question>: When is the most recent year with more than 27 points and more than 5 wins? <context>: CREATE TABLE table_name_69 (year INTEGER, points VARCHAR, wins VARCHAR)
SELECT MAX(year) FROM table_name_69 WHERE points > 27 AND wins > 5
44,456
<question>: What are the sum of points in 1989 with 0 wins? <context>: CREATE TABLE table_name_85 (points INTEGER, wins VARCHAR, year VARCHAR)
SELECT SUM(points) FROM table_name_85 WHERE wins = 0 AND year = 1989
44,457
<question>: Which class has fewer than 89 points and the Honda team later than 1987? <context>: CREATE TABLE table_name_48 (class VARCHAR, year VARCHAR, points VARCHAR, team VARCHAR)
SELECT class FROM table_name_48 WHERE points < 89 AND team = "honda" AND year > 1987
44,458
<question>: How many points are there later than 1992? <context>: CREATE TABLE table_name_12 (points VARCHAR, year INTEGER)
SELECT COUNT(points) FROM table_name_12 WHERE year > 1992
44,459
<question>: Where was the event on June 10? <context>: CREATE TABLE table_name_12 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_12 WHERE date = "june 10"
44,460
<question>: What event was in New Orleans, Louisiana, USA? <context>: CREATE TABLE table_name_55 (event VARCHAR, location VARCHAR)
SELECT event FROM table_name_55 WHERE location = "new orleans, louisiana, usa"
44,461
<question>: On September 10 during Strikeforce: Heavyweight Grand Prix Semifinals, what was the PPV buyrate? <context>: CREATE TABLE table_name_77 (ppv_buyrate VARCHAR, date VARCHAR, event VARCHAR)
SELECT ppv_buyrate FROM table_name_77 WHERE date = "september 10" AND event = "strikeforce: heavyweight grand prix semifinals"
44,462
<question>: How many points are there on november 7? <context>: CREATE TABLE table_name_94 (points INTEGER, november VARCHAR)
SELECT MAX(points) FROM table_name_94 WHERE november = 7
44,463
<question>: What was the score in the game where the Blazers were the home team? <context>: CREATE TABLE table_name_95 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_95 WHERE home = "blazers"
44,464
<question>: How many people attended the game that had the Clippers as visiting team? <context>: CREATE TABLE table_name_47 (attendance VARCHAR, visitor VARCHAR)
SELECT attendance FROM table_name_47 WHERE visitor = "clippers"
44,465
<question>: Which team has a car # before 99, a Toyota, and is driven by Mike Skinner? <context>: CREATE TABLE table_name_1 (team VARCHAR, driver VARCHAR, car__number VARCHAR, make VARCHAR)
SELECT team FROM table_name_1 WHERE car__number < 99 AND make = "toyota" AND driver = "mike skinner"
44,466
<question>: What is the lowest position for driver Kyle Busch? <context>: CREATE TABLE table_name_94 (pos INTEGER, driver VARCHAR)
SELECT MIN(pos) FROM table_name_94 WHERE driver = "kyle busch"
44,467
<question>: Who is the team of the Chevrolet, and has a position less than 7, for car # 88? <context>: CREATE TABLE table_name_90 (team VARCHAR, car__number VARCHAR, make VARCHAR, pos VARCHAR)
SELECT team FROM table_name_90 WHERE make = "chevrolet" AND pos < 7 AND car__number = 88
44,468
<question>: Which Film has a Result of nominated, and a Year of 2001? <context>: CREATE TABLE table_name_67 (film VARCHAR, result VARCHAR, year VARCHAR)
SELECT film FROM table_name_67 WHERE result = "nominated" AND year = 2001
44,469
<question>: Which Award has a Group of césar awards, and a Result of nominated, and a Year larger than 2001, and a Film of 8 women (8 femmes)? <context>: CREATE TABLE table_name_39 (award VARCHAR, film VARCHAR, year VARCHAR, group VARCHAR, result VARCHAR)
SELECT award FROM table_name_39 WHERE group = "césar awards" AND result = "nominated" AND year > 2001 AND film = "8 women (8 femmes)"
44,470
<question>: Which Year has a Group of césar awards, and a Result of nominated, and an Award of the best actress, and a Film of 8 women (8 femmes)? <context>: CREATE TABLE table_name_41 (year INTEGER, film VARCHAR, award VARCHAR, group VARCHAR, result VARCHAR)
SELECT AVG(year) FROM table_name_41 WHERE group = "césar awards" AND result = "nominated" AND award = "best actress" AND film = "8 women (8 femmes)"
44,471
<question>: Which Award has a Result of nominated, and a Year of 2003? <context>: CREATE TABLE table_name_85 (award VARCHAR, result VARCHAR, year VARCHAR)
SELECT award FROM table_name_85 WHERE result = "nominated" AND year = 2003
44,472
<question>: Which Result has a Year larger than 2003, and an Award of best supporting actress? <context>: CREATE TABLE table_name_32 (result VARCHAR, year VARCHAR, award VARCHAR)
SELECT result FROM table_name_32 WHERE year > 2003 AND award = "best supporting actress"
44,473
<question>: Name the total number of valid poll with seats more than 4 and candidates more than 9 <context>: CREATE TABLE table_name_67 (valid_poll VARCHAR, seats VARCHAR, candidates VARCHAR)
SELECT COUNT(valid_poll) FROM table_name_67 WHERE seats > 4 AND candidates > 9
44,474
<question>: Name the least valid poll for munster <context>: CREATE TABLE table_name_50 (valid_poll INTEGER, constituency VARCHAR)
SELECT MIN(valid_poll) FROM table_name_50 WHERE constituency = "munster"
44,475
<question>: Name the average valid poll for seats less than 3 <context>: CREATE TABLE table_name_45 (valid_poll INTEGER, seats INTEGER)
SELECT AVG(valid_poll) FROM table_name_45 WHERE seats < 3
44,476
<question>: Which Label has a Region of canada? <context>: CREATE TABLE table_name_12 (label VARCHAR, region VARCHAR)
SELECT label FROM table_name_12 WHERE region = "canada"
44,477
<question>: Which Date has a Catalog of 887 195-2, and a Format of cd maxi? <context>: CREATE TABLE table_name_63 (date VARCHAR, catalog VARCHAR, format VARCHAR)
SELECT date FROM table_name_63 WHERE catalog = "887 195-2" AND format = "cd maxi"
44,478
<question>: Which Date has a Region of france? <context>: CREATE TABLE table_name_90 (date VARCHAR, region VARCHAR)
SELECT date FROM table_name_90 WHERE region = "france"
44,479
<question>: Which Time has an Opponent of shamil abdurahimov? <context>: CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR)
SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov"
44,480
<question>: Which Record has an Event of cage rage 23? <context>: CREATE TABLE table_name_35 (record VARCHAR, event VARCHAR)
SELECT record FROM table_name_35 WHERE event = "cage rage 23"
44,481
<question>: What was the average date with a record of 30-31-9 in a game over 70? <context>: CREATE TABLE table_name_29 (date INTEGER, record VARCHAR, game VARCHAR)
SELECT AVG(date) FROM table_name_29 WHERE record = "30-31-9" AND game > 70
44,482
<question>: What is the latest date at Los Angeles with a game less than 62? <context>: CREATE TABLE table_name_88 (date INTEGER, location_attendance VARCHAR, game VARCHAR)
SELECT MAX(date) FROM table_name_88 WHERE location_attendance = "los angeles" AND game < 62
44,483
<question>: What is the latest date for a game over 69 with a St. Louis Blues opponent? <context>: CREATE TABLE table_name_49 (date INTEGER, game VARCHAR, opponent VARCHAR)
SELECT MAX(date) FROM table_name_49 WHERE game > 69 AND opponent = "st. louis blues"
44,484
<question>: What is the highest game with Oakland Seals opponent and a record of 27-30-6 on a date more than 7? <context>: CREATE TABLE table_name_26 (game INTEGER, date VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT MAX(game) FROM table_name_26 WHERE opponent = "oakland seals" AND record = "27-30-6" AND date > 7
44,485
<question>: What is the total attendance for the date of october 5? <context>: CREATE TABLE table_name_3 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_3 WHERE date = "october 5"
44,486
<question>: What record has September 21 as the date? <context>: CREATE TABLE table_name_59 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_59 WHERE date = "september 21"
44,487
<question>: What was the score of the match on December 19, 2009? <context>: CREATE TABLE table_name_63 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_63 WHERE date = "december 19, 2009"
44,488
<question>: What's the highest game against the New York Rangers with more than 55 points? <context>: CREATE TABLE table_name_16 (game INTEGER, opponent VARCHAR, points VARCHAR)
SELECT MAX(game) FROM table_name_16 WHERE opponent = "new york rangers" AND points > 55
44,489
<question>: What's the record for a game past 44 against the Dallas Stars with more than 54 points? <context>: CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR, points VARCHAR, game VARCHAR)
SELECT record FROM table_name_25 WHERE points > 54 AND game > 44 AND opponent = "dallas stars"
44,490
<question>: What is the latest Fiscal Year with Revenues of $4.3 billion, and more than 85,335 employees? <context>: CREATE TABLE table_name_95 (fiscal_year INTEGER, revenues VARCHAR, employees VARCHAR)
SELECT MAX(fiscal_year) FROM table_name_95 WHERE revenues = "$4.3 billion" AND employees > 85 OFFSET 335
44,491
<question>: What is the average Fiscal Year of the firm Headquartered in noida, with less than 85,335 employees? <context>: CREATE TABLE table_name_55 (fiscal_year INTEGER, headquarters VARCHAR, employees VARCHAR)
SELECT AVG(fiscal_year) FROM table_name_55 WHERE headquarters = "noida" AND employees < 85 OFFSET 335
44,492
<question>: What are the Points after 1991? <context>: CREATE TABLE table_name_49 (points VARCHAR, year INTEGER)
SELECT COUNT(points) FROM table_name_49 WHERE year > 1991
44,493
<question>: What Class has 36 Points? <context>: CREATE TABLE table_name_68 (class VARCHAR, points VARCHAR)
SELECT class FROM table_name_68 WHERE points = 36
44,494
<question>: What is the Class after 1986? <context>: CREATE TABLE table_name_13 (class VARCHAR, year INTEGER)
SELECT class FROM table_name_13 WHERE year > 1986
44,495
<question>: How many attendances had the Detroit Lions as opponents? <context>: CREATE TABLE table_name_11 (attendance INTEGER, opponent VARCHAR)
SELECT SUM(attendance) FROM table_name_11 WHERE opponent = "detroit lions"
44,496
<question>: Which nationality's distance was 500m before 2012, when the record was 1:37.071s? <context>: CREATE TABLE table_name_26 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)
SELECT nationality FROM table_name_26 WHERE distance = "500m" AND year < 2012 AND record = "1:37.071s"
44,497
<question>: Which location's year was 2001 when the record was 3:52.983s? <context>: CREATE TABLE table_name_33 (location VARCHAR, year VARCHAR, record VARCHAR)
SELECT location FROM table_name_33 WHERE year = 2001 AND record = "3:52.983s"
44,498
<question>: Which nationality's distance was 200m and had a year more recent than 1994 when the record was 33.778s? <context>: CREATE TABLE table_name_10 (nationality VARCHAR, record VARCHAR, distance VARCHAR, year VARCHAR)
SELECT nationality FROM table_name_10 WHERE distance = "200m" AND year > 1994 AND record = "33.778s"
44,499
<question>: How many Total medals for the team with a Rank of 8, 1 Bronze and more than 1 Silver? <context>: CREATE TABLE table_name_71 (total INTEGER, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT MIN(total) FROM table_name_71 WHERE bronze = 1 AND rank = "8" AND silver > 1