answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT MAX(population__stanthorpe_) FROM table_12584173_1 WHERE population__rosenthal_ = 1548
What was the population in Stanthorpe in the year when the population in Rosenthal was 1548?
CREATE TABLE table_12584173_1 (population__stanthorpe_ INTEGER, population__rosenthal_ VARCHAR)
SELECT MIN(silver) FROM table_name_95 WHERE nation = "iceland" AND total < 87
What is the lowest amount of silver medals Iceland, who has less than 87 medals, has?
CREATE TABLE table_name_95 (silver INTEGER, nation VARCHAR, total VARCHAR)
SELECT tom_tom_pads FROM table_2889300_6 WHERE drum_module = "TD-5"
in the drum module td-5 what are the tom-tom pads
CREATE TABLE table_2889300_6 (tom_tom_pads VARCHAR, drum_module VARCHAR)
SELECT name FROM table_name_96 WHERE debut = "round 6"
What is the name of the player that had a debut in round 6?
CREATE TABLE table_name_96 (name VARCHAR, debut VARCHAR)
SELECT lees_team FROM table_23575917_4 WHERE episode = "4x04"
Who is the Lees Team for episode 4x04?
CREATE TABLE table_23575917_4 (lees_team VARCHAR, episode VARCHAR)
SELECT country FROM table_name_77 WHERE player = "billy maxwell"
What is Country, when Player is "Billy Maxwell"?
CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR)
SELECT candidates FROM table_19753079_41 WHERE first_elected = 1984
When 1984 is the first elected who are the candidates?
CREATE TABLE table_19753079_41 (candidates VARCHAR, first_elected VARCHAR)
SELECT AVG(year) FROM table_name_35 WHERE game = "resident evil 4"
Which Year has a Game of resident evil 4?
CREATE TABLE table_name_35 (year INTEGER, game VARCHAR)
SELECT language FROM table_name_59 WHERE content = "televendita" AND television_service = "telemarket for you"
What language is telemarket for you with a content of televendita?
CREATE TABLE table_name_59 (language VARCHAR, content VARCHAR, television_service VARCHAR)
SELECT date FROM table_name_57 WHERE golden_tickets = 26
What was the date when there were 26 golden tickets?
CREATE TABLE table_name_57 (date VARCHAR, golden_tickets VARCHAR)
SELECT series FROM table_30087032_5 WHERE high_points = "Charles Barkley (34)"
In what series did Charles Barkley (34) did most high points?
CREATE TABLE table_30087032_5 (series VARCHAR, high_points VARCHAR)
SELECT date FROM table_name_17 WHERE home_away = "home" AND opponent = "bayhawks"
On what date were the opponents the Bayhawks at a home game?
CREATE TABLE table_name_17 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)
SELECT ResName, Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1
Which restaurants have highest rating? List the restaurant name and its rating.
CREATE TABLE Restaurant (ResName VARCHAR, Rating VARCHAR)
SELECT european_competitions FROM table_name_33 WHERE tier > 2
What is the European competition when the tier is more than 2?
CREATE TABLE table_name_33 (european_competitions VARCHAR, tier INTEGER)
SELECT conference FROM table_22779004_1 WHERE regular_season_winner = "Arizona State"
What was the conference when Arizona State won the regular season?
CREATE TABLE table_22779004_1 (conference VARCHAR, regular_season_winner VARCHAR)
SELECT city FROM table_name_83 WHERE previous_counference = "lake" AND ihsaa_class = "3a"
What city has a team in IHSAA class 3a, and previous conference of lake?
CREATE TABLE table_name_83 (city VARCHAR, previous_counference VARCHAR, ihsaa_class VARCHAR)
SELECT icelandic FROM table_name_12 WHERE english = "rain"
What's the Icelandic word for rain?
CREATE TABLE table_name_12 (icelandic VARCHAR, english VARCHAR)
SELECT MIN(distance), AVG(distance), MAX(distance) FROM Aircraft
What is the minimum, average, and maximum distance of all aircrafts.
CREATE TABLE Aircraft (distance INTEGER)
SELECT team__b_ FROM table_name_31 WHERE s_no < 18 AND margin = "8 wickets" AND match_date = "oct 30, 1989"
What is Team (B), when S No is less than 18, when Margin is 8 Wickets, and when Match Date is Oct 30, 1989?
CREATE TABLE table_name_31 (team__b_ VARCHAR, match_date VARCHAR, s_no VARCHAR, margin VARCHAR)
SELECT Date, LOCATION FROM performance
What are the dates and locations of performances?
CREATE TABLE performance (Date VARCHAR, LOCATION VARCHAR)
SELECT AVG(year) FROM table_name_54 WHERE team = "capital city giants" AND score = "8-0"
What year did the Capital City Giants have a game with the final score of 8-0?
CREATE TABLE table_name_54 (year INTEGER, team VARCHAR, score VARCHAR)
SELECT COUNT(rank) FROM table_14752049_5 WHERE country = "South Korea"
Name the number of ranks for south korea
CREATE TABLE table_14752049_5 (rank VARCHAR, country VARCHAR)
SELECT MIN(sept_1943) FROM table_1115992_1 WHERE late_1943 = 78000
What is the least september 1943 when late 1943 is 78000
CREATE TABLE table_1115992_1 (sept_1943 INTEGER, late_1943 VARCHAR)
SELECT position FROM table_name_59 WHERE pick > 256 AND player = "terry jones"
What was the position of terry jones whose pick number was after 256?
CREATE TABLE table_name_59 (position VARCHAR, pick VARCHAR, player VARCHAR)
SELECT date__closing_ FROM table_name_95 WHERE opening_film = "deconstruction of korean housewife"
What is Date (Closing), when Opening Film is "Deconstruction of Korean Housewife"?
CREATE TABLE table_name_95 (date__closing_ VARCHAR, opening_film VARCHAR)
SELECT city FROM table_name_35 WHERE name = "sky tower"
What city has Sky Tower?
CREATE TABLE table_name_35 (city VARCHAR, name VARCHAR)
SELECT MAX(crowd) FROM table_name_8 WHERE away_team = "richmond"
When richmond played away, what was the largest number of people who watched?
CREATE TABLE table_name_8 (crowd INTEGER, away_team VARCHAR)
SELECT home_team FROM table_name_87 WHERE away_team = "oxford united"
What is the Home team with an Away team that is oxford united?
CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR)
SELECT chassis FROM table_name_47 WHERE engine = "honda" AND sponsor = "motorola"
What is the Chassis of the Honda Engine with a Motorola sponsor?
CREATE TABLE table_name_47 (chassis VARCHAR, engine VARCHAR, sponsor VARCHAR)
SELECT MIN(total_population__2010_) FROM table_name_88 WHERE _percentage_asian_american = 5.7 AND asian_american_population__2010_ < 126 OFFSET 965
What's the total population when there are 5.7% Asian American and fewer than 126,965 Asian American Population?
CREATE TABLE table_name_88 (total_population__2010_ INTEGER, _percentage_asian_american VARCHAR, asian_american_population__2010_ VARCHAR)
SELECT MIN(silver) FROM table_name_70 WHERE gold > 0 AND rank = "total" AND bronze < 32
Which Silver is the lowest one that has a Gold larger than 0, and a Rank of total, and a Bronze smaller than 32?
CREATE TABLE table_name_70 (silver INTEGER, bronze VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT T1.Service_Type_Description, T2.Service_Type_Code, COUNT(*) FROM Ref_Service_Types AS T1 JOIN Services AS T2 ON T1.Service_Type_Code = T2.Service_Type_Code GROUP BY T2.Service_Type_Code
What is the description, code and the corresponding count of each service type?
CREATE TABLE Services (Service_Type_Code VARCHAR); CREATE TABLE Ref_Service_Types (Service_Type_Description VARCHAR, Service_Type_Code VARCHAR)
SELECT AVG(Price), Manufacturer FROM Products GROUP BY Manufacturer
Select the average price of each manufacturer's products, showing only the manufacturer's code.
CREATE TABLE Products (Manufacturer VARCHAR, Price INTEGER)
SELECT score FROM table_name_44 WHERE opponent_in_the_final = "iroda tulyaganova"
What was the score when the opponent in the final was iroda tulyaganova?
CREATE TABLE table_name_44 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT COUNT(DISTINCT temporary_acting) FROM management
How many acting statuses are there?
CREATE TABLE management (temporary_acting VARCHAR)
SELECT T1.outcome_description FROM Research_outcomes AS T1 JOIN Project_outcomes AS T2 ON T1.outcome_code = T2.outcome_code
What are the descriptions of all the project outcomes?
CREATE TABLE Research_outcomes (outcome_description VARCHAR, outcome_code VARCHAR); CREATE TABLE Project_outcomes (outcome_code VARCHAR)
SELECT to_par FROM table_name_14 WHERE country = "united states" AND score = 72 - 67 - 80 - 71 = 290
What is the to par for the player from the United States with a 72-67-80-71=290 score?
CREATE TABLE table_name_14 (to_par VARCHAR, country VARCHAR, score VARCHAR)
SELECT MAX(points) FROM table_name_81 WHERE lost < 1 AND games > 7
Which Points have a Lost smaller than 1, and Games larger than 7?
CREATE TABLE table_name_81 (points INTEGER, lost VARCHAR, games VARCHAR)
SELECT hs_principal FROM table_name_81 WHERE year = "1973-1974"
Who is the h.s. principal during 1973-1974?
CREATE TABLE table_name_81 (hs_principal VARCHAR, year VARCHAR)
SELECT county FROM table_12280396_1 WHERE peak = "Indre Russetind"
Name the county with the peak being indre russetind?
CREATE TABLE table_12280396_1 (county VARCHAR, peak VARCHAR)
SELECT date FROM table_name_90 WHERE tournament = "madrid, spain"
What is the date of the tournament played in Madrid, Spain?
CREATE TABLE table_name_90 (date VARCHAR, tournament VARCHAR)
SELECT year_s__won FROM table_name_7 WHERE country = "united states" AND to_par > 14
In what year did the United States win To par greater than 14
CREATE TABLE table_name_7 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR)
SELECT primary_sponsor_s_ FROM table_1529793_1 WHERE driver_s_ = "Jason Leffler"
Who is Jason Leffler's primary sponsor?
CREATE TABLE table_1529793_1 (primary_sponsor_s_ VARCHAR, driver_s_ VARCHAR)
SELECT MAX(roll) FROM table_name_12 WHERE authority = "state" AND name = "sylvia park school"
What is the biggest roll number of Sylvia Park School, which has a state authority?
CREATE TABLE table_name_12 (roll INTEGER, authority VARCHAR, name VARCHAR)
SELECT release_date FROM table_20174050_7 WHERE reader = "Syal, Meera Meera Syal"
If the reader is Syal, Meera Meera Syal, what was the release date?
CREATE TABLE table_20174050_7 (release_date VARCHAR, reader VARCHAR)
SELECT COUNT(race) FROM table_name_72 WHERE podium > 1 AND season = "1982" AND flap < 1
Race that has a Podium larger than 1, and a Season of 1982, and a flap smaller than 1 had how many number of races?
CREATE TABLE table_name_72 (race VARCHAR, flap VARCHAR, podium VARCHAR, season VARCHAR)
SELECT high_assists FROM table_name_10 WHERE date = "november 27"
How many high assists were on November 27?
CREATE TABLE table_name_10 (high_assists VARCHAR, date VARCHAR)
SELECT w_l__doubles_ FROM table_name_73 WHERE debut = 1999
Tell me the WL doubles with a debut of 1999
CREATE TABLE table_name_73 (w_l__doubles_ VARCHAR, debut VARCHAR)
SELECT game_site FROM table_14984126_1 WHERE result = "L 24–34"
what's the game site with result being l 24–34
CREATE TABLE table_14984126_1 (game_site VARCHAR, result VARCHAR)
SELECT remarks FROM table_name_74 WHERE airline = "dutch antilles express"
What were the remarks for Dutch Antilles Express?
CREATE TABLE table_name_74 (remarks VARCHAR, airline VARCHAR)
SELECT address_line_1 FROM Course_Authors_and_Tutors WHERE personal_name = "Cathrine"
What are the addresses of the course authors or tutors with personal name "Cathrine"
CREATE TABLE Course_Authors_and_Tutors (address_line_1 VARCHAR, personal_name VARCHAR)
SELECT Ref_Document_Status.document_status_description FROM Ref_Document_Status JOIN Documents ON Documents.document_status_code = Ref_Document_Status.document_status_code WHERE Documents.document_id = 1
What is the document status description of the document with id 1?
CREATE TABLE Documents (Id VARCHAR); CREATE TABLE Ref_Document_Status (Id VARCHAR)
SELECT AVG(goals_against) FROM table_name_20 WHERE points_1 = "50" AND goals_for > 56
What is the average goals against for teams with more than 56 goals for and exactly 50 points?
CREATE TABLE table_name_20 (goals_against INTEGER, points_1 VARCHAR, goals_for VARCHAR)
SELECT team FROM table_name_72 WHERE ravg = "3.4"
What team had a Ravg of 3.4?
CREATE TABLE table_name_72 (team VARCHAR, ravg VARCHAR)
SELECT publisher, COUNT(*) FROM book_club GROUP BY publisher
Show all publishers and the number of books for each publisher.
CREATE TABLE book_club (publisher VARCHAR)
SELECT player FROM table_name_77 WHERE position = "wide receiver" AND round = 7
Which player is a wide receiver picked in round 7?
CREATE TABLE table_name_77 (player VARCHAR, position VARCHAR, round VARCHAR)
SELECT COUNT(premier_two) FROM table_12043148_2 WHERE gloucestershire = "Painswick"
who many times is gloucestershire is painswick?
CREATE TABLE table_12043148_2 (premier_two VARCHAR, gloucestershire VARCHAR)
SELECT SUM(games) FROM table_name_10 WHERE points_difference = "18 - 33" AND points < 4
Points difference of 18 - 33, and a Points smaller than 4 is the total of what sum of games?
CREATE TABLE table_name_10 (games INTEGER, points_difference VARCHAR, points VARCHAR)
SELECT COUNT(engine) FROM table_name_82 WHERE model = "sl600" AND year_from = 1994 AND year_to < 1995
How many engines have a Model of sl600, and a Year From of 1994, and a Year To smaller than 1995?
CREATE TABLE table_name_82 (engine VARCHAR, year_to VARCHAR, model VARCHAR, year_from VARCHAR)
SELECT no_party_preference FROM table_27003186_3 WHERE city = "Murrieta"
What is the no party preference when the city is murrieta?
CREATE TABLE table_27003186_3 (no_party_preference VARCHAR, city VARCHAR)
SELECT COUNT(scorecard) FROM table_19576091_1 WHERE date = "October 28"
How many scorecards are there for the match on October 28?
CREATE TABLE table_19576091_1 (scorecard VARCHAR, date VARCHAR)
SELECT rank FROM table_name_14 WHERE goals > 4 AND scorer = "oh seok-jae"
Which Rank has Goals larger than 4, and a Scorer of oh seok-jae?
CREATE TABLE table_name_14 (rank VARCHAR, goals VARCHAR, scorer VARCHAR)
SELECT opponent FROM table_name_55 WHERE week < 2
Which opponent was on week 2?
CREATE TABLE table_name_55 (opponent VARCHAR, week INTEGER)
SELECT COUNT(location_attendance) FROM table_23248967_9 WHERE date = "March 6"
How many game locations occurred on March 6?
CREATE TABLE table_23248967_9 (location_attendance VARCHAR, date VARCHAR)
SELECT famous_for FROM table_name_32 WHERE celebrity = "dom joly"
What was Dom Joly famous for?
CREATE TABLE table_name_32 (famous_for VARCHAR, celebrity VARCHAR)
SELECT unemployment_rate FROM table_22815568_7 WHERE status = "Transitional" AND county = "Alexander"
What is the unemployment rate in those places in Alexander county whose status is transitional?
CREATE TABLE table_22815568_7 (unemployment_rate VARCHAR, status VARCHAR, county VARCHAR)
SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01
What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?
CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)
SELECT score FROM table_name_65 WHERE date = "january 19"
What score has january 19 as the date?
CREATE TABLE table_name_65 (score VARCHAR, date VARCHAR)
SELECT home_team AS score FROM table_name_36 WHERE away_team = "collingwood"
What is the home team score when the away team is Collingwood?
CREATE TABLE table_name_36 (home_team VARCHAR, away_team VARCHAR)
SELECT total FROM table_19260_1 WHERE _percentage_core_moldova = "4.36_percentage"
Name the total for % core moldova for 4.36%
CREATE TABLE table_19260_1 (total VARCHAR, _percentage_core_moldova VARCHAR)
SELECT home FROM table_name_68 WHERE date = "march 19"
What home is dated march 19?
CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)
SELECT order_id, COUNT(*) FROM Order_items GROUP BY order_id
Show the order ids and the number of items in each order.
CREATE TABLE Order_items (order_id VARCHAR)
SELECT MIN(area__km_2__) FROM table_name_31 WHERE most_spoken_language = "afrikaans" AND place = "cannonvale"
What is the lowest area for cannonvale that speaks afrikaans?
CREATE TABLE table_name_31 (area__km_2__ INTEGER, most_spoken_language VARCHAR, place VARCHAR)
SELECT score FROM table_name_44 WHERE player = "sophie gustafson"
What was the score for a match where Sophie Gustafson played?
CREATE TABLE table_name_44 (score VARCHAR, player VARCHAR)
SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2
What is the sum of Maidens with a number of Matches that is 2?
CREATE TABLE table_name_36 (maidens INTEGER, matches VARCHAR)
SELECT country FROM table_name_75 WHERE total < 284
Which Country has a Total smaller than 284?
CREATE TABLE table_name_75 (country VARCHAR, total INTEGER)
SELECT alpha_2_code FROM table_222771_1 WHERE english_short_name__upper_lower_case_ = "Papua New Guinea"
What is the Alpha 2 code for Papua New Guinea?
CREATE TABLE table_222771_1 (alpha_2_code VARCHAR, english_short_name__upper_lower_case_ VARCHAR)
SELECT COUNT(game) FROM table_name_13 WHERE opponent = "detroit red wings" AND march < 12
Which Game has an Opponent of detroit red wings, and a March smaller than 12?
CREATE TABLE table_name_13 (game VARCHAR, opponent VARCHAR, march VARCHAR)
SELECT rider FROM table_name_50 WHERE final_position___tour < 50 AND final_position___vuelta < 11 AND year < 2008
Who is the rider with less than 50 final position-tours and less than 11 final position-vuelta before 2008?
CREATE TABLE table_name_50 (rider VARCHAR, year VARCHAR, final_position___tour VARCHAR, final_position___vuelta VARCHAR)
SELECT venue FROM table_name_90 WHERE date = "august 16, 2006"
Which venue had a match played on August 16, 2006?
CREATE TABLE table_name_90 (venue VARCHAR, date VARCHAR)
SELECT school_club_team FROM table_name_91 WHERE nationality = "united states" AND player = "arron afflalo"
What is the School/Club Team with a nationality of United States for Arron Afflalo?
CREATE TABLE table_name_91 (school_club_team VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT marcin_dołęga___pol__ FROM table_name_76 WHERE world_record = "olympic record" AND snatch = "total"
What shows for Marcin Dołęga ( POL )when the world record shows olympic record, and a Snatch of total?
CREATE TABLE table_name_76 (marcin_dołęga___pol__ VARCHAR, world_record VARCHAR, snatch VARCHAR)
SELECT COUNT(year_of_previous_participation) FROM table_2518850_4 WHERE total_number_of_participation = 1 AND high_school_name = "Maebashi Ikuei"
How many previous years did Maebashi Ikuei high school have a total number of 1 participation?
CREATE TABLE table_2518850_4 (year_of_previous_participation VARCHAR, total_number_of_participation VARCHAR, high_school_name VARCHAR)
SELECT date_of_birth FROM table_name_31 WHERE height = "head coach: adel shamala"
What is Date of Birth, when Height is "Head Coach: Adel Shamala"?
CREATE TABLE table_name_31 (date_of_birth VARCHAR, height VARCHAR)
SELECT MAX(fips_code) FROM table_name_58 WHERE coordinates = "41.827547, -74.118478" AND land___sq_mi__ < 1.196
Name the highest FIPS code for coordinates of 41.827547, -74.118478 and land less than 1.196
CREATE TABLE table_name_58 (fips_code INTEGER, coordinates VARCHAR, land___sq_mi__ VARCHAR)
SELECT COUNT(assets_2013__bil) AS $_ FROM table_24307126_3 WHERE base = "Australia"
Name the number of assets for australia
CREATE TABLE table_24307126_3 (assets_2013__bil VARCHAR, base VARCHAR)
SELECT method FROM table_name_33 WHERE event = "shooto" AND round = 2 AND opponent = "issei tamura"
Which method has an Event of shooto, a Round of 2, and an Opponent of issei tamura?
CREATE TABLE table_name_33 (method VARCHAR, opponent VARCHAR, event VARCHAR, round VARCHAR)
SELECT COUNT(games) FROM table_name_34 WHERE goals_for = 215
How many games were recorded with Goals for number of 215?
CREATE TABLE table_name_34 (games VARCHAR, goals_for VARCHAR)
SELECT opponent FROM table_name_87 WHERE date = "december 19, 1999"
What team was the opponent for the game played on December 19, 1999?
CREATE TABLE table_name_87 (opponent VARCHAR, date VARCHAR)
SELECT episode__number FROM table_27846651_1 WHERE viewers__millions_ = "5.46"
Wat episode number had 5.46 million viewers?
CREATE TABLE table_27846651_1 (episode__number VARCHAR, viewers__millions_ VARCHAR)
SELECT MIN(laps) FROM table_name_2 WHERE rider = "andrea dovizioso"
Which Laps have a Rider of andrea dovizioso?
CREATE TABLE table_name_2 (laps INTEGER, rider VARCHAR)
SELECT chassis___engine FROM table_name_9 WHERE laps = 77
Which chassis-engine had 77 laps?
CREATE TABLE table_name_9 (chassis___engine VARCHAR, laps VARCHAR)
SELECT method FROM table_name_27 WHERE record = "3-0"
Which method has a record of 3-0?
CREATE TABLE table_name_27 (method VARCHAR, record VARCHAR)
SELECT captain FROM table_name_30 WHERE kit_manufacturer = "fox leisure"
Who is the captain of the team that has a kit manufacturer of Fox Leisure?
CREATE TABLE table_name_30 (captain VARCHAR, kit_manufacturer VARCHAR)
SELECT classroom, COUNT(*) FROM list WHERE grade = "0" GROUP BY classroom
For each grade 0 classroom, report the total number of students.
CREATE TABLE list (classroom VARCHAR, grade VARCHAR)
SELECT school FROM table_name_88 WHERE round = 3
From what school was the player drafted in round 3?
CREATE TABLE table_name_88 (school VARCHAR, round VARCHAR)
SELECT Hometown FROM teacher ORDER BY Age LIMIT 1
What is the hometown of the youngest teacher?
CREATE TABLE teacher (Hometown VARCHAR, Age VARCHAR)
SELECT AVG(points) FROM table_name_11 WHERE game = 82 AND april > 10
How many Points has a Game of 82 and a April larger than 10?
CREATE TABLE table_name_11 (points INTEGER, game VARCHAR, april VARCHAR)
SELECT sprints_classification FROM table_name_18 WHERE points_classification = "mark cavendish" AND team_classification = "caisse d'epargne"
What Sprints classification has the Points classification, Mark Cavendish and Team classification, Caisse D'epargne?
CREATE TABLE table_name_18 (sprints_classification VARCHAR, points_classification VARCHAR, team_classification VARCHAR)
SELECT date FROM table_name_2 WHERE week = "4"
On what date was Tampa Bay's Week 4 game?
CREATE TABLE table_name_2 (date VARCHAR, week VARCHAR)