text
stringlengths
114
1.06k
### question: What opponent has 3-2 as the score, and anderson (2-6) as a loss? ### answer: SELECT opponent FROM table_name_6 WHERE score = "3-2" AND loss = "anderson (2-6)" ### context: CREATE TABLE table_name_6 (opponent VARCHAR, score VARCHAR, loss VARCHAR)
### question: What score has an attendance less than 10,553? ### answer: SELECT score FROM table_name_62 WHERE attendance < 10 OFFSET 553 ### context: CREATE TABLE table_name_62 (score VARCHAR, attendance INTEGER)
### question: What is the highest episode of Wood Flutes segment c? ### answer: SELECT MAX(episode) FROM table_name_65 WHERE segment_c = "wood flutes" ### context: CREATE TABLE table_name_65 (episode INTEGER, segment_c VARCHAR)
### question: What is Segment D of 20-08 series Ep.? ### answer: SELECT segment_d FROM table_name_89 WHERE series_ep = "20-08" ### context: CREATE TABLE table_name_89 (segment_d VARCHAR, series_ep VARCHAR)
### question: What year did they get 4 points with Suzuki? ### answer: SELECT AVG(year) FROM table_name_97 WHERE team = "suzuki" AND points = 4 ### context: CREATE TABLE table_name_97 (year INTEGER, team VARCHAR, points VARCHAR)
### question: What was the last year that they had less than 16 points in class 500cc? ### answer: SELECT MAX(year) FROM table_name_11 WHERE points < 16 AND class = "500cc" ### context: CREATE TABLE table_name_11 (year INTEGER, points VARCHAR, class VARCHAR)
### question: Which party had an incumbent of W. Jasper Talbert? ### answer: SELECT party FROM table_name_70 WHERE incumbent = "w. jasper talbert" ### context: CREATE TABLE table_name_70 (party VARCHAR, incumbent VARCHAR)
### question: which team has a record of 13-18? ### answer: SELECT opponent FROM table_name_42 WHERE record = "13-18" ### context: CREATE TABLE table_name_42 (opponent VARCHAR, record VARCHAR)
### question: What was the record for May 26? ### answer: SELECT record FROM table_name_64 WHERE date = "may 26" ### context: CREATE TABLE table_name_64 (record VARCHAR, date VARCHAR)
### question: What was the loss details for the team with an attendance of 15,298? ### answer: SELECT loss FROM table_name_65 WHERE attendance = "15,298" ### context: CREATE TABLE table_name_65 (loss VARCHAR, attendance VARCHAR)
### question: What city has march 30 as the date? ### answer: SELECT city FROM table_name_82 WHERE date = "march 30" ### context: CREATE TABLE table_name_82 (city VARCHAR, date VARCHAR)
### question: What opponent has april 23 as the date? ### answer: SELECT opponent FROM table_name_81 WHERE date = "april 23" ### context: CREATE TABLE table_name_81 (opponent VARCHAR, date VARCHAR)
### question: What opponent has euro '84 qualifying as the type and split as the city? ### answer: SELECT opponent FROM table_name_54 WHERE type_of_game = "euro '84 qualifying" AND city = "split" ### context: CREATE TABLE table_name_54 (opponent VARCHAR, type_of_game VARCHAR, city VARCHAR)
### question: What results has euro '84 qualifying as the type of game and norway as the opponent? ### answer: SELECT results¹ FROM table_name_90 WHERE type_of_game = "euro '84 qualifying" AND opponent = "norway" ### context: CREATE TABLE table_name_90 (results¹ VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
### question: What game type has 2:1 as the results? ### answer: SELECT type_of_game FROM table_name_91 WHERE results¹ = "2:1" ### context: CREATE TABLE table_name_91 (type_of_game VARCHAR, results¹ VARCHAR)
### question: What date has friendly as the type of game, france as an opponent, and paris, france as the city? ### answer: SELECT date FROM table_name_92 WHERE type_of_game = "friendly" AND opponent = "france" AND city = "paris, france" ### context: CREATE TABLE table_name_92 (date VARCHAR, city VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
### question: What is the date of the Mosport Park circuit? ### answer: SELECT date FROM table_name_34 WHERE circuit = "mosport park" ### context: CREATE TABLE table_name_34 (date VARCHAR, circuit VARCHAR)
### question: What is the length of the Laguna Seca Raceway circuit with a class of gtu? ### answer: SELECT length FROM table_name_94 WHERE circuit = "laguna seca raceway" AND class = "gtu" ### context: CREATE TABLE table_name_94 (length VARCHAR, circuit VARCHAR, class VARCHAR)
### question: What is the class of the Charlotte Camel gt 500 race? ### answer: SELECT class FROM table_name_64 WHERE race = "charlotte camel gt 500" ### context: CREATE TABLE table_name_64 (class VARCHAR, race VARCHAR)
### question: What is the length of the race on August 15? ### answer: SELECT length FROM table_name_23 WHERE date = "august 15" ### context: CREATE TABLE table_name_23 (length VARCHAR, date VARCHAR)
### question: Where is Exxon Mobil, an oil and gas corporation, headquartered? ### answer: SELECT headquarters FROM table_name_49 WHERE primary_industry = "oil and gas" AND name = "exxon mobil" ### context: CREATE TABLE table_name_49 (headquarters VARCHAR, primary_industry VARCHAR, name VARCHAR)
### question: In what Tournament was laura Gildemeister the Opponent? ### answer: SELECT tournament FROM table_name_50 WHERE opponent = "laura gildemeister" ### context: CREATE TABLE table_name_50 (tournament VARCHAR, opponent VARCHAR)
### question: Date of january 11, 1998 has what surface? ### answer: SELECT surface FROM table_name_55 WHERE date = "january 11, 1998" ### context: CREATE TABLE table_name_55 (surface VARCHAR, date VARCHAR)
### question: Score of 4–6, 6–4, 6–4 included which tournament? ### answer: SELECT tournament FROM table_name_57 WHERE score = "4–6, 6–4, 6–4" ### context: CREATE TABLE table_name_57 (tournament VARCHAR, score VARCHAR)
### question: Final that has a Date of january 10, 2004 had what opponent? ### answer: SELECT opponent_in_the_final FROM table_name_23 WHERE date = "january 10, 2004" ### context: CREATE TABLE table_name_23 (opponent_in_the_final VARCHAR, date VARCHAR)
### question: Tournament of tokyo, japan, and a Score of 4–6, 6–4, 6–4 had which date attached? ### answer: SELECT date FROM table_name_91 WHERE tournament = "tokyo, japan" AND score = "4–6, 6–4, 6–4" ### context: CREATE TABLE table_name_91 (date VARCHAR, tournament VARCHAR, score VARCHAR)
### question: Score of 3–6, 7–5, 6–4 included what date? ### answer: SELECT date FROM table_name_63 WHERE score = "3–6, 7–5, 6–4" ### context: CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR)
### question: What are the fewest number of podiums associated with a Series of formula renault 2000 brazil, and under 1 pole? ### answer: SELECT MIN(podiums) FROM table_name_23 WHERE series = "formula renault 2000 brazil" AND poles < 1 ### context: CREATE TABLE table_name_23 (podiums INTEGER, series VARCHAR, poles VARCHAR)
### question: What position has over 0 wins and under 3 podiums? ### answer: SELECT position FROM table_name_16 WHERE wins > 0 AND podiums < 3 ### context: CREATE TABLE table_name_16 (position VARCHAR, wins VARCHAR, podiums VARCHAR)
### question: How many wins are associated with 20 points and over 1 podium? ### answer: SELECT SUM(wins) FROM table_name_12 WHERE points = 20 AND podiums > 1 ### context: CREATE TABLE table_name_12 (wins INTEGER, points VARCHAR, podiums VARCHAR)
### question: What is the largest number of households with median family income of $52,106 with less than 21,403 in population? ### answer: SELECT MAX(number_of_households) FROM table_name_88 WHERE median_family_income = "$52,106" AND population < 21 OFFSET 403 ### context: CREATE TABLE table_name_88 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)
### question: What is the most households with a median household income of $54,086 with less than 231,236 in population? ### answer: SELECT MAX(number_of_households) FROM table_name_2 WHERE median_household_income = "$54,086" AND population < 231 OFFSET 236 ### context: CREATE TABLE table_name_2 (number_of_households INTEGER, median_household_income VARCHAR, population VARCHAR)
### question: Which country has a $46,426 median family income? ### answer: SELECT county FROM table_name_34 WHERE median_family_income = "$46,426" ### context: CREATE TABLE table_name_34 (county VARCHAR, median_family_income VARCHAR)
### question: What is the average grid with a number of laps smaller than 8? ### answer: SELECT AVG(grid) FROM table_name_27 WHERE laps < 8 ### context: CREATE TABLE table_name_27 (grid INTEGER, laps INTEGER)
### question: What is the lowest grid with rider casey stoner and laps that are smaller than 27? ### answer: SELECT MIN(grid) FROM table_name_96 WHERE rider = "casey stoner" AND laps < 27 ### context: CREATE TABLE table_name_96 (grid INTEGER, rider VARCHAR, laps VARCHAR)
### question: What is the total grid number with laps that are larger than 27? ### answer: SELECT COUNT(grid) FROM table_name_17 WHERE laps > 27 ### context: CREATE TABLE table_name_17 (grid VARCHAR, laps INTEGER)
### question: What is the lowest number of laps with a time/retired of +38.426? ### answer: SELECT MIN(laps) FROM table_name_62 WHERE time_retired = "+38.426" ### context: CREATE TABLE table_name_62 (laps INTEGER, time_retired VARCHAR)
### question: What is the sum of laps that has a time/retired that is +19.475? ### answer: SELECT SUM(laps) FROM table_name_6 WHERE time_retired = "+19.475" ### context: CREATE TABLE table_name_6 (laps INTEGER, time_retired VARCHAR)
### question: What player is from canterbury (ushs)? ### answer: SELECT player FROM table_name_67 WHERE college_junior_club_team = "canterbury (ushs)" ### context: CREATE TABLE table_name_67 (player VARCHAR, college_junior_club_team VARCHAR)
### question: Which Opponent has a Game of 33? ### answer: SELECT opponent FROM table_name_10 WHERE game = 33 ### context: CREATE TABLE table_name_10 (opponent VARCHAR, game VARCHAR)
### question: What's the Score that's got a listing of December that larger than 8 and Record of 25-8-3? ### answer: SELECT score FROM table_name_14 WHERE december > 8 AND record = "25-8-3" ### context: CREATE TABLE table_name_14 (score VARCHAR, december VARCHAR, record VARCHAR)
### question: What is the total number of earnings for golfers who have 28 events and more than 2 wins? ### answer: SELECT COUNT(earnings___) AS $__ FROM table_name_94 WHERE events = 28 AND wins > 2 ### context: CREATE TABLE table_name_94 (earnings___ VARCHAR, events VARCHAR, wins VARCHAR)
### question: On what Date was The Open Championship in Japan? ### answer: SELECT date FROM table_name_99 WHERE major = "the open championship" AND country = "japan" ### context: CREATE TABLE table_name_99 (date VARCHAR, major VARCHAR, country VARCHAR)
### question: What was Tom Weiskopf's Finish? ### answer: SELECT finish FROM table_name_54 WHERE player = "tom weiskopf" ### context: CREATE TABLE table_name_54 (finish VARCHAR, player VARCHAR)
### question: Which Laps have Points of 29? ### answer: SELECT laps FROM table_name_23 WHERE points = 29 ### context: CREATE TABLE table_name_23 (laps VARCHAR, points VARCHAR)
### question: Which Grid has a Driver of cristiano da matta, and Points smaller than 33? ### answer: SELECT SUM(grid) FROM table_name_98 WHERE driver = "cristiano da matta" AND points < 33 ### context: CREATE TABLE table_name_98 (grid INTEGER, driver VARCHAR, points VARCHAR)
### question: Which Team has Laps smaller than 105, and a Grid smaller than 18, and Points of 11? ### answer: SELECT team FROM table_name_16 WHERE laps < 105 AND grid < 18 AND points = 11 ### context: CREATE TABLE table_name_16 (team VARCHAR, points VARCHAR, laps VARCHAR, grid VARCHAR)
### question: How many Points have a Team of rusport, and Laps of 45? ### answer: SELECT COUNT(points) FROM table_name_7 WHERE team = "rusport" AND laps = 45 ### context: CREATE TABLE table_name_7 (points VARCHAR, team VARCHAR, laps VARCHAR)
### question: What is the players name in the guard position? ### answer: SELECT name FROM table_name_95 WHERE position = "guard" ### context: CREATE TABLE table_name_95 (name VARCHAR, position VARCHAR)
### question: What is the Overall number for pick 17? ### answer: SELECT overall FROM table_name_5 WHERE pick = 17 ### context: CREATE TABLE table_name_5 (overall VARCHAR, pick VARCHAR)
### question: What number round has an overall of 123? ### answer: SELECT round FROM table_name_48 WHERE overall = 123 ### context: CREATE TABLE table_name_48 (round VARCHAR, overall VARCHAR)
### question: What is the Name with an overall of less than 123 for the Detroit Lions? ### answer: SELECT name FROM table_name_3 WHERE overall < 123 AND team = "detroit lions" ### context: CREATE TABLE table_name_3 (name VARCHAR, overall VARCHAR, team VARCHAR)
### question: Who is drafted overall less than 49? ### answer: SELECT name FROM table_name_27 WHERE overall < 49 ### context: CREATE TABLE table_name_27 (name VARCHAR, overall INTEGER)
### question: What position is drafted from Grambling? ### answer: SELECT position FROM table_name_47 WHERE college = "grambling" ### context: CREATE TABLE table_name_47 (position VARCHAR, college VARCHAR)
### question: Which opponent's event was sb 24 - return of the heavyweights 2, and had a method of TKO (knee and punches)? ### answer: SELECT opponent FROM table_name_2 WHERE event = "sb 24 - return of the heavyweights 2" AND method = "tko (knee and punches)" ### context: CREATE TABLE table_name_2 (opponent VARCHAR, event VARCHAR, method VARCHAR)
### question: Which method had Travis Fulton as an opponent? ### answer: SELECT method FROM table_name_68 WHERE opponent = "travis fulton" ### context: CREATE TABLE table_name_68 (method VARCHAR, opponent VARCHAR)
### question: Which opponent had a round of more than 1 and an even of PFP: ring of fire? ### answer: SELECT opponent FROM table_name_45 WHERE round > 1 AND event = "pfp: ring of fire" ### context: CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, event VARCHAR)
### question: What's the segment A in episode 42? ### answer: SELECT segment_a FROM table_name_87 WHERE episode = 42 ### context: CREATE TABLE table_name_87 (segment_a VARCHAR, episode VARCHAR)
### question: Sfax has a total ordered number of? ### answer: SELECT COUNT(ordered) FROM table_name_54 WHERE name = "sfax" ### context: CREATE TABLE table_name_54 (ordered VARCHAR, name VARCHAR)
### question: What was the score on March 5 at Vancouver? ### answer: SELECT score FROM table_name_42 WHERE date = "march 5" ### context: CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR)
### question: Who directed the nominated film 'blood on his hands'? ### answer: SELECT director_s_ FROM table_name_45 WHERE rank = "nominated" AND film = "blood on his hands" ### context: CREATE TABLE table_name_45 (director_s_ VARCHAR, rank VARCHAR, film VARCHAR)
### question: What is the rank of the film, Amelia and Michael? ### answer: SELECT rank FROM table_name_30 WHERE film = "amelia and michael" ### context: CREATE TABLE table_name_30 (rank VARCHAR, film VARCHAR)
### question: Who directed the nominated film, Badmouth? ### answer: SELECT director_s_ FROM table_name_53 WHERE rank = "nominated" AND film = "badmouth" ### context: CREATE TABLE table_name_53 (director_s_ VARCHAR, rank VARCHAR, film VARCHAR)
### question: What was the production company for the film directed by Daniel Cormack? ### answer: SELECT production_company FROM table_name_54 WHERE director_s_ = "daniel cormack" ### context: CREATE TABLE table_name_54 (production_company VARCHAR, director_s_ VARCHAR)
### question: What was the production company for the nominated film, Badmouth? ### answer: SELECT production_company FROM table_name_33 WHERE rank = "nominated" AND film = "badmouth" ### context: CREATE TABLE table_name_33 (production_company VARCHAR, rank VARCHAR, film VARCHAR)
### question: What is the average number of points of the game after January 3 against the Cleveland Barons? ### answer: SELECT AVG(points) FROM table_name_23 WHERE opponent = "cleveland barons" AND january > 3 ### context: CREATE TABLE table_name_23 (points INTEGER, opponent VARCHAR, january VARCHAR)
### question: What is the total number of games of the team against the Los Angeles Kings after January 5? ### answer: SELECT COUNT(game) FROM table_name_69 WHERE opponent = "los angeles kings" AND january > 5 ### context: CREATE TABLE table_name_69 (game VARCHAR, opponent VARCHAR, january VARCHAR)
### question: Tiger Woods has played less than 21 events and is what rank? ### answer: SELECT COUNT(rank) FROM table_name_90 WHERE player = "tiger woods" AND events < 21 ### context: CREATE TABLE table_name_90 (rank VARCHAR, player VARCHAR, events VARCHAR)
### question: Score of 108-85 is what lowest game? ### answer: SELECT MIN(game) FROM table_name_77 WHERE score = "108-85" ### context: CREATE TABLE table_name_77 (game INTEGER, score VARCHAR)
### question: Location of brendan byrne arena had what score? ### answer: SELECT score FROM table_name_5 WHERE location = "brendan byrne arena" ### context: CREATE TABLE table_name_5 (score VARCHAR, location VARCHAR)
### question: Opponent of chicago bulls had what location? ### answer: SELECT location FROM table_name_83 WHERE opponent = "chicago bulls" ### context: CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)
### question: Location of boston garden, and a Record of 58-23 involved what opponent? ### answer: SELECT opponent FROM table_name_34 WHERE location = "boston garden" AND record = "58-23" ### context: CREATE TABLE table_name_34 (opponent VARCHAR, location VARCHAR, record VARCHAR)
### question: Score of 119-115 (ot) involved what location? ### answer: SELECT location FROM table_name_16 WHERE score = "119-115 (ot)" ### context: CREATE TABLE table_name_16 (location VARCHAR, score VARCHAR)
### question: What is the average value for Fall 07 when Fall 05 is 271 and Fall 09 is less than 347? ### answer: SELECT AVG(fall_07) FROM table_name_83 WHERE fall_05 = 271 AND fall_09 < 347 ### context: CREATE TABLE table_name_83 (fall_07 INTEGER, fall_05 VARCHAR, fall_09 VARCHAR)
### question: What was the average value for Fall 07 when Fall 09 is less than 296? ### answer: SELECT AVG(fall_07) FROM table_name_99 WHERE fall_09 < 296 ### context: CREATE TABLE table_name_99 (fall_07 INTEGER, fall_09 INTEGER)
### question: What is the sum of all values in Fall 09 in Allegany county with Fall 07 less than 751? ### answer: SELECT SUM(fall_09) FROM table_name_56 WHERE maryland_counties = "allegany" AND fall_07 < 751 ### context: CREATE TABLE table_name_56 (fall_09 INTEGER, maryland_counties VARCHAR, fall_07 VARCHAR)
### question: What is the largest value for Fall 08 when Fall 09 is 792 and Fall 05 is less than 791? ### answer: SELECT MAX(fall_08) FROM table_name_95 WHERE fall_09 = 792 AND fall_05 < 791 ### context: CREATE TABLE table_name_95 (fall_08 INTEGER, fall_09 VARCHAR, fall_05 VARCHAR)
### question: What is the largest value for Fall 08 when Fall 07 is less than 242? ### answer: SELECT MAX(fall_08) FROM table_name_28 WHERE fall_07 < 242 ### context: CREATE TABLE table_name_28 (fall_08 INTEGER, fall_07 INTEGER)
### question: What is the nationality of the player in round 4? ### answer: SELECT nationality FROM table_name_11 WHERE round = 4 ### context: CREATE TABLE table_name_11 (nationality VARCHAR, round VARCHAR)
### question: What is the round of Jimmy Drolet from Canada? ### answer: SELECT round FROM table_name_70 WHERE nationality = "canada" AND player = "jimmy drolet" ### context: CREATE TABLE table_name_70 (round VARCHAR, nationality VARCHAR, player VARCHAR)
### question: What is the round number of Jessie Rezansoff, who plays right wing? ### answer: SELECT SUM(round) FROM table_name_43 WHERE position = "right wing" AND player = "jessie rezansoff" ### context: CREATE TABLE table_name_43 (round INTEGER, position VARCHAR, player VARCHAR)
### question: Which team had a qualifying 2 time of 1:01.093? ### answer: SELECT team FROM table_name_11 WHERE qual_2 = "1:01.093" ### context: CREATE TABLE table_name_11 (team VARCHAR, qual_2 VARCHAR)
### question: What was the qualifying 2 time for the team with a qualifying 1 time of 1:01.630? ### answer: SELECT qual_2 FROM table_name_55 WHERE qual_1 = "1:01.630" ### context: CREATE TABLE table_name_55 (qual_2 VARCHAR, qual_1 VARCHAR)
### question: What was the qualifying 1 time for Rusport and Justin Wilson? ### answer: SELECT qual_1 FROM table_name_27 WHERE team = "rusport" AND name = "justin wilson" ### context: CREATE TABLE table_name_27 (qual_1 VARCHAR, team VARCHAR, name VARCHAR)
### question: Which team had a qualifying 1 time of 1:01.342? ### answer: SELECT team FROM table_name_40 WHERE qual_1 = "1:01.342" ### context: CREATE TABLE table_name_40 (team VARCHAR, qual_1 VARCHAR)
### question: What is the best time of the team that had a qualifying 1 time of 1:01.043? ### answer: SELECT best FROM table_name_54 WHERE qual_1 = "1:01.043" ### context: CREATE TABLE table_name_54 (best VARCHAR, qual_1 VARCHAR)
### question: How many picks did Mike Zaher have? ### answer: SELECT SUM(pick__number) FROM table_name_17 WHERE player = "mike zaher" ### context: CREATE TABLE table_name_17 (pick__number INTEGER, player VARCHAR)
### question: How many pick numbers did Matt Marquess have? ### answer: SELECT COUNT(pick__number) FROM table_name_57 WHERE player = "matt marquess" ### context: CREATE TABLE table_name_57 (pick__number VARCHAR, player VARCHAR)
### question: Which MLS Team's pick number was 31? ### answer: SELECT mls_team FROM table_name_69 WHERE pick__number = 31 ### context: CREATE TABLE table_name_69 (mls_team VARCHAR, pick__number VARCHAR)
### question: what day did the team go to toronto ### answer: SELECT date FROM table_name_97 WHERE visitor = "toronto" ### context: CREATE TABLE table_name_97 (date VARCHAR, visitor VARCHAR)
### question: what team visited chicago ### answer: SELECT score FROM table_name_14 WHERE visitor = "chicago" ### context: CREATE TABLE table_name_14 (score VARCHAR, visitor VARCHAR)
### question: what team played on october 8 ### answer: SELECT home FROM table_name_32 WHERE date = "october 8" ### context: CREATE TABLE table_name_32 (home VARCHAR, date VARCHAR)
### question: Which Position has a Game 1 of noel cleal? ### answer: SELECT position FROM table_name_69 WHERE game_1 = "noel cleal" ### context: CREATE TABLE table_name_69 (position VARCHAR, game_1 VARCHAR)
### question: Which Game 3 has a Game 1 of brett kenny? ### answer: SELECT game_3 FROM table_name_75 WHERE game_1 = "brett kenny" ### context: CREATE TABLE table_name_75 (game_3 VARCHAR, game_1 VARCHAR)
### question: Opponent of at new york giants had what venue? ### answer: SELECT venue FROM table_name_36 WHERE opponent = "at new york giants" ### context: CREATE TABLE table_name_36 (venue VARCHAR, opponent VARCHAR)
### question: Result of l 10-23 occurred in what week? ### answer: SELECT week FROM table_name_43 WHERE result = "l 10-23" ### context: CREATE TABLE table_name_43 (week VARCHAR, result VARCHAR)
### question: Week larger than 5, and an opponent of at new york giants had what record? ### answer: SELECT record FROM table_name_69 WHERE week > 5 AND opponent = "at new york giants" ### context: CREATE TABLE table_name_69 (record VARCHAR, week VARCHAR, opponent VARCHAR)
### question: Attendance of 35,842 had what date? ### answer: SELECT date FROM table_name_77 WHERE attendance = "35,842" ### context: CREATE TABLE table_name_77 (date VARCHAR, attendance VARCHAR)
### question: Result of w 16-10* o.t. had what attendance? ### answer: SELECT attendance FROM table_name_27 WHERE result = "w 16-10* o.t." ### context: CREATE TABLE table_name_27 (attendance VARCHAR, result VARCHAR)
### question: What Report has the Date of June 5, 2005? ### answer: SELECT report FROM table_name_6 WHERE date = "june 5, 2005" ### context: CREATE TABLE table_name_6 (report VARCHAR, date VARCHAR)