question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
When was the final loss of the club last won in 2001 and has a total of 3 wins?
CREATE TABLE table_name_84 (last_final_lost VARCHAR, wins VARCHAR, last_win VARCHAR)
SELECT last_final_lost FROM table_name_84 WHERE wins = "3" AND last_win = "2001"
Which Week 3 Sept 14 has a Week 6 Oct 5 of kansas (4-1)?
CREATE TABLE table_name_87 (week_3_sept_14 VARCHAR, week_6_oct_5 VARCHAR)
SELECT week_3_sept_14 FROM table_name_87 WHERE week_6_oct_5 = "kansas (4-1)"
The game played at Sultan Qaboos Sports Complex, Muscat had what score?
CREATE TABLE table_name_99 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_99 WHERE venue = "sultan qaboos sports complex, muscat"
what is the game when the opponent is new york knickerbockers?
CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR)
SELECT SUM(game) FROM table_name_96 WHERE opponent = "new york knickerbockers"
How many games was High Points andre iguodala (29)?
CREATE TABLE table_17323042_11 (game VARCHAR, high_points VARCHAR)
SELECT COUNT(game) FROM table_17323042_11 WHERE high_points = "Andre Iguodala (29)"
What is the date of week 8?
CREATE TABLE table_name_23 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_23 WHERE week = 8
What was the score of the game played on December 17, with a H/A/N of H?
CREATE TABLE table_name_19 (score VARCHAR, h_a_n VARCHAR, date VARCHAR)
SELECT score FROM table_name_19 WHERE h_a_n = "h" AND date = "december 17"
Who was the jockey in group 1 at the 1400m distance at randwick?
CREATE TABLE table_20626467_1 (jockey VARCHAR, distance VARCHAR, class VARCHAR, venue VARCHAR)
SELECT jockey FROM table_20626467_1 WHERE class = "Group 1" AND venue = "Randwick" AND distance = "1400m"
Which province has evening gown score of 7.61
CREATE TABLE table_15081939_4 (province VARCHAR, evening_gown VARCHAR)
SELECT province FROM table_15081939_4 WHERE evening_gown = "7.61"
What was the date of the game that lasted 75:43?
CREATE TABLE table_name_93 (date VARCHAR, length_of_game VARCHAR)
SELECT date FROM table_name_93 WHERE length_of_game = "75:43"
What CFL team obtained a draft pick from North Dakota who plays OL position?
CREATE TABLE table_25085059_1 (cfl_team VARCHAR, position VARCHAR, college VARCHAR)
SELECT cfl_team FROM table_25085059_1 WHERE position = "OL" AND college = "North Dakota"
Which player is from Australia, and has a place of t9?
CREATE TABLE table_name_35 (player VARCHAR, place VARCHAR, country VARCHAR)
SELECT player FROM table_name_35 WHERE place = "t9" AND country = "australia"
Chauncey Billups (6) had a high assist on what date?
CREATE TABLE table_17355408_7 (date VARCHAR, high_assists VARCHAR)
SELECT date FROM table_17355408_7 WHERE high_assists = "Chauncey Billups (6)"
Which nation has 0 golds and more than 1 silver?
CREATE TABLE table_name_20 (nation VARCHAR, gold VARCHAR, silver VARCHAR)
SELECT nation FROM table_name_20 WHERE gold = 0 AND silver > 1
What is European Release Date, when North American Release Date is "2013-03-05"?
CREATE TABLE table_name_50 (european_release_date VARCHAR, north_american_release_date VARCHAR)
SELECT european_release_date FROM table_name_50 WHERE north_american_release_date = "2013-03-05"
What type of record is the result of the game Montreal 31 @ Calgary 32?
CREATE TABLE table_21436373_5 (type_of_record VARCHAR, result_games VARCHAR)
SELECT type_of_record FROM table_21436373_5 WHERE result_games = "Montreal 31 @ Calgary 32"
What type ends in 2011, has a free transfer fee, and is sourced in leeds united?
CREATE TABLE table_name_26 (type VARCHAR, source VARCHAR, ends VARCHAR, transfer_fee VARCHAR)
SELECT type FROM table_name_26 WHERE ends = "2011" AND transfer_fee = "free" AND source = "leeds united"
what is the date of appointment for the team osasuna?
CREATE TABLE table_24231638_3 (date_of_appointment VARCHAR, team VARCHAR)
SELECT date_of_appointment FROM table_24231638_3 WHERE team = "Osasuna"
How many provinces have a density of 165.81?
CREATE TABLE table_254234_1 (iso_ VARCHAR, density² VARCHAR)
SELECT COUNT(iso_) AS № FROM table_254234_1 WHERE density² = "165.81"
What Club has 13 wins, goals against less than 48, and a position of 4?
CREATE TABLE table_name_26 (club VARCHAR, position VARCHAR, wins VARCHAR, goals_against VARCHAR)
SELECT club FROM table_name_26 WHERE wins = 13 AND goals_against < 48 AND position = 4
List the date the claim was made, the date it was settled and the amount settled for all the claims which had exactly one settlement.
CREATE TABLE Claims (claim_id VARCHAR, date_claim_made VARCHAR, Date_Claim_Settled VARCHAR, Claim_id VARCHAR); CREATE TABLE Settlements (Claim_id VARCHAR)
SELECT T1.claim_id, T1.date_claim_made, T1.Date_Claim_Settled FROM Claims AS T1 JOIN Settlements AS T2 ON T1.Claim_id = T2.Claim_id GROUP BY T1.claim_id HAVING COUNT(*) = 1
What province/region is RJTQ located?
CREATE TABLE table_name_91 (province_region VARCHAR, icao VARCHAR)
SELECT province_region FROM table_name_91 WHERE icao = "rjtq"
What is the score at valley parade on 10/6/01?
CREATE TABLE table_name_74 (score VARCHAR, venue VARCHAR, date VARCHAR)
SELECT score FROM table_name_74 WHERE venue = "valley parade" AND date = "10/6/01"
Nigel Mansell was the driver in what Entrant?
CREATE TABLE table_name_22 (entrant VARCHAR, driver VARCHAR)
SELECT entrant FROM table_name_22 WHERE driver = "nigel mansell"
When kitchener rangers (oha) is the college, junior, or club team what is the position?
CREATE TABLE table_1965650_9 (position VARCHAR, college_junior_club_team VARCHAR)
SELECT position FROM table_1965650_9 WHERE college_junior_club_team = "Kitchener Rangers (OHA)"
Name the tongyong for chinese of 湖內區
CREATE TABLE table_17015_2 (tongyong VARCHAR, chinese VARCHAR)
SELECT tongyong FROM table_17015_2 WHERE chinese = "湖內區"
If the runs is 5028, what is the matches maximum?
CREATE TABLE table_23316034_16 (matches INTEGER, runs VARCHAR)
SELECT MAX(matches) FROM table_23316034_16 WHERE runs = 5028
Which tyres has more than 5 laps with team nissan motorsports international?
CREATE TABLE table_name_89 (tyres VARCHAR, laps VARCHAR, team VARCHAR)
SELECT tyres FROM table_name_89 WHERE laps > 5 AND team = "nissan motorsports international"
What is the total Gold's less than 0?
CREATE TABLE table_name_44 (total VARCHAR, gold INTEGER)
SELECT COUNT(total) FROM table_name_44 WHERE gold < 0
On what date was the crowd size of 71,789?
CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_35 WHERE attendance = "71,789"
In 1985, how many points were earned by the entrant with the March 85B chassis?
CREATE TABLE table_name_77 (points INTEGER, year VARCHAR, chassis VARCHAR)
SELECT MAX(points) FROM table_name_77 WHERE year = 1985 AND chassis = "march 85b"
Name the tournament for outcome of winner and clay surface with opponent of aranza salut
CREATE TABLE table_name_61 (tournament VARCHAR, opponent VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_61 WHERE outcome = "winner" AND surface = "clay" AND opponent = "aranza salut"
Which Tied has Matches of 1, and a Lost of 0, and a Team of durham?
CREATE TABLE table_name_95 (tied VARCHAR, team VARCHAR, matches VARCHAR, lost VARCHAR)
SELECT tied FROM table_name_95 WHERE matches = "1" AND lost = "0" AND team = "durham"
Which general election had a vote swing of 1.84?
CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)
SELECT general_election FROM table_149330_1 WHERE votes_swing = "1.84"
What was the rank for Great Britain?
CREATE TABLE table_name_28 (rank VARCHAR, country VARCHAR)
SELECT COUNT(rank) FROM table_name_28 WHERE country = "great britain"
Name the lowest frequency for brand of radio manantial
CREATE TABLE table_name_54 (frequency INTEGER, brand VARCHAR)
SELECT MIN(frequency) FROM table_name_54 WHERE brand = "radio manantial"
What is the record for the game with a score of 7–5?
CREATE TABLE table_name_10 (record VARCHAR, score VARCHAR)
SELECT record FROM table_name_10 WHERE score = "7–5"
How many couples have an average of 25.3?
CREATE TABLE table_20424140_3 (couple VARCHAR, average VARCHAR)
SELECT COUNT(couple) FROM table_20424140_3 WHERE average = "25.3"
Where was the tournament that happened in 1987 on a clay surface?
CREATE TABLE table_name_18 (tournament VARCHAR, date VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_18 WHERE date = 1987 AND surface = "clay"
Who were the candidates when Jack Fields was the incumbent?
CREATE TABLE table_1341577_44 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1341577_44 WHERE incumbent = "Jack Fields"
What is the first and last name of the faculty participating in the most activities?
CREATE TABLE Faculty_participates_in (facID VARCHAR); CREATE TABLE Faculty (fname VARCHAR, lname VARCHAR, FacID VARCHAR, facID VARCHAR)
SELECT T1.fname, T1.lname FROM Faculty AS T1 JOIN Faculty_participates_in AS T2 ON T1.facID = T2.facID GROUP BY T1.FacID ORDER BY COUNT(*) DESC LIMIT 1
What type has a Date of 8 dec 16, and a Ship of duchess of cornwall?
CREATE TABLE table_name_75 (type VARCHAR, date VARCHAR, ship VARCHAR)
SELECT type FROM table_name_75 WHERE date = "8 dec 16" AND ship = "duchess of cornwall"
What rank is the nation with 2 silver medals?
CREATE TABLE table_name_44 (rank VARCHAR, silver VARCHAR)
SELECT rank FROM table_name_44 WHERE silver = "2"
What affiliations have Pick #s under 32?
CREATE TABLE table_name_28 (affiliation VARCHAR, pick__number INTEGER)
SELECT affiliation FROM table_name_28 WHERE pick__number < 32
which group stage was there 0 play-offs and 12 clubs played in it
CREATE TABLE table_19412902_1 (group_stage VARCHAR, play_off VARCHAR, clubs VARCHAR)
SELECT COUNT(group_stage) FROM table_19412902_1 WHERE play_off = 0 AND clubs = 12
Which Cuts made has a Top-25 smaller than 3?
CREATE TABLE table_name_26 (cuts_made INTEGER, top_25 INTEGER)
SELECT MAX(cuts_made) FROM table_name_26 WHERE top_25 < 3
What is the score when the tie number is 6?
CREATE TABLE table_name_58 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_58 WHERE tie_no = "6"
Find the common login name of course authors and students.
CREATE TABLE Course_Authors_and_Tutors (login_name VARCHAR); CREATE TABLE Students (login_name VARCHAR)
SELECT login_name FROM Course_Authors_and_Tutors INTERSECT SELECT login_name FROM Students
List the name of all different customers who have some loan sorted by their total loan amount.
CREATE TABLE loan (cust_id VARCHAR, amount INTEGER); CREATE TABLE customer (cust_name VARCHAR, cust_id VARCHAR)
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id GROUP BY T1.cust_name ORDER BY SUM(T2.amount)
What is the capital (endonym) where Douglas is the Capital (exonym)?
CREATE TABLE table_1008653_9 (capital___endonym__ VARCHAR, capital___exonym__ VARCHAR)
SELECT capital___endonym__ FROM table_1008653_9 WHERE capital___exonym__ = "Douglas"
What is the rank of American Pie 2?
CREATE TABLE table_name_4 (rank INTEGER, title VARCHAR)
SELECT MIN(rank) FROM table_name_4 WHERE title = "american pie 2"
What is the Score with an Outcome of runner-up, and a Partner that is elizabeth little?
CREATE TABLE table_name_1 (score VARCHAR, outcome VARCHAR, partner VARCHAR)
SELECT score FROM table_name_1 WHERE outcome = "runner-up" AND partner = "elizabeth little"
Which team had $15,785 in winnings?
CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR)
SELECT team_s_ FROM table_26609690_1 WHERE winnings = "$15,785"
How many dates was knockhill?
CREATE TABLE table_24547593_1 (date VARCHAR, circuit VARCHAR)
SELECT COUNT(date) FROM table_24547593_1 WHERE circuit = "Knockhill"
What club captain is John Hutchinson in?
CREATE TABLE table_name_95 (club VARCHAR, captain VARCHAR)
SELECT club FROM table_name_95 WHERE captain = "john hutchinson"
What is the event name with the number 8M?
CREATE TABLE table_22050544_4 (event VARCHAR, event__number VARCHAR)
SELECT event FROM table_22050544_4 WHERE event__number = "8M"
Which location names contain the word "film"?
CREATE TABLE LOCATIONS (Location_Name VARCHAR)
SELECT Location_Name FROM LOCATIONS WHERE Location_Name LIKE "%film%"
What is the Attendance for a Week earlier than 16, and a Date of bye?
CREATE TABLE table_name_39 (attendance VARCHAR, week VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_39 WHERE week < 16 AND date = "bye"
How many weddings are there in year 2016?
CREATE TABLE wedding (YEAR VARCHAR)
SELECT COUNT(*) FROM wedding WHERE YEAR = 2016
In what year was the cfl team in edmonton, alberta established?
CREATE TABLE table_name_6 (est VARCHAR, city VARCHAR, state_province VARCHAR, league VARCHAR)
SELECT est FROM table_name_6 WHERE state_province = "alberta" AND league = "cfl" AND city = "edmonton"
What is the smallest 07-08 oi best value?
CREATE TABLE table_23938357_7 (Id VARCHAR)
SELECT MIN(07 AS _08_oi_best) FROM table_23938357_7
What is Left Office, when Took Office is 1998?
CREATE TABLE table_name_25 (left_office VARCHAR, took_office VARCHAR)
SELECT left_office FROM table_name_25 WHERE took_office = "1998"
What is 2006-07 Season, when Team is "KF Fushë Kosova"?
CREATE TABLE table_name_64 (team VARCHAR)
SELECT 2006 AS _07_season FROM table_name_64 WHERE team = "kf fushë kosova"
What is the power stage wins total number if the wins is 10?
CREATE TABLE table_23385853_20 (power_stage_wins VARCHAR, wins VARCHAR)
SELECT COUNT(power_stage_wins) FROM table_23385853_20 WHERE wins = 10
After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23?
CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)
SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = "ferrari v8" AND points < 23
What was the elapsed time for the championship that had $9,377.42 in prize money?
CREATE TABLE table_22050544_4 (elapsed_time VARCHAR, prize VARCHAR)
SELECT elapsed_time FROM table_22050544_4 WHERE prize = "$9,377.42"
What is the time/retired for mika häkkinen
CREATE TABLE table_name_38 (time_retired VARCHAR, driver VARCHAR)
SELECT time_retired FROM table_name_38 WHERE driver = "mika häkkinen"
What are the amount of wins when the draws are less than 0 and the against is 1348?
CREATE TABLE table_name_82 (wins INTEGER, against VARCHAR, draws VARCHAR)
SELECT MIN(wins) FROM table_name_82 WHERE against = 1348 AND draws < 0
Tell me the result for warsaw 1929
CREATE TABLE table_name_8 (result VARCHAR, location VARCHAR, year VARCHAR)
SELECT result FROM table_name_8 WHERE location = "warsaw" AND year = 1929
If the home team was footscray which venue did they play it?
CREATE TABLE table_name_53 (venue VARCHAR, home_team VARCHAR)
SELECT venue FROM table_name_53 WHERE home_team = "footscray"
What year were outputs is 2x pro bias, rca loop out and notes is vacuum tube released?
CREATE TABLE table_25276250_3 (release_year VARCHAR, outputs VARCHAR, notes VARCHAR)
SELECT release_year FROM table_25276250_3 WHERE outputs = "2x Pro Bias, RCA Loop Out" AND notes = "Vacuum tube"
With a works number of 40864 for the builder of Baldwin Locomotive Works, the number listed is?
CREATE TABLE table_name_15 (number VARCHAR, builder VARCHAR, works_number VARCHAR)
SELECT number FROM table_name_15 WHERE builder = "baldwin locomotive works" AND works_number = 40864
The station located in Albuquerque has been owned since what year?
CREATE TABLE table_11147852_1 (owned_since VARCHAR, city_of_license_market VARCHAR)
SELECT owned_since FROM table_11147852_1 WHERE city_of_license_market = "Albuquerque"
What player originally played for the Los Angeles Kings?
CREATE TABLE table_name_26 (player VARCHAR, original_team VARCHAR)
SELECT player FROM table_name_26 WHERE original_team = "los angeles kings"
What is Kammeon Holsey's height?
CREATE TABLE table_24055352_1 (height VARCHAR, name VARCHAR)
SELECT height FROM table_24055352_1 WHERE name = "Kammeon Holsey"
What year did the team based in the city of Winamac join the conference?
CREATE TABLE table_name_6 (year_joined VARCHAR, city VARCHAR)
SELECT year_joined FROM table_name_6 WHERE city = "winamac"
Name the total number of people that went when the record was 16-22
CREATE TABLE table_name_32 (attendance VARCHAR, record VARCHAR)
SELECT COUNT(attendance) FROM table_name_32 WHERE record = "16-22"
What is the report in the tournament that started at 12:30?
CREATE TABLE table_name_75 (report VARCHAR, time VARCHAR)
SELECT report FROM table_name_75 WHERE time = "12:30"
What is the date made that has an associated fleet number of 4?
CREATE TABLE table_name_99 (date_made VARCHAR, fleet_numbers VARCHAR)
SELECT date_made FROM table_name_99 WHERE fleet_numbers = "4"
What is the total for Chen Yibing ( chn ), when his B Score was smaller than 9.225?
CREATE TABLE table_name_87 (total VARCHAR, gymnast VARCHAR, b_score VARCHAR)
SELECT COUNT(total) FROM table_name_87 WHERE gymnast = "chen yibing ( chn )" AND b_score < 9.225
What was the rank for karen frohner with under 1266 points?
CREATE TABLE table_name_81 (rank INTEGER, name VARCHAR, points VARCHAR)
SELECT AVG(rank) FROM table_name_81 WHERE name = "karen frohner" AND points < 1266
What is the purpose for the katherine freq of 8rn?
CREATE TABLE table_name_50 (purpose VARCHAR, freq_currently VARCHAR, area_served VARCHAR)
SELECT purpose FROM table_name_50 WHERE freq_currently = "8rn" AND area_served = "katherine"
What is the semi-final dual television commentator status of the year with Pierre Tchernia as the grand final television commentator and an unknown spokesperson?
CREATE TABLE table_name_96 (semi_final_dual_television_commentator VARCHAR, grand_final_television_commentator VARCHAR, spokesperson VARCHAR)
SELECT semi_final_dual_television_commentator FROM table_name_96 WHERE grand_final_television_commentator = "pierre tchernia" AND spokesperson = "unknown"
How many golds have denmark as the nation, with a total less than 1?
CREATE TABLE table_name_86 (gold VARCHAR, nation VARCHAR, total VARCHAR)
SELECT COUNT(gold) FROM table_name_86 WHERE nation = "denmark" AND total < 1
What date did Footscray play at home?
CREATE TABLE table_name_92 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_92 WHERE home_team = "footscray"
How many next in lines had heirs of Archduke Karl?
CREATE TABLE table_28241890_2 (next_in_line VARCHAR, heir VARCHAR)
SELECT COUNT(next_in_line) FROM table_28241890_2 WHERE heir = "Archduke Karl"
What are all the course names of the courses which ever have students enrolled in?
CREATE TABLE Courses (course_name VARCHAR, course_id VARCHAR); CREATE TABLE Student_Enrolment_Courses (course_id VARCHAR)
SELECT DISTINCT T1.course_name FROM Courses AS T1 JOIN Student_Enrolment_Courses AS T2 ON T1.course_id = T2.course_id
What is the class of the locomotive with a wheel arrangement of 4-6-0 and a quantity made of 14?
CREATE TABLE table_name_47 (class VARCHAR, wheel_arrangement VARCHAR, quantity_made VARCHAR)
SELECT class FROM table_name_47 WHERE wheel_arrangement = "4-6-0" AND quantity_made = "14"
What is the Date of the Fortified House?
CREATE TABLE table_name_39 (date VARCHAR, type VARCHAR)
SELECT date FROM table_name_39 WHERE type = "fortified house"
What team did the New York Rangers recruit a player from?
CREATE TABLE table_2886617_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_2886617_4 WHERE nhl_team = "New York Rangers"
What year did Tom Watson win?
CREATE TABLE table_name_87 (year_s__won VARCHAR, player VARCHAR)
SELECT year_s__won FROM table_name_87 WHERE player = "tom watson"
What is the default desktop environment when the edition is kde and the compatible repository is ubuntu 13.04?
CREATE TABLE table_27329061_2 (default_desktop_environment VARCHAR, edition VARCHAR, compatible_repository VARCHAR)
SELECT default_desktop_environment FROM table_27329061_2 WHERE edition = "KDE" AND compatible_repository = "Ubuntu 13.04"
Which Age (as of 1 February 2014) has a Rank smaller than 9, and a Death date of 24 january 2007?
CREATE TABLE table_name_3 (age__as_of_1_february_2014_ VARCHAR, rank VARCHAR, death_date VARCHAR)
SELECT age__as_of_1_february_2014_ FROM table_name_3 WHERE rank < 9 AND death_date = "24 january 2007"
What opponent had an attendance of 63,659?
CREATE TABLE table_name_78 (opponent_number VARCHAR, attendance VARCHAR)
SELECT opponent_number FROM table_name_78 WHERE attendance = "63,659"
What's the series of Buddy The Woodsman by director Jack King?
CREATE TABLE table_name_33 (series VARCHAR, director VARCHAR, title VARCHAR)
SELECT series FROM table_name_33 WHERE director = "jack king" AND title = "buddy the woodsman"
What away team played in Lake Oval?
CREATE TABLE table_name_63 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_63 WHERE venue = "lake oval"
What is the 2nd leg of team 1 Zamalek SC?
CREATE TABLE table_name_31 (team_1 VARCHAR)
SELECT 2 AS nd_leg FROM table_name_31 WHERE team_1 = "zamalek sc"
What is Date, when Points is 13, and when Location is RBC Center?
CREATE TABLE table_name_58 (date VARCHAR, points VARCHAR, location VARCHAR)
SELECT date FROM table_name_58 WHERE points = 13 AND location = "rbc center"
How tall is the 52 story building?
CREATE TABLE table_name_82 (height VARCHAR, stories VARCHAR)
SELECT height FROM table_name_82 WHERE stories = 52
What year was Black Swan up for the Gotham Awards?
CREATE TABLE table_name_47 (year VARCHAR, title VARCHAR, award VARCHAR)
SELECT COUNT(year) FROM table_name_47 WHERE title = "black swan" AND award = "gotham awards"