answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY COUNT(*) DESC LIMIT 1
Which catalog publisher has published the most catalogs?
CREATE TABLE catalogs (catalog_publisher VARCHAR)
SELECT written_by FROM table_1876825_5 WHERE no_in_series = 74
Who wrote episode 74?
CREATE TABLE table_1876825_5 (written_by VARCHAR, no_in_series VARCHAR)
SELECT constructor FROM table_name_43 WHERE laps < 100 AND time_retired = "+10 laps"
Which constructor has laps less than 100 and a time/retired +10 laps?
CREATE TABLE table_name_43 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT distance FROM table_16689920_1 WHERE jockey = "Kent Desormeaux" AND date = "6/7/08"
What is the distance for jockey Kent Desormeaux on 6/7/08?
CREATE TABLE table_16689920_1 (distance VARCHAR, jockey VARCHAR, date VARCHAR)
SELECT stereo FROM table_25034983_2 WHERE city = "Moline"
Does the city of moline have stereo?
CREATE TABLE table_25034983_2 (stereo VARCHAR, city VARCHAR)
SELECT seats FROM table_name_38 WHERE net_gain_loss = "0" AND party = "swedish people's party"
When the Swedish People's Party had a net gain/loss of 0, how many seats did they have?
CREATE TABLE table_name_38 (seats VARCHAR, net_gain_loss VARCHAR, party VARCHAR)
SELECT 2 AS nd_leg FROM table_17282875_3 WHERE team__number1 = "San Lorenzo"
When they played San Lorenzo, what was the score of the second leg?
CREATE TABLE table_17282875_3 (team__number1 VARCHAR)
SELECT honor FROM table_name_97 WHERE singular = "ẽr (his/her/its)"
What is Honor, when Singular is ẽr (his/her/its)?
CREATE TABLE table_name_97 (honor VARCHAR, singular VARCHAR)
SELECT circuit FROM table_name_28 WHERE winning_driver = "jochen rindt"
What was the circuit when Jochen Rindt won?
CREATE TABLE table_name_28 (circuit VARCHAR, winning_driver VARCHAR)
SELECT result FROM table_16710742_3 WHERE record = "3-7"
Did the Falcons have a win or loss in the game when their record was 3-7?
CREATE TABLE table_16710742_3 (result VARCHAR, record VARCHAR)
SELECT tns_sofres_5_26_09 FROM table_name_82 WHERE ipsos_5_25_09 = "1%"
Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%?
CREATE TABLE table_name_82 (tns_sofres_5_26_09 VARCHAR, ipsos_5_25_09 VARCHAR)
SELECT parish FROM table_16226584_1 WHERE length_meters = "51.8"
Which parishes have a railroad length of 51.8 meters?
CREATE TABLE table_16226584_1 (parish VARCHAR, length_meters VARCHAR)
SELECT MAX(game) FROM table_27755603_11 WHERE date = "April 5"
What numbered game did they play on april 5?
CREATE TABLE table_27755603_11 (game INTEGER, date VARCHAR)
SELECT SUM(Population) FROM country WHERE NOT Name IN (SELECT T1.Name FROM country AS T1 JOIN countrylanguage AS T2 ON T1.Code = T2.CountryCode WHERE T2.Language = "English")
What is the total number of people living in the nations that do not use English?
CREATE TABLE country (Name VARCHAR, Code VARCHAR); CREATE TABLE countrylanguage (CountryCode VARCHAR, Language VARCHAR); CREATE TABLE country (Population INTEGER, Name VARCHAR)
SELECT teams_that_can_still_qualify FROM table_23995075_2 WHERE teams_that_have_secured_qualification = "0" AND teams_started = "52"
How many teams can still qualify when there are 0 teams that have secured qualification and 52 teams started?
CREATE TABLE table_23995075_2 (teams_that_can_still_qualify VARCHAR, teams_that_have_secured_qualification VARCHAR, teams_started VARCHAR)
SELECT title FROM table_name_76 WHERE translation = "i know"
Which title has a translation of I know in it?
CREATE TABLE table_name_76 (title VARCHAR, translation VARCHAR)
SELECT SUM(losses) FROM table_name_6 WHERE wins > 6 AND club = "camperdown" AND against > 1238
What is the sum of losses when wins is more than 6, club is camperdown and against is more than 1238?
CREATE TABLE table_name_6 (losses INTEGER, against VARCHAR, wins VARCHAR, club VARCHAR)
SELECT MIN(team_1) FROM table_name_89 WHERE agg = "asolo fonte (veneto b)"
What's the lowest team 1 number that had asolo fonte (veneto b) as the Agg.?
CREATE TABLE table_name_89 (team_1 INTEGER, agg VARCHAR)
SELECT outcome FROM table_2516282_3 WHERE opponents = "Yan Zi Jie Zheng"
When the opponent was Yan Zi Jie Zheng, what was the outcome?
CREATE TABLE table_2516282_3 (outcome VARCHAR, opponents VARCHAR)
SELECT COUNT(fourth_place) FROM table_29446183_2 WHERE winner = "Otsuka Pharmaceuticals"
How many teams came in fourth when Otsuka Pharmaceuticals won?
CREATE TABLE table_29446183_2 (fourth_place VARCHAR, winner VARCHAR)
SELECT record FROM table_name_67 WHERE game < 24 AND location = "miami arena"
What was the record when they played in the Miami Arena, before game 24?
CREATE TABLE table_name_67 (record VARCHAR, game VARCHAR, location VARCHAR)
SELECT type FROM table_name_11 WHERE moving_from = "belgrano"
What is the type of the player moving from belgrano?
CREATE TABLE table_name_11 (type VARCHAR, moving_from VARCHAR)
SELECT beer_name FROM table_name_33 WHERE prize = "silver medal" AND competition = "camra reading branch beer festival" AND year = 2008
What beer won a silver medal at the camra reading branch beer festival in 2008?
CREATE TABLE table_name_33 (beer_name VARCHAR, year VARCHAR, prize VARCHAR, competition VARCHAR)
SELECT AVG(height) FROM table_name_27 WHERE position = "pf" AND year_born__age_ = "april 1, 1981 (age32)"
Count the average Height which has a Position of pf, and a Year born (Age) on april 1, 1981 (age32)?
CREATE TABLE table_name_27 (height INTEGER, position VARCHAR, year_born__age_ VARCHAR)
SELECT SUM(overall) FROM table_name_46 WHERE college = "michigan state" AND position = "fb" AND round > 8
Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?
CREATE TABLE table_name_46 (overall INTEGER, round VARCHAR, college VARCHAR, position VARCHAR)
SELECT dominant_religion__2002_ FROM table_2562572_20 WHERE type = "village" AND cyrillic_name_other_names = "Бачко Добро Поље"
Name the dominant religion for village for бачко добро поље
CREATE TABLE table_2562572_20 (dominant_religion__2002_ VARCHAR, type VARCHAR, cyrillic_name_other_names VARCHAR)
SELECT masculine_an_stems FROM table_name_18 WHERE feminine_ō_stems = "siangar" AND masculine_u_stems = "syni"
What is the an-stem for the word which has an ö-stems of siangar and an u-stem ending of syni?
CREATE TABLE table_name_18 (masculine_an_stems VARCHAR, feminine_ō_stems VARCHAR, masculine_u_stems VARCHAR)
SELECT AVG(floors) FROM table_name_19 WHERE name = "meridian condominiums"
with name meridian condominiums what is number of floors?
CREATE TABLE table_name_19 (floors INTEGER, name VARCHAR)
SELECT score FROM table_name_69 WHERE surface = "clay" AND partnering = "júlio silva"
Surface of clay, and a Partnering of júlio silva had what score?
CREATE TABLE table_name_69 (score VARCHAR, surface VARCHAR, partnering VARCHAR)
SELECT location_attendance FROM table_17325580_6 WHERE date = "December 12"
What is every location attendance on the date December 12?
CREATE TABLE table_17325580_6 (location_attendance VARCHAR, date VARCHAR)
SELECT to_par FROM table_name_97 WHERE score = 70 - 73 - 80 - 68 = 291
Which To par has a Score of 70-73-80-68=291?
CREATE TABLE table_name_97 (to_par VARCHAR, score VARCHAR)
SELECT att FROM table_name_1 WHERE time = "3:55"
What was the attendance of the game that lasted 3:55?
CREATE TABLE table_name_1 (att VARCHAR, time VARCHAR)
SELECT date FROM table_name_84 WHERE partner = "lori mcneil" AND score = "6–7(6), 5–7"
On what date did Lori McNeil play as a partner with a score of 6–7(6), 5–7?
CREATE TABLE table_name_84 (date VARCHAR, partner VARCHAR, score VARCHAR)
SELECT r_52 FROM table_name_54 WHERE d_44 = "d 44"
Name the R 52 which has a D 44 of d 44
CREATE TABLE table_name_54 (r_52 VARCHAR, d_44 VARCHAR)
SELECT duration FROM table_name_20 WHERE appearances = "3" AND character = "james garret"
What is the duration that has 3 for appearances, and james garret as the character?
CREATE TABLE table_name_20 (duration VARCHAR, appearances VARCHAR, character VARCHAR)
SELECT opponent FROM table_name_66 WHERE score = "6–2, 6–2"
What is the Opponent in a game with a Score of 6–2, 6–2?
CREATE TABLE table_name_66 (opponent VARCHAR, score VARCHAR)
SELECT AVG(nominated_by_the_taoiseach) FROM table_name_99 WHERE industrial_and_commercial_panel < 9 AND administrative_panel > 0 AND cultural_and_educational_panel > 2 AND total < 29
What is the average nominated of the composition nominated by Taioseach with an Industrial and Commercial panel less than 9, an administrative panel greater than 0, a cultural and educational panel greater than 2, and a total less than 29?
CREATE TABLE table_name_99 (nominated_by_the_taoiseach INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR, administrative_panel VARCHAR)
SELECT on_demand FROM table_name_25 WHERE free_or_pay = "pay" AND provider = "virgin media (formerly ntl:telewest)"
Which On demand has a pay and a Provider of virgin media (formerly ntl:telewest)?
CREATE TABLE table_name_25 (on_demand VARCHAR, free_or_pay VARCHAR, provider VARCHAR)
SELECT championship FROM table_name_69 WHERE previous_champion_s_ = "defeated justin corino in tournament final"
In which championship had a previous champion of "defeated Justin Corino in tournament final"?
CREATE TABLE table_name_69 (championship VARCHAR, previous_champion_s_ VARCHAR)
SELECT week_arrived_on_main_island FROM table_11764007_2 WHERE original_tribe = "Shark" AND week_sent_to_third_island = "14"
What week did the member who's original tribe was shark and who was sent to the third island on week 14 arrive on the main island?
CREATE TABLE table_11764007_2 (week_arrived_on_main_island VARCHAR, original_tribe VARCHAR, week_sent_to_third_island VARCHAR)
SELECT position FROM table_name_18 WHERE college = "washington" AND overall = 46
Which Position has a College of washington, and an Overall of 46?
CREATE TABLE table_name_18 (position VARCHAR, college VARCHAR, overall VARCHAR)
SELECT date_from FROM Project_Staff ORDER BY date_from LIMIT 1
When did the first staff for the projects started working?
CREATE TABLE Project_Staff (date_from VARCHAR)
SELECT result FROM table_name_9 WHERE season = "2005-06"
What was the Result in the 2005-06 Season?
CREATE TABLE table_name_9 (result VARCHAR, season VARCHAR)
SELECT 2008 FROM table_name_89 WHERE 2009 = "ch our charming lady"
What is the 2008 for the 2009 ch our charming lady?
CREATE TABLE table_name_89 (Id VARCHAR)
SELECT date FROM table_name_82 WHERE promotor = "frank moloney" AND opponent = "georgi iliev"
Which date has the promoter Frank Moloney and the opponent Georgi Iliev?
CREATE TABLE table_name_82 (date VARCHAR, promotor VARCHAR, opponent VARCHAR)
SELECT MAX(tonnage) FROM table_11662133_3 WHERE date_entered_service = "25 March 1986"
what is the maximum tonnage where date entered service is 25 march 1986
CREATE TABLE table_11662133_3 (tonnage INTEGER, date_entered_service VARCHAR)
SELECT issue_price FROM table_name_44 WHERE theme = "trumpeter swan"
What was the issue price for the Trumpeter Swan set?
CREATE TABLE table_name_44 (issue_price VARCHAR, theme VARCHAR)
SELECT type FROM table_261946_3 WHERE location__all_in_ohio_ = "Kent"
What is the type of institution in Kent State University?
CREATE TABLE table_261946_3 (type VARCHAR, location__all_in_ohio_ VARCHAR)
SELECT MIN(money___) AS $__ FROM table_name_13 WHERE country = "south africa" AND to_par < 8
What is the lowest amount of money a player from South Africa with a to par less than 8 has?
CREATE TABLE table_name_13 (money___ INTEGER, country VARCHAR, to_par VARCHAR)
SELECT tie_no FROM table_name_79 WHERE home_team = "bournemouth"
What was the tie number when Bournemouth was the home team?
CREATE TABLE table_name_79 (tie_no VARCHAR, home_team VARCHAR)
SELECT MAX(roll) FROM table_name_98 WHERE decile < 8 AND authority = "state" AND name = "orere school"
What is the highest Roll of Orere School with a Decile less than 8 with a State Authority?
CREATE TABLE table_name_98 (roll INTEGER, name VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT attendance FROM table_name_6 WHERE game_site = "georgia dome"
What was the attendance of the game played in the Georgia Dome?
CREATE TABLE table_name_6 (attendance VARCHAR, game_site VARCHAR)
SELECT calcium__mg_ FROM table_2493389_1 WHERE fat__g_ = "6.5"
Name the calcium for fat being 6.5
CREATE TABLE table_2493389_1 (calcium__mg_ VARCHAR, fat__g_ VARCHAR)
SELECT final_score FROM table_name_86 WHERE visiting_team = "new york jets"
What was the final score when the New York Jets were the Visiting Team?
CREATE TABLE table_name_86 (final_score VARCHAR, visiting_team VARCHAR)
SELECT MIN(game) FROM table_23186738_9 WHERE date = "March 20"
Name the least game for march 20
CREATE TABLE table_23186738_9 (game INTEGER, date VARCHAR)
SELECT gold FROM table_name_58 WHERE silver = "czech republic" AND venue = "bratislava"
Who received the gold at the tournament at bratislava where the Czech Republic received the silver?
CREATE TABLE table_name_58 (gold VARCHAR, silver VARCHAR, venue VARCHAR)
SELECT AVG(T2.rating) FROM artist AS T1 JOIN song AS T2 ON T1.artist_name = T2.artist_name WHERE T1.gender = "Female"
What is the average rating of songs produced by female artists?
CREATE TABLE song (rating INTEGER, artist_name VARCHAR); CREATE TABLE artist (artist_name VARCHAR, gender VARCHAR)
SELECT score FROM table_name_40 WHERE country = "united states" AND player = "tom watson"
Name the Score united states of tom watson in united state?
CREATE TABLE table_name_40 (score VARCHAR, country VARCHAR, player VARCHAR)
SELECT high_rebounds FROM table_23281862_6 WHERE high_points = "Carl Landry (23)"
Who did the high rebounds in the game where Carl Landry (23) did the most high points?
CREATE TABLE table_23281862_6 (high_rebounds VARCHAR, high_points VARCHAR)
SELECT AVG(bush_number) FROM table_name_70 WHERE others_number > 57 AND bush_percentage = "49.2%"
What is the average value of Bush# when the value for Others# is greater than 57, and the value for Bush% is 49.2%?
CREATE TABLE table_name_70 (bush_number INTEGER, others_number VARCHAR, bush_percentage VARCHAR)
SELECT nat FROM table_name_56 WHERE goals > 64
What is the nationality for the player with over 64 goals?
CREATE TABLE table_name_56 (nat VARCHAR, goals INTEGER)
SELECT MAX(number_of_electorates__2009_) FROM table_name_86 WHERE district = "raisen" AND constituency_number = "142"
What was the highest number of 2009 electorates for Raisen when the consituency number was 142?
CREATE TABLE table_name_86 (number_of_electorates__2009_ INTEGER, district VARCHAR, constituency_number VARCHAR)
SELECT others_percentage FROM table_1733513_1 WHERE bush_number = 1329
What is the percentage of others when the number for Bush is 1329?
CREATE TABLE table_1733513_1 (others_percentage VARCHAR, bush_number VARCHAR)
SELECT us_viewers__million_ FROM table_11111116_8 WHERE original_air_date = "March 31, 2013"
How many millions of U.S. viewers watched the episode that first aired on March 31, 2013?
CREATE TABLE table_11111116_8 (us_viewers__million_ VARCHAR, original_air_date VARCHAR)
SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1"
What method was used in the match that went to round 1, and had a 6-3-1 record?
CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record 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 name FROM table_name_75 WHERE apparent_magnitude < 11.4 AND ra___j2000__ = "04h17m35.8s"
Which Name has Apparent Magnitude smaller than 11.4, and R.A. (J2000) of 04h17m35.8s?
CREATE TABLE table_name_75 (name VARCHAR, apparent_magnitude VARCHAR, ra___j2000__ VARCHAR)
SELECT socialist_labor_ticket FROM table_name_78 WHERE office = "secretary of state"
Which Socialist Labor ticket has a Office of secretary of state?
CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR)
SELECT college FROM table_16575609_3 WHERE player = "Jean-Nicolas Carriere"
What college does Jean-Nicolas Carriere play for?
CREATE TABLE table_16575609_3 (college VARCHAR, player VARCHAR)
SELECT date FROM table_name_35 WHERE opponent = "pride" AND home_away = "away"
What is the date of the game away against Pride?
CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, home_away VARCHAR)
SELECT b_52_model FROM table_18933037_3 WHERE unit = "7th BW attached to 43rd SW"
When 7th bw attached to 43rd sw is the unit what is the b-52 model?
CREATE TABLE table_18933037_3 (b_52_model VARCHAR, unit VARCHAR)
SELECT MAX(pick__number) FROM table_name_28 WHERE pl_gp > 55
Name the highest pick number for PI GP more than 55
CREATE TABLE table_name_28 (pick__number INTEGER, pl_gp INTEGER)
SELECT result FROM table_name_3 WHERE competition = "uncaf nations cup 2009" AND goal = 6
Name the result for uncaf nations cup 2009 and 6 goal
CREATE TABLE table_name_3 (result VARCHAR, competition VARCHAR, goal VARCHAR)
SELECT district FROM table_13618584_1 WHERE incumbent = "Dick Saslaw"
In which district was the incumbent Dick Saslaw?
CREATE TABLE table_13618584_1 (district VARCHAR, incumbent VARCHAR)
SELECT team FROM table_17319931_1 WHERE driver = "Jeff Simmons"
What is the team whose driver Jeff Simmons?
CREATE TABLE table_17319931_1 (team VARCHAR, driver VARCHAR)
SELECT date_successor_seated FROM table_225096_4 WHERE reason_for_change = "Until August 2, 1813"
When was the successor who got his seat because of "until august 2, 1813" seated?
CREATE TABLE table_225096_4 (date_successor_seated VARCHAR, reason_for_change VARCHAR)
SELECT entrant FROM table_name_59 WHERE year > 1999
Which entrant has a year after 1999?
CREATE TABLE table_name_59 (entrant VARCHAR, year INTEGER)
SELECT record FROM table_name_42 WHERE high_rebounds = "luc mbah a moute (11)"
Which Record has a High rebounds of luc mbah a moute (11)?
CREATE TABLE table_name_42 (record VARCHAR, high_rebounds VARCHAR)
SELECT name FROM captain WHERE rank = 'Midshipman' OR rank = 'Lieutenant'
Find the name of captains whose rank are either Midshipman or Lieutenant.
CREATE TABLE captain (name VARCHAR, rank VARCHAR)
SELECT winning_amount FROM table_name_2 WHERE date_premiered__2009_ = "may 30"
What is the winning amount that has May 30, 2009 as the date premiered?
CREATE TABLE table_name_2 (winning_amount VARCHAR, date_premiered__2009_ VARCHAR)
SELECT forward_caste FROM table_name_49 WHERE scheduled_caste = "0.80%"
WHAT IS THE FORWARD CASTE WITH A SCHEDULED CASTE OF 0.80%?
CREATE TABLE table_name_49 (forward_caste VARCHAR, scheduled_caste VARCHAR)
SELECT COUNT(mixed_doubles) FROM table_15001957_1 WHERE year = 1996
How many mixed doubles were won in 1996?
CREATE TABLE table_15001957_1 (mixed_doubles VARCHAR, year VARCHAR)
SELECT package_option FROM table_name_3 WHERE content = "tennis"
What is Package/Option, when Content is Tennis?
CREATE TABLE table_name_3 (package_option VARCHAR, content VARCHAR)
SELECT venue FROM table_name_15 WHERE year = 1964
What is the venue with a competition in 1964?
CREATE TABLE table_name_15 (venue VARCHAR, year VARCHAR)
SELECT MAX(peak_position) FROM table_name_48 WHERE album = "one of the boys"
What was the highest peak position for the album one of the boys?
CREATE TABLE table_name_48 (peak_position INTEGER, album VARCHAR)
SELECT mpg_uk_urban__cold_ FROM table_name_8 WHERE fuel_type = "diesel" AND mpg_uk_extra_urban > 68.9 AND engine_capacity = 1422 AND l_100km_urban__cold_ > 5.1
What is the mpg-UK urban (cold) for a fuel type of diesel, extraurban MPG in the UK over 68.9, engine capacity of 1422, and L/100km urban (cold) over 5.1?
CREATE TABLE table_name_8 (mpg_uk_urban__cold_ VARCHAR, l_100km_urban__cold_ VARCHAR, engine_capacity VARCHAR, fuel_type VARCHAR, mpg_uk_extra_urban VARCHAR)
SELECT COUNT(director) FROM table_22128871_1 WHERE vietnamese_title = "Gate, gate, paragate"
How many directors have vietnamese titles of Gate, Gate, Paragate?
CREATE TABLE table_22128871_1 (director VARCHAR, vietnamese_title VARCHAR)
SELECT home_team AS score FROM table_name_45 WHERE home_team = "south melbourne"
What was South Melbourne's score as the home team?
CREATE TABLE table_name_45 (home_team VARCHAR)
SELECT MIN(defenses) FROM table_name_46 WHERE days_held = "345"
What is the lowest defense a champion with 345 days held has?
CREATE TABLE table_name_46 (defenses INTEGER, days_held VARCHAR)
SELECT MIN(f_laps) FROM table_20398823_1
Name the least f/laps
CREATE TABLE table_20398823_1 (f_laps INTEGER)
SELECT date FROM table_name_3 WHERE catalog = "alca-275"
On what date was the record with catalog ALCA-275 released?
CREATE TABLE table_name_3 (date VARCHAR, catalog VARCHAR)
SELECT MAX(rank) FROM table_name_34 WHERE athlete = "tim maeyens"
what is the highest rank for tim maeyens?
CREATE TABLE table_name_34 (rank INTEGER, athlete VARCHAR)
SELECT premierships FROM table_name_25 WHERE league = "commonwealth bank trophy"
How many premierships for the commonwealth bank trophy league?
CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR)
SELECT MAX(attendance) FROM table_name_35 WHERE loss = "darling (0–1)"
What is the largest Attendance with a Loss of darling (0–1)?
CREATE TABLE table_name_35 (attendance INTEGER, loss VARCHAR)
SELECT writer_s_ FROM table_10953197_4 WHERE production_code = "2395114"
Who's the writer for the episode with a production code 2395114?
CREATE TABLE table_10953197_4 (writer_s_ VARCHAR, production_code VARCHAR)
SELECT MIN(season) FROM table_29471472_1 WHERE podiums = 7
What season shows podium 7?
CREATE TABLE table_29471472_1 (season INTEGER, podiums VARCHAR)
SELECT tournament FROM table_name_39 WHERE margin_of_victory = "1 stroke" AND date = "oct 7, 1990"
Which Tournament has a Margin of victory of 1 stroke, and a Date of oct 7, 1990?
CREATE TABLE table_name_39 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_69 WHERE result = "w 20-17"
Who was the opponent at the game with a result of w 20-17?
CREATE TABLE table_name_69 (opponent VARCHAR, result VARCHAR)
SELECT height FROM table_14966667_19 WHERE name = "Braxton Kelley"
How tall is Braxton Kelley?
CREATE TABLE table_14966667_19 (height VARCHAR, name VARCHAR)
SELECT T1.Name FROM member AS T1 JOIN round AS T2 ON T1.Member_ID = T2.Member_ID WHERE T2.Rank_in_Round > 3
Show the names of members that have a rank in round higher than 3.
CREATE TABLE round (Member_ID VARCHAR, Rank_in_Round INTEGER); CREATE TABLE member (Name VARCHAR, Member_ID VARCHAR)