answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
484
SELECT COUNT(rank) FROM table_name_4 WHERE population = 258
What is the rank of the town with a population of 258?
CREATE TABLE table_name_4 (rank VARCHAR, population VARCHAR)
SELECT finish FROM table_name_83 WHERE country = "united states" AND player = "lanny wadkins"
What was the finish for Lanny Wadkins of the United States?
CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR, player VARCHAR)
SELECT result FROM table_name_60 WHERE date = "april 23"
WHAT IS THE RESULT OF THE GAME ON APRIL 23?
CREATE TABLE table_name_60 (result VARCHAR, date VARCHAR)
SELECT COUNT(rank) FROM table_name_63 WHERE wins > 16 AND country = "australia"
What is the player from Australia's rank with more than 16 wins?
CREATE TABLE table_name_63 (rank VARCHAR, wins VARCHAR, country VARCHAR)
SELECT sixth_place FROM table_name_34 WHERE series = 7
Who was in sixth place in series 7?
CREATE TABLE table_name_34 (sixth_place VARCHAR, series VARCHAR)
SELECT uyghur___k̢ona_yezik̢__ FROM table_2008069_2 WHERE chinese = "瓦恰"
Name the uyghur for 瓦恰
CREATE TABLE table_2008069_2 (uyghur___k̢ona_yezik̢__ VARCHAR, chinese VARCHAR)
SELECT years_for_jazz FROM table_11545282_6 WHERE player = "Jim Farmer"
During which years did Jim Farmer play for Jazz?
CREATE TABLE table_11545282_6 (years_for_jazz VARCHAR, player VARCHAR)
SELECT combaya_municipality FROM table_2509202_2 WHERE quiabaya_municipality = "2"
When the quiabaya municipality is 2 what is the combaya municipality?
CREATE TABLE table_2509202_2 (combaya_municipality VARCHAR, quiabaya_municipality VARCHAR)
SELECT date FROM table_17118657_7 WHERE record = "1-4"
On which date was the record 1-4?
CREATE TABLE table_17118657_7 (date VARCHAR, record VARCHAR)
SELECT COUNT(gold) FROM table_name_79 WHERE bronze = 3 AND rank > 7 AND total < 5
How many golds for teams ranking below 7 with 3 bronze and less than 5 total medals?
CREATE TABLE table_name_79 (gold VARCHAR, total VARCHAR, bronze VARCHAR, rank VARCHAR)
SELECT location_attendance FROM table_17311759_5 WHERE date = "December 9"
What was the location and the crowd attendance on December 9?
CREATE TABLE table_17311759_5 (location_attendance VARCHAR, date VARCHAR)
SELECT round FROM table_name_14 WHERE score = "33-22"
Score of 33-22 had what round?
CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR)
SELECT last_final_lost FROM table_name_49 WHERE wins = "7"
When was the last final lost of the club with 7 wins?
CREATE TABLE table_name_49 (last_final_lost VARCHAR, wins VARCHAR)
SELECT customer_first_name, customer_last_name FROM Customers EXCEPT SELECT T1.customer_first_name, T1.customer_last_name FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
Show the first names and last names of customers without any account.
CREATE TABLE Accounts (customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR, customer_id VARCHAR); CREATE TABLE Customers (customer_first_name VARCHAR, customer_last_name VARCHAR)
SELECT COUNT(rank) FROM table_26375386_20 WHERE vote_percentage = "10.7%"
How many times is the voting percentage 10.7%
CREATE TABLE table_26375386_20 (rank VARCHAR, vote_percentage VARCHAR)
SELECT position FROM table_name_20 WHERE overall = 133
What position did the draft pick number play that was overall pick number 133?
CREATE TABLE table_name_20 (position VARCHAR, overall VARCHAR)
SELECT location_attendance FROM table_name_13 WHERE score = "113-106"
What was the location of the game with a score of 113-106?
CREATE TABLE table_name_13 (location_attendance VARCHAR, score VARCHAR)
SELECT score FROM table_name_57 WHERE date = "september 20"
What was the score in the September 20 game?
CREATE TABLE table_name_57 (score VARCHAR, date VARCHAR)
SELECT COUNT(crowd) FROM table_name_62 WHERE home_team = "wollongong hawks"
how many times is the home team wollongong hawks?
CREATE TABLE table_name_62 (crowd VARCHAR, home_team VARCHAR)
SELECT country FROM table_name_67 WHERE base = "ljubljana"
what is the country when the base is ljubljana?
CREATE TABLE table_name_67 (country VARCHAR, base VARCHAR)
SELECT high_rebounds FROM table_name_93 WHERE date = "march 13"
What is High Rebounds, when Date is "March 13"?
CREATE TABLE table_name_93 (high_rebounds VARCHAR, date VARCHAR)
SELECT series FROM table_name_39 WHERE season > 2008 AND format = "super leg final" AND conference = "conference v"
What series has a season after 2008, super leg final as the format, and conference v as the conference?
CREATE TABLE table_name_39 (series VARCHAR, conference VARCHAR, season VARCHAR, format VARCHAR)
SELECT T2.emp_fname, T4.prof_office, T3.crs_description, T5.dept_name FROM CLASS AS T1 JOIN employee AS T2 ON T1.prof_num = T2.emp_num JOIN course AS T3 ON T1.crs_code = T3.crs_code JOIN professor AS T4 ON T2.emp_num = T4.emp_num JOIN department AS T5 ON T4.dept_code = T5.dept_code
Find the first names and offices of all instructors who have taught some course and the course description and the department name.
CREATE TABLE employee (emp_fname VARCHAR, emp_num VARCHAR); CREATE TABLE department (dept_name VARCHAR, dept_code VARCHAR); CREATE TABLE course (crs_description VARCHAR, crs_code VARCHAR); CREATE TABLE CLASS (prof_num VARCHAR, crs_code VARCHAR); CREATE TABLE professor (prof_office VARCHAR, emp_num VARCHAR, dept_code VA...
SELECT district FROM table_2668173_4 WHERE incumbent = "Mathias Morris"
What was the district of the incumbent Mathias Morris?
CREATE TABLE table_2668173_4 (district VARCHAR, incumbent VARCHAR)
SELECT COUNT(*) FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid WHERE title = "Demon Kitty Rag"
Find the number of vocal types used in song "Demon Kitty Rag"?
CREATE TABLE vocals (songid VARCHAR); CREATE TABLE songs (songid VARCHAR)
SELECT south FROM table_name_92 WHERE season = "2004-05"
Who was in the South in the 2004-05 season?
CREATE TABLE table_name_92 (south VARCHAR, season VARCHAR)
SELECT COUNT(written_by) FROM table_24910733_1 WHERE us_viewers__millions_ = "11.21"
How many writers are listed when the U.S viewers are 11.21 million?
CREATE TABLE table_24910733_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
SELECT media_type FROM table_23829490_1 WHERE genre = "World"
What is every media type for the World genre?
CREATE TABLE table_23829490_1 (media_type VARCHAR, genre VARCHAR)
SELECT SUM(production_number) FROM table_name_33 WHERE title = "from hare to heir"
What is the production number of From Hare to Heir?
CREATE TABLE table_name_33 (production_number INTEGER, title VARCHAR)
SELECT score FROM table_name_52 WHERE visitor = "ottawa senators" AND date = "december 11"
What was the score for the December 11 game against the Ottawa Senators?
CREATE TABLE table_name_52 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT COUNT(founded) FROM table_12434380_1 WHERE institution = "Kansas City Kansas Community College"
When was the institution of Kansas city Kansas community college founded?
CREATE TABLE table_12434380_1 (founded VARCHAR, institution VARCHAR)
SELECT opponent_in_the_final FROM table_name_9 WHERE surface = "clay" AND score_in_the_final = "4–6, 3–6"
Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4–6, 3–6?
CREATE TABLE table_name_9 (opponent_in_the_final VARCHAR, surface VARCHAR, score_in_the_final VARCHAR)
SELECT rank FROM table_name_63 WHERE year = "1956"
What is rank of the year 1956?
CREATE TABLE table_name_63 (rank VARCHAR, year VARCHAR)
SELECT years_for_jazz FROM table_11545282_17 WHERE player = "Truck Robinson"
Wht years did truck robinson play?
CREATE TABLE table_11545282_17 (years_for_jazz VARCHAR, player VARCHAR)
SELECT type FROM table_name_92 WHERE appliances = "1 wrl" AND location = "linton"
What is the type of the station with a 1 wrl appliance in Linton?
CREATE TABLE table_name_92 (type VARCHAR, appliances VARCHAR, location VARCHAR)
SELECT pure_tamil FROM table_name_97 WHERE how_other_iyers_say_it = "enga athilae"
Name the pure tamil for enga athilae
CREATE TABLE table_name_97 (pure_tamil VARCHAR, how_other_iyers_say_it VARCHAR)
SELECT AVG(pop_area__1_km²_) FROM table_name_84 WHERE no_p > 1 AND name = "albergaria-a-velha"
Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha?
CREATE TABLE table_name_84 (pop_area__1_km²_ INTEGER, no_p VARCHAR, name VARCHAR)
SELECT overall FROM table_name_65 WHERE round < 2
Which Overall has a Round smaller than 2?
CREATE TABLE table_name_65 (overall VARCHAR, round INTEGER)
SELECT COUNT(result) FROM table_1342292_45 WHERE incumbent = "Dave E. Satterfield, Jr."
In how many districts is the incumbent Dave E. Satterfield, Jr.
CREATE TABLE table_1342292_45 (result VARCHAR, incumbent VARCHAR)
SELECT COUNT(candidates) FROM table_1342359_5 WHERE district = "California 7"
how many candidates with district being california 7
CREATE TABLE table_1342359_5 (candidates VARCHAR, district VARCHAR)
SELECT COUNT(laps) FROM table_name_71 WHERE time_retired = "+33.912"
What's the lap number for time/retired of +33.912?
CREATE TABLE table_name_71 (laps VARCHAR, time_retired VARCHAR)
SELECT player FROM table_name_22 WHERE total = 295
Which player had a total of 295?
CREATE TABLE table_name_22 (player VARCHAR, total VARCHAR)
SELECT candidates FROM table_1341577_44 WHERE incumbent = "Lamar S. Smith"
Who were the candidates when Lamar S. Smith was incumbent?
CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT party FROM table_name_22 WHERE district < 10 AND took_office < 1991 AND home_town = "mount pleasant"
What is Party, when District is less than 10, when Took Office is less than 1991, and when Home Town is Mount Pleasant?
CREATE TABLE table_name_22 (party VARCHAR, home_town VARCHAR, district VARCHAR, took_office VARCHAR)
SELECT SUM(founded) FROM table_name_6 WHERE club = "stade tunisien" AND capacity > 18 OFFSET 000
How many foundeds have stade tunisien as the club, with a capacity greater than 18,000?
CREATE TABLE table_name_6 (founded INTEGER, club VARCHAR, capacity VARCHAR)
SELECT player FROM table_24431264_16 WHERE points = 1420
What player had 1420 points coming in?
CREATE TABLE table_24431264_16 (player VARCHAR, points VARCHAR)
SELECT directed_by FROM table_name_1 WHERE production_code = "k2708"
Who directed the show with the production code k2708?
CREATE TABLE table_name_1 (directed_by VARCHAR, production_code VARCHAR)
SELECT SUM(rank) FROM table_name_19 WHERE title = "eddie murphy raw"
What is the sum of the ranks for the film, eddie murphy raw?
CREATE TABLE table_name_19 (rank INTEGER, title VARCHAR)
SELECT MIN(mundubbera) FROM table_12526990_1 WHERE biggenden = 1882
What is the minimum mundubbera when biggenden is 1882
CREATE TABLE table_12526990_1 (mundubbera INTEGER, biggenden VARCHAR)
SELECT assists FROM table_name_45 WHERE pen_min = "54"
How many assists did the player with 54 penalty minutes have?
CREATE TABLE table_name_45 (assists VARCHAR, pen_min VARCHAR)
SELECT venue FROM table_name_71 WHERE runs = "245"
Where is the venue with more than 245 runs?
CREATE TABLE table_name_71 (venue VARCHAR, runs VARCHAR)
SELECT MIN(year) FROM table_name_37 WHERE fighter = "manny pacquiao"
When did Manny Pacquiao win his first championship?
CREATE TABLE table_name_37 (year INTEGER, fighter VARCHAR)
SELECT transfer_window FROM table_name_49 WHERE country = "esp" AND name = "de la red"
What is the transfer window for the country of ESP and the name of de la red?
CREATE TABLE table_name_49 (transfer_window VARCHAR, country VARCHAR, name VARCHAR)
SELECT hometown FROM table_name_10 WHERE result = "10 fired in week 6 (2-24-2005)"
What is the hometown of the candidate that had a result of 10 fired in week 6 (2-24-2005)?
CREATE TABLE table_name_10 (hometown VARCHAR, result VARCHAR)
SELECT COUNT(position) FROM table_name_63 WHERE points < 6
What position has less than 6 Points?
CREATE TABLE table_name_63 (position VARCHAR, points INTEGER)
SELECT COUNT(opponent) FROM table_25428629_1 WHERE location = "Yangon, Myanmar"
If the location is Yangon, Myanmar, what is the opponent total number?
CREATE TABLE table_25428629_1 (opponent VARCHAR, location VARCHAR)
SELECT MIN(attendance) FROM table_14656147_2
Find the least value of attendance?
CREATE TABLE table_14656147_2 (attendance INTEGER)
SELECT total_number FROM table_14330096_4 WHERE director = "Roger Goldby"
How many of the episodes have Roger Goldby as the director?
CREATE TABLE table_14330096_4 (total_number VARCHAR, director VARCHAR)
SELECT AVG(total) FROM table_name_38 WHERE nominated_by_the_taoiseach = 0 AND agricultural_panel > 5
What is the average total 0 are nominated by the Taoiseach and the agricultural panel is greater than 5?
CREATE TABLE table_name_38 (total INTEGER, nominated_by_the_taoiseach VARCHAR, agricultural_panel VARCHAR)
SELECT player FROM table_name_18 WHERE jersey_number_s_ = "2"
Which player wears the number 2 on his jersey?
CREATE TABLE table_name_18 (player VARCHAR, jersey_number_s_ VARCHAR)
SELECT perfect_stem FROM table_name_79 WHERE future_stem = "emango"
What is the perfect stem for the word that has a future stem of emango?
CREATE TABLE table_name_79 (perfect_stem VARCHAR, future_stem VARCHAR)
SELECT league FROM table_1908049_1 WHERE year = "1998/99"
in the year 1998/99 what was the league
CREATE TABLE table_1908049_1 (league VARCHAR, year VARCHAR)
SELECT MIN(year) FROM table_name_8 WHERE event = "50km" AND result = "2nd" AND venue = "london, united kingdom"
What is earliest year that had a 50km event with a 2nd place result played in London, United Kingdom?
CREATE TABLE table_name_8 (year INTEGER, venue VARCHAR, event VARCHAR, result VARCHAR)
SELECT T1.City FROM AIRPORTS AS T1 JOIN FLIGHTS AS T2 ON T1.AirportCode = T2.SourceAirport GROUP BY T1.City ORDER BY COUNT(*) DESC LIMIT 1
Which city has most number of departing flights?
CREATE TABLE AIRPORTS (City VARCHAR, AirportCode VARCHAR); CREATE TABLE FLIGHTS (SourceAirport VARCHAR)
SELECT AVG(overall) FROM table_name_80 WHERE pick = 19
What is average Overall, when Pick is 19?
CREATE TABLE table_name_80 (overall INTEGER, pick VARCHAR)
SELECT date FROM table_name_36 WHERE opponent = "milwaukee bucks"
On which date was the game played against the Milwaukee Bucks?
CREATE TABLE table_name_36 (date VARCHAR, opponent VARCHAR)
SELECT COUNT(wins) FROM table_name_93 WHERE draws < 5 AND goals_against > 49 AND played > 30
What is the total number of Wins, when Draws is less than 5, when Goals is greater than 49, and when Played is greater than 30?
CREATE TABLE table_name_93 (wins VARCHAR, played VARCHAR, draws VARCHAR, goals_against VARCHAR)
SELECT score FROM table_name_83 WHERE away_team = "charlton athletic"
What score has charlton athletic as the away team?
CREATE TABLE table_name_83 (score VARCHAR, away_team VARCHAR)
SELECT decision FROM table_name_8 WHERE date = "march 18"
what is the decision on the date march 18?
CREATE TABLE table_name_8 (decision VARCHAR, date VARCHAR)
SELECT issue FROM table_name_22 WHERE date = "august 17, 2011"
What Issue number was released on August 17, 2011?
CREATE TABLE table_name_22 (issue VARCHAR, date VARCHAR)
SELECT name AS origin FROM table_16799784_12 WHERE name = "Ovda Fluctus"
What is every name origin with the name Ovda Fluctus?
CREATE TABLE table_16799784_12 (name VARCHAR)
SELECT programming FROM table_name_1 WHERE operator = "ivptc"
What channel has an operator of ivptc?
CREATE TABLE table_name_1 (programming VARCHAR, operator VARCHAR)
SELECT COUNT(pop__2010_) FROM table_18600760_2 WHERE water__sqmi_ = "0.818"
how many townships where pop (2010) and ater is 0.818
CREATE TABLE table_18600760_2 (pop__2010_ VARCHAR, water__sqmi_ VARCHAR)
SELECT race FROM table_name_90 WHERE time = "1:24.35"
Which race had a time of 1:24.35?
CREATE TABLE table_name_90 (race VARCHAR, time VARCHAR)
SELECT record FROM table_name_26 WHERE week > 12 AND game_site = "bye"
What's the record after week 12 with a game site of bye?
CREATE TABLE table_name_26 (record VARCHAR, week VARCHAR, game_site VARCHAR)
SELECT MIN(attendance) FROM table_name_37 WHERE week < 10 AND date = "november 12, 1967"
What is the lowest attendance for a game before 10 weeks on November 12, 1967
CREATE TABLE table_name_37 (attendance INTEGER, week VARCHAR, date VARCHAR)
SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' INTERSECT SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.departmen...
Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.
CREATE TABLE affiliated_with (physician VARCHAR, department VARCHAR); CREATE TABLE department (DepartmentID VARCHAR, name VARCHAR); CREATE TABLE physician (name VARCHAR, EmployeeID VARCHAR)
SELECT start FROM table_name_55 WHERE rank = "4"
Which start has 4 as a rank?
CREATE TABLE table_name_55 (start VARCHAR, rank VARCHAR)
SELECT song FROM table_name_14 WHERE year < 1994 AND uk_chart = "42"
Which Song of the Year was 42 on the UK charts prior to 1994?
CREATE TABLE table_name_14 (song VARCHAR, year VARCHAR, uk_chart VARCHAR)
SELECT nationality FROM table_10015132_7 WHERE years_in_toronto = "1997-98"
what nationality is the player who played from 1997-98
CREATE TABLE table_10015132_7 (nationality VARCHAR, years_in_toronto VARCHAR)
SELECT date FROM table_name_91 WHERE winning_driver = "stirling moss" AND race_name = "vi grand prix de caen"
What is the date that the winner driver is Stirling Moss in the race named vi grand prix de caen?
CREATE TABLE table_name_91 (date VARCHAR, winning_driver VARCHAR, race_name VARCHAR)
SELECT COUNT(pick) FROM table_name_60 WHERE college = "pittsburgh"
Which pick came from Pittsburgh?
CREATE TABLE table_name_60 (pick VARCHAR, college VARCHAR)
SELECT race FROM table_name_47 WHERE category = "formula 2 fia, non-championship" AND date = "july 30, 1950"
What is the Race on July 30, 1950 with a Formula 2 Fia, non-championship?
CREATE TABLE table_name_47 (race VARCHAR, category VARCHAR, date VARCHAR)
SELECT COUNT(date) FROM table_28925058_1 WHERE grand_prix = "Spanish grand_prix" AND race_winner = "Daniel Ruiz"
How many dates did Daniel Ruiz win the Spanish Grand Prix?
CREATE TABLE table_28925058_1 (date VARCHAR, grand_prix VARCHAR, race_winner VARCHAR)
SELECT athlete FROM table_name_7 WHERE fastest_time__s_ = 15.82
Which athlete has the fastest time of 15.82?
CREATE TABLE table_name_7 (athlete VARCHAR, fastest_time__s_ VARCHAR)
SELECT qual_1 FROM table_name_98 WHERE qual_2 = "58.861"
Which Qual 1 has a Qual 2 of 58.861?
CREATE TABLE table_name_98 (qual_1 VARCHAR, qual_2 VARCHAR)
SELECT grid FROM table_name_24 WHERE constructor = "toyota" AND time_retired = "+1:09.718"
What is the grid with a Toyota constructor and +1:09.718 as time/retired?
CREATE TABLE table_name_24 (grid VARCHAR, constructor VARCHAR, time_retired VARCHAR)
SELECT COUNT(crowd) FROM table_name_2 WHERE away_team = "footscray"
What was the crowd size for the game at Footscray?
CREATE TABLE table_name_2 (crowd VARCHAR, away_team VARCHAR)
SELECT 2 AS __f_ FROM table_name_34 WHERE verb = "khola"
What is the 2nd verb for Khola?
CREATE TABLE table_name_34 (verb VARCHAR)
SELECT us_viewers__in_millions_ FROM table_25084227_1 WHERE directed_by = "Michael Offer"
If the episode was directed by Michael Offer, how many US Viewers watched it?
CREATE TABLE table_25084227_1 (us_viewers__in_millions_ VARCHAR, directed_by VARCHAR)
SELECT record FROM table_name_55 WHERE date = "december 1, 1968"
What was the record on the date of december 1, 1968?
CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR)
SELECT airdate FROM table_name_46 WHERE length = "60 minutes"
When did the length of 60 minutes air?
CREATE TABLE table_name_46 (airdate VARCHAR, length VARCHAR)
SELECT population_in_1000__1931_ FROM table_name_62 WHERE car_plates__since_1937_ = "35-39"
tell me the population in 1000(1931) that has car plates since 1937 of 35-39.
CREATE TABLE table_name_62 (population_in_1000__1931_ VARCHAR, car_plates__since_1937_ VARCHAR)
SELECT date_to FROM table_name_47 WHERE name = "lee cook"
What is Date To, when Name is "Lee Cook"?
CREATE TABLE table_name_47 (date_to VARCHAR, name VARCHAR)
SELECT winning_score FROM table_name_39 WHERE margin = "3 strokes"
What is the winning score of the match with a margin of 3 strokes?
CREATE TABLE table_name_39 (winning_score VARCHAR, margin VARCHAR)
SELECT country FROM table_name_77 WHERE series_premiere = "september 4, 2006"
Which country had a series that premiered on September 4, 2006?
CREATE TABLE table_name_77 (country VARCHAR, series_premiere VARCHAR)
SELECT COUNT(laps) FROM table_name_93 WHERE time_retired = "+44.284"
How many laps were driven when the time/retired is +44.284?
CREATE TABLE table_name_93 (laps VARCHAR, time_retired VARCHAR)
SELECT operator FROM table_28035004_1 WHERE bodybuilder = "Roe"
Who is the operator when Roe was the bodybuilder?
CREATE TABLE table_28035004_1 (operator VARCHAR, bodybuilder VARCHAR)
SELECT time FROM table_name_38 WHERE score = "80-34"
What is the Time with a Score that is 80-34?
CREATE TABLE table_name_38 (time VARCHAR, score VARCHAR)
SELECT score FROM table_23486853_3 WHERE opponent = "Atlanta Thrashers"
What was the score for the Atlanta Thrashers?
CREATE TABLE table_23486853_3 (score VARCHAR, opponent VARCHAR)