question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What Elector has an Elevator of Alexander III and a Cardinalatial title of Bishop of Palestrina?
CREATE TABLE table_name_31 (elector VARCHAR, elevator VARCHAR, cardinalatial_title VARCHAR)
SELECT elector FROM table_name_31 WHERE elevator = "alexander iii" AND cardinalatial_title = "bishop of palestrina"
What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein?
CREATE TABLE table_18055005_1 (no_in_series VARCHAR, viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT no_in_series FROM table_18055005_1 WHERE viewers__millions_ = "4.1" AND written_by = "Douglas Lieblein"
What numbered pick attended western ontario and is an OL?
CREATE TABLE table_24540893_6 (pick__number VARCHAR, school VARCHAR, position VARCHAR)
SELECT pick__number FROM table_24540893_6 WHERE school = "Western Ontario" AND position = "OL"
What is Attendance, when Date is "26 December 2004"?
CREATE TABLE table_name_56 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_56 WHERE date = "26 december 2004"
Which player has 17 blocks?
CREATE TABLE table_24912693_4 (player VARCHAR, blocks VARCHAR)
SELECT player FROM table_24912693_4 WHERE blocks = 17
Which DOB has Bats of r, and Throws of r, and a Position of rhp, and a First of john?
CREATE TABLE table_name_58 (dob VARCHAR, first VARCHAR, position VARCHAR, bats VARCHAR, throws VARCHAR)
SELECT dob FROM table_name_58 WHERE bats = "r" AND throws = "r" AND position = "rhp" AND first = "john"
Which Result that is on june 5?
CREATE TABLE table_name_79 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_79 WHERE date = "june 5"
Who is moving to Metalurh Donetsk?
CREATE TABLE table_name_9 (name VARCHAR, moving_to VARCHAR)
SELECT name FROM table_name_9 WHERE moving_to = "metalurh donetsk"
What is the IHSAA class for the school in 10 Clark county with mascot of the Mustangs?
CREATE TABLE table_name_73 (ihsaa_class VARCHAR, county VARCHAR, mascot VARCHAR)
SELECT ihsaa_class FROM table_name_73 WHERE county = "10 clark" AND mascot = "mustangs"
What was the result of the playoffs when the regular season was 7th, southeast
CREATE TABLE table_1214035_1 (playoffs VARCHAR, regular_season VARCHAR)
SELECT playoffs FROM table_1214035_1 WHERE regular_season = "7th, Southeast"
For the gte northwest classic with the score of 207 (-9), what is the average 1st prize ($)
CREATE TABLE table_name_71 (score VARCHAR, tournament VARCHAR)
SELECT AVG(1 AS st_prize__) AS $__ FROM table_name_71 WHERE score = "207 (-9)" AND tournament = "gte northwest classic"
What is the College of Rice's highest overall for the guard position?
CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, college VARCHAR)
SELECT MAX(overall) FROM table_name_62 WHERE position = "guard" AND college = "rice"
What's the heigh of the player who went to lake howell high school?
CREATE TABLE table_name_72 (height VARCHAR, school VARCHAR)
SELECT height FROM table_name_72 WHERE school = "lake howell high school"
Attendance of 23,150 had what opponent?
CREATE TABLE table_name_49 (opponent VARCHAR, attendance VARCHAR)
SELECT opponent FROM table_name_49 WHERE attendance = "23,150"
What high assists have a game greater than 46?
CREATE TABLE table_name_61 (high_assists VARCHAR, game INTEGER)
SELECT high_assists FROM table_name_61 WHERE game > 46
what is the total sack for mike green when fumr is less than 0?
CREATE TABLE table_name_40 (sack INTEGER, player VARCHAR, fumr VARCHAR)
SELECT SUM(sack) FROM table_name_40 WHERE player = "mike green" AND fumr < 0
Name the type with M809 series of m814
CREATE TABLE table_name_16 (type VARCHAR, m809_series VARCHAR)
SELECT type FROM table_name_16 WHERE m809_series = "m814"
Who was the opponent on the September 3 game?
CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_38 WHERE date = "september 3"
What ship size had a cargo value of $46,000 in 2006?
CREATE TABLE table_name_89 (ship_size VARCHAR)
SELECT ship_size FROM table_name_89 WHERE 2006 = "$46,000"
How many were in attendance with a Result of l 17–10?
CREATE TABLE table_name_76 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_76 WHERE result = "l 17–10"
What Name has a Time of 01:56:52?
CREATE TABLE table_name_46 (name VARCHAR, time VARCHAR)
SELECT name FROM table_name_46 WHERE time = "01:56:52"
What is the grid associated with a Time/Retired of + 1 lap, and under 7 points?
CREATE TABLE table_name_99 (grid INTEGER, time_retired VARCHAR, points VARCHAR)
SELECT MIN(grid) FROM table_name_99 WHERE time_retired = "+ 1 lap" AND points < 7
What was the attendance on week 1?
CREATE TABLE table_name_41 (attendance VARCHAR, week VARCHAR)
SELECT attendance FROM table_name_41 WHERE week = 1
What is the name for the assembly segment with a constituency number of 214?
CREATE TABLE table_name_55 (name VARCHAR, constituency_number VARCHAR)
SELECT name FROM table_name_55 WHERE constituency_number = "214"
What is the Senators' division record?
CREATE TABLE table_name_39 (division_record VARCHAR, team VARCHAR)
SELECT division_record FROM table_name_39 WHERE team = "senators"
Where was the audition venue where Peninha was the guest fourth judge?
CREATE TABLE table_27615445_1 (audition_venue VARCHAR, guest_fourth_judge VARCHAR)
SELECT audition_venue FROM table_27615445_1 WHERE guest_fourth_judge = "Peninha"
What team is sponsored by chameleon sunglasses?
CREATE TABLE table_name_63 (team VARCHAR, sponsor VARCHAR)
SELECT team FROM table_name_63 WHERE sponsor = "chameleon sunglasses"
How many times was w. arthur winstead first elected?
CREATE TABLE table_1342218_24 (first_elected VARCHAR, incumbent VARCHAR)
SELECT COUNT(first_elected) FROM table_1342218_24 WHERE incumbent = "W. Arthur Winstead"
What is the earliest April date with a game less than 76?
CREATE TABLE table_name_10 (april INTEGER, game INTEGER)
SELECT MIN(april) FROM table_name_10 WHERE game < 76
What is the most number of laps run by Ilario Dionisi?
CREATE TABLE table_name_89 (laps INTEGER, rider VARCHAR)
SELECT MAX(laps) FROM table_name_89 WHERE rider = "ilario dionisi"
From what catalog was the release that happened on April 12, 1968, and in LP format?
CREATE TABLE table_name_28 (catalog VARCHAR, format VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_28 WHERE format = "lp" AND date = "april 12, 1968"
How many categories of new entries this round are there for the fourth round proper?
CREATE TABLE table_17814838_1 (new_entries_this_round VARCHAR, round VARCHAR)
SELECT COUNT(new_entries_this_round) FROM table_17814838_1 WHERE round = "Fourth round Proper"
What is the kickoff time on November 10, 2002?
CREATE TABLE table_name_28 (kickoff_time VARCHAR, date VARCHAR)
SELECT kickoff_time FROM table_name_28 WHERE date = "november 10, 2002"
Find the average age and experience working length of journalists working on different role type.
CREATE TABLE news_report (work_type VARCHAR, journalist_id VARCHAR); CREATE TABLE journalist (age INTEGER, journalist_id VARCHAR)
SELECT AVG(t1.age), AVG(Years_working), t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type
How many episodes were directed by Sarah Pia Anderson?
CREATE TABLE table_23287683_1 (title VARCHAR, directed_by VARCHAR)
SELECT COUNT(title) FROM table_23287683_1 WHERE directed_by = "Sarah Pia Anderson"
What is the period total number if the name is Geraldão?
CREATE TABLE table_24565004_8 (period VARCHAR, name VARCHAR)
SELECT COUNT(period) FROM table_24565004_8 WHERE name = "Geraldão"
What network airs on virtual channel 23.1?
CREATE TABLE table_2857352_3 (network VARCHAR, virtual_channel VARCHAR)
SELECT network FROM table_2857352_3 WHERE virtual_channel = "23.1"
Who was the lead with John Shuster as skip in the season of 2009–10?
CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)
SELECT lead FROM table_name_83 WHERE skip = "john shuster" AND season = "2009–10"
What is Shooter, when Total is "21"?
CREATE TABLE table_name_51 (shooter VARCHAR, total VARCHAR)
SELECT shooter FROM table_name_51 WHERE total = "21"
Where did the cable-stayed Badong Bridge open in 2005?
CREATE TABLE table_name_18 (location VARCHAR, name VARCHAR, type VARCHAR, opened VARCHAR)
SELECT location FROM table_name_18 WHERE type = "cable-stayed" AND opened = 2005 AND name = "badong bridge"
What was the television that was dated December 28, 2009?
CREATE TABLE table_23718905_6 (television VARCHAR, date VARCHAR)
SELECT television FROM table_23718905_6 WHERE date = "December 28, 2009"
What was the Tie Number of the Bradford City away team?
CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR)
SELECT tie_no FROM table_name_7 WHERE away_team = "bradford city"
What is the release date if the code name is Aoba?
CREATE TABLE table (release_date VARCHAR, code_name VARCHAR)
SELECT release_date FROM table WHERE code_name = "Aoba"
What was the circuit for alberto ascari josé froilán gonzález?
CREATE TABLE table_name_83 (circuit VARCHAR, fastest_lap VARCHAR)
SELECT circuit FROM table_name_83 WHERE fastest_lap = "alberto ascari josé froilán gonzález"
what's the total number of singles w-l with doubles w-l of 0–0 and total w-l of 3–1
CREATE TABLE table_10023387_1 (singles_w_l VARCHAR, doubles_w_l VARCHAR, total_w_l VARCHAR)
SELECT COUNT(singles_w_l) FROM table_10023387_1 WHERE doubles_w_l = "0–0" AND total_w_l = "3–1"
Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308?
CREATE TABLE table_name_81 (Id VARCHAR)
SELECT MIN(2011) FROM table_name_81 WHERE 1948 < 15872624 AND 1966 = 263103 AND 1992 > 266308
how many office with department being department of justice kagawaran ng katarungan
CREATE TABLE table_1331313_1 (office VARCHAR, department VARCHAR)
SELECT COUNT(office) FROM table_1331313_1 WHERE department = "department of Justice Kagawaran ng Katarungan"
How many transfer windows coming from Crystal Palace?
CREATE TABLE table_17596418_4 (COUnT VARCHAR, moving_from VARCHAR)
SELECT COUnT AS transfer_window FROM table_17596418_4 WHERE moving_from = "Crystal palace"
Name the license for 2009-05-25 v 7.61
CREATE TABLE table_19495707_1 (license VARCHAR, latest_release_date_and_version VARCHAR)
SELECT license FROM table_19495707_1 WHERE latest_release_date_and_version = "2009-05-25 v 7.61"
What IHSAA Football Class has 20 elkhart as the county?
CREATE TABLE table_name_39 (ihsaa_football_class VARCHAR, county VARCHAR)
SELECT ihsaa_football_class FROM table_name_39 WHERE county = "20 elkhart"
What is the total rank of Hungary (HUN) when the bronze medals were less than 0?
CREATE TABLE table_name_84 (rank INTEGER, nation VARCHAR, bronze VARCHAR)
SELECT SUM(rank) FROM table_name_84 WHERE nation = "hungary (hun)" AND bronze < 0
Which Weight has a Power of kw (hp) at 1,800rpm, and a Name of 9 nc?
CREATE TABLE table_name_98 (weight VARCHAR, power VARCHAR, name VARCHAR)
SELECT weight FROM table_name_98 WHERE power = "kw (hp) at 1,800rpm" AND name = "9 nc"
Murupara has a roll greater than 296 for what years?
CREATE TABLE table_name_6 (years VARCHAR, roll VARCHAR, area VARCHAR)
SELECT years FROM table_name_6 WHERE roll > 296 AND area = "murupara"
How many years was the film The Blossoming of Maximo Oliveros entered?
CREATE TABLE table_17919342_1 (year__ceremony_ VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(year__ceremony_) FROM table_17919342_1 WHERE film_title_used_in_nomination = "The Blossoming of Maximo Oliveros"
What value has negative infinity?
CREATE TABLE table_name_82 (value VARCHAR, type VARCHAR)
SELECT value FROM table_name_82 WHERE type = "negative infinity"
What was the winning score in the Alfred Dunhill links championship?
CREATE TABLE table_name_35 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_35 WHERE tournament = "alfred dunhill links championship"
What is the place of "A Lament for Ying"?
CREATE TABLE table_1805919_1 (standard_order INTEGER, english_translation VARCHAR)
SELECT MAX(standard_order) FROM table_1805919_1 WHERE english_translation = "A Lament for Ying"
How many share figures are there for the episode that aired on October 17, 2007?
CREATE TABLE table_24910733_2 (share VARCHAR, air_date VARCHAR)
SELECT COUNT(share) FROM table_24910733_2 WHERE air_date = "October 17, 2007"
What team was the opponent when the score was 25-0?
CREATE TABLE table_name_7 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_7 WHERE score = "25-0"
What year is the Grim Fandango with a windows platform?
CREATE TABLE table_name_36 (year VARCHAR, platform_s_ VARCHAR, game VARCHAR)
SELECT year FROM table_name_36 WHERE platform_s_ = "windows" AND game = "grim fandango"
What is the Lomavren associated with a Persian of se?
CREATE TABLE table_name_32 (lomavren VARCHAR, persian VARCHAR)
SELECT lomavren FROM table_name_32 WHERE persian = "se"
What was the enrollment of the school founded in 1846?
CREATE TABLE table_16381914_1 (enrollment VARCHAR, founded VARCHAR)
SELECT enrollment FROM table_16381914_1 WHERE founded = 1846
What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59?
CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR)
SELECT name FROM table_name_56 WHERE district = "nagpur" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "59"
What is the College of the WR Player from SWC Conf?
CREATE TABLE table_name_70 (college VARCHAR, conf VARCHAR, pos VARCHAR)
SELECT college FROM table_name_70 WHERE conf = "swc" AND pos = "wr"
Find the last name of the first ever contact person of the organization with the highest UK Vat number.
CREATE TABLE organizations (uk_vat_number INTEGER); CREATE TABLE individuals (individual_last_name VARCHAR, individual_id VARCHAR); CREATE TABLE organizations (organization_id VARCHAR, uk_vat_number INTEGER); CREATE TABLE organization_contact_individuals (organization_id VARCHAR, individual_id VARCHAR, date_contact_to ...
SELECT t3.individual_last_name FROM organizations AS t1 JOIN organization_contact_individuals AS t2 ON t1.organization_id = t2.organization_id JOIN individuals AS t3 ON t2.individual_id = t3.individual_id WHERE t1.uk_vat_number = (SELECT MAX(uk_vat_number) FROM organizations) ORDER BY t2.date_contact_to LIMIT 1
What is the score when the player is Matt Kuchar?
CREATE TABLE table_28498999_5 (score VARCHAR, player VARCHAR)
SELECT score FROM table_28498999_5 WHERE player = "Matt Kuchar"
What was the 1st leg for Team 2, Leeds United?
CREATE TABLE table_name_14 (team_2 VARCHAR)
SELECT 1 AS st_leg FROM table_name_14 WHERE team_2 = "leeds united"
display the department ID, full name (first and last name), salary for those employees who is highest salary in every department.
CREATE TABLE employees (first_name VARCHAR, last_name VARCHAR, salary INTEGER, department_id VARCHAR)
SELECT first_name, last_name, salary, department_id, MAX(salary) FROM employees GROUP BY department_id
What is the number of top-25s in events under 13, cuts made under 3, and 1 top-10?
CREATE TABLE table_name_47 (top_25 VARCHAR, top_10 VARCHAR, events VARCHAR, cuts_made VARCHAR)
SELECT top_25 FROM table_name_47 WHERE events < 13 AND cuts_made < 3 AND top_10 = 1
What is the League Cup value for 1991–present?
CREATE TABLE table_name_13 (league VARCHAR, years VARCHAR)
SELECT league AS Cup FROM table_name_13 WHERE years = "1991–present"
What was the club when home ground was Central Reserve?
CREATE TABLE table_name_59 (club VARCHAR, home_ground VARCHAR)
SELECT club FROM table_name_59 WHERE home_ground = "central reserve"
I want to know the 2013 when 2001 was wta premier 5 tournaments
CREATE TABLE table_name_87 (Id VARCHAR)
SELECT 2013 FROM table_name_87 WHERE 2001 = "wta premier 5 tournaments"
How many golds does Germany have with more than 1 silver?
CREATE TABLE table_name_74 (gold INTEGER, silver VARCHAR, nation VARCHAR)
SELECT SUM(gold) FROM table_name_74 WHERE silver > 1 AND nation = "germany"
What is the imed/avicenna listed for a medical school offshore in saint kitts and nevis which was established before 2000 and will give you an MD?
CREATE TABLE table_name_31 (imed_avicenna_listed VARCHAR, established VARCHAR, degree VARCHAR, regional_offshore VARCHAR, country_territory VARCHAR)
SELECT imed_avicenna_listed FROM table_name_31 WHERE regional_offshore = "offshore" AND country_territory = "saint kitts and nevis" AND degree = "md" AND established < 2000
Find the total saving balance for each account name.
CREATE TABLE savings (balance INTEGER, custid VARCHAR); CREATE TABLE accounts (name VARCHAR, custid VARCHAR)
SELECT SUM(T2.balance), T1.name FROM accounts AS T1 JOIN savings AS T2 ON T1.custid = T2.custid GROUP BY T1.name
What day did they record a score of 1-2 in 1994?
CREATE TABLE table_name_55 (date VARCHAR, score VARCHAR, year VARCHAR)
SELECT date FROM table_name_55 WHERE score = "1-2" AND year = 1994
In 1992, what class has higher wins than 0?
CREATE TABLE table_name_58 (class VARCHAR, wins VARCHAR, year VARCHAR)
SELECT class FROM table_name_58 WHERE wins > 0 AND year = 1992
What was the discipline for the Championship of international championship for makes?
CREATE TABLE table_name_17 (discipline VARCHAR, championship VARCHAR)
SELECT discipline FROM table_name_17 WHERE championship = "international championship for makes"
Call sign of k231bg has what sum of erp w?
CREATE TABLE table_name_30 (erp_w INTEGER, call_sign VARCHAR)
SELECT SUM(erp_w) FROM table_name_30 WHERE call_sign = "k231bg"
What is the lowest amount of draws club ud lérida, which has less than 41 goals, has?
CREATE TABLE table_name_86 (draws INTEGER, club VARCHAR, goals_for VARCHAR)
SELECT MIN(draws) FROM table_name_86 WHERE club = "ud lérida" AND goals_for < 41
Find the names of instructors who didn't each any courses in any Spring semester.
CREATE TABLE teaches (name VARCHAR, id VARCHAR, semester VARCHAR); CREATE TABLE instructor (name VARCHAR, id VARCHAR, semester VARCHAR)
SELECT name FROM instructor WHERE NOT id IN (SELECT id FROM teaches WHERE semester = 'Spring')
what's party with result being retired to run for u. s. senate republican hold
CREATE TABLE table_1341577_10 (party VARCHAR, result VARCHAR)
SELECT party FROM table_1341577_10 WHERE result = "Retired to run for U. S. Senate Republican hold"
Which Inhabitants have a Mayor of matteo renzi, and an Election larger than 2009?
CREATE TABLE table_name_4 (inhabitants INTEGER, mayor VARCHAR, election VARCHAR)
SELECT MIN(inhabitants) FROM table_name_4 WHERE mayor = "matteo renzi" AND election > 2009
How many people attended the game when Larry Hughes(33) was the leading scorer and cleveland was visiting?
CREATE TABLE table_name_6 (attendance INTEGER, visitor VARCHAR, leading_scorer VARCHAR)
SELECT SUM(attendance) FROM table_name_6 WHERE visitor = "cleveland" AND leading_scorer = "larry hughes(33)"
Which name's height in centimeters is 178 when its weight in kilograms is less than 91?
CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR)
SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91
What is the total number of points of the honda hr-1 engine?
CREATE TABLE table_name_41 (points VARCHAR, engine VARCHAR)
SELECT COUNT(points) FROM table_name_41 WHERE engine = "honda hr-1"
What is the series for race 7
CREATE TABLE table_29471472_1 (series VARCHAR, races VARCHAR)
SELECT series FROM table_29471472_1 WHERE races = 7
Which margin of defeats had points of 30?
CREATE TABLE table_10753917_1 (margin_of_defeat VARCHAR, points VARCHAR)
SELECT margin_of_defeat FROM table_10753917_1 WHERE points = "30"
Which player is from Queens, NY?
CREATE TABLE table_name_77 (player VARCHAR, hometown VARCHAR)
SELECT player FROM table_name_77 WHERE hometown = "queens, ny"
What network garnered 2.74 million viewers for Supernatural?
CREATE TABLE table_2170969_2 (network VARCHAR, viewers_in_millions VARCHAR)
SELECT network FROM table_2170969_2 WHERE viewers_in_millions = "2.74"
What team has 33 starts?
CREATE TABLE table_name_22 (team VARCHAR, start VARCHAR)
SELECT team FROM table_name_22 WHERE start = "33"
What is the 1991 when 1990 is ATP Masters Series?
CREATE TABLE table_name_53 (Id VARCHAR)
SELECT 1991 FROM table_name_53 WHERE 1990 = "atp masters series"
What was the game of the game against the White Sox with a record of 81-48?
CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT date FROM table_name_75 WHERE opponent = "white sox" AND record = "81-48"
Who did the Red Sox play against on July 8?
CREATE TABLE table_name_22 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_22 WHERE date = "july 8"
What genre is Star Plus from India?
CREATE TABLE table_name_50 (genre VARCHAR, origin_of_programming VARCHAR, network VARCHAR)
SELECT genre FROM table_name_50 WHERE origin_of_programming = "india" AND network = "star plus"
In what year was Letecke Zavody N.P., Jinonice the manufacturer?
CREATE TABLE table_name_90 (year VARCHAR, manufacturer VARCHAR)
SELECT year FROM table_name_90 WHERE manufacturer = "letecke zavody n.p., jinonice"
What is the dirty electric grid rocky mountains (denver) for the vehicle with the clean electric grid california (san francisco) of 160 g/mi (99 g/km)?
CREATE TABLE table_23840623_4 (dirty_electric_grid_rocky_mountains__denver_ VARCHAR, clean_electric_grid_california__san_francisco_ VARCHAR)
SELECT dirty_electric_grid_rocky_mountains__denver_ FROM table_23840623_4 WHERE clean_electric_grid_california__san_francisco_ = "160 g/mi (99 g/km)"
What place is player Brad Faxon from?
CREATE TABLE table_name_33 (place VARCHAR, player VARCHAR)
SELECT place FROM table_name_33 WHERE player = "brad faxon"
Which Opponent is on 29 september 1997?
CREATE TABLE table_name_70 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_70 WHERE date = "29 september 1997"
Which borough or census area has a $59,596 median household income?
CREATE TABLE table_name_68 (borough_or_census_area VARCHAR, median_household_income VARCHAR)
SELECT borough_or_census_area FROM table_name_68 WHERE median_household_income = "$59,596"