answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT SUM(pick__number) FROM table_name_79 WHERE cfl_team = "edmonton eskimos"
What is the total pick numbers for the CFL team Edmonton Eskimos?
CREATE TABLE table_name_79 (pick__number INTEGER, cfl_team VARCHAR)
SELECT MAX(year_drafted) FROM table_name_9 WHERE fcsl_team = "winter park" AND round = "4th"
What is the drafted year when the FCSL Team was Winter Park, in the 4th round?
CREATE TABLE table_name_9 (year_drafted INTEGER, fcsl_team VARCHAR, round VARCHAR)
SELECT type FROM table_name_85 WHERE course = "turin to monza"
Which type has turin to monza as a course?
CREATE TABLE table_name_85 (type VARCHAR, course VARCHAR)
SELECT riaa_sales_certification FROM table_name_50 WHERE billboard_200_peak < 18 AND year < 1972
Before the Year 1972, what RIAA Sales Certification was awarded to the song that had a Billboard 200 Peak less than 18?
CREATE TABLE table_name_50 (riaa_sales_certification VARCHAR, billboard_200_peak VARCHAR, year VARCHAR)
SELECT MIN(code) FROM table_name_14 WHERE regional_county_municipality = "le haut-saint-laurent" AND region > 16
What is the code for a Le Haut-Saint-Laurent municipality that has 16 or more regions?
CREATE TABLE table_name_14 (code INTEGER, regional_county_municipality VARCHAR, region VARCHAR)
SELECT SUM(total) FROM table_name_69 WHERE free = 47.667 AND technical < 47.417
What is the total for the person with free of 47.667, and technical less than 47.417?
CREATE TABLE table_name_69 (total INTEGER, free VARCHAR, technical VARCHAR)
SELECT date FROM table_name_90 WHERE home_team = "fitzroy"
On what date did the match where fitzroy was the home team occur?
CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_53 WHERE date = "april 22"
What was the score on April 22?
CREATE TABLE table_name_53 (score VARCHAR, date VARCHAR)
SELECT COUNT(result) FROM table_20963074_1 WHERE original_title = "Octubre"
Name the total number of results for octubre
CREATE TABLE table_20963074_1 (result VARCHAR, original_title VARCHAR)
SELECT pick__number FROM table_21321804_1 WHERE player = "Wes Lysack"
What is the pick # for player wes lysack?
CREATE TABLE table_21321804_1 (pick__number VARCHAR, player VARCHAR)
SELECT points FROM table_name_58 WHERE season < 1977 AND winner = "john vopni"
How many points when John Vopni won a season before 1977?
CREATE TABLE table_name_58 (points VARCHAR, season VARCHAR, winner VARCHAR)
SELECT finalist FROM table_name_20 WHERE surface = "clay" AND semifinalists = "yevgeny kafelnikov juan carlos ferrero (2)"
Who is the Finalist, when the Surface is Clay, and when the Semifinalist is Yevgeny Kafelnikov Juan Carlos Ferrero (2)?
CREATE TABLE table_name_20 (finalist VARCHAR, surface VARCHAR, semifinalists VARCHAR)
SELECT engine FROM table_name_45 WHERE chassis = "lola b02/00" AND rank = "1st"
What engine was used by the teams that used a Lola b02/00 chassis and ranked 1st?
CREATE TABLE table_name_45 (engine VARCHAR, chassis VARCHAR, rank VARCHAR)
SELECT team FROM table_name_55 WHERE location_attendance = "td waterhouse centre"
What team did the Heat play against at the TD Waterhouse Centre?
CREATE TABLE table_name_55 (team VARCHAR, location_attendance VARCHAR)
SELECT MIN(year) FROM table_251272_4 WHERE location = "Martyrs' Mausoleum, Rangoon, Burma"
What is the first year where the assassination attempt was at Martyrs' Mausoleum, Rangoon, Burma?
CREATE TABLE table_251272_4 (year INTEGER, location VARCHAR)
SELECT owner_s_ FROM table_name_18 WHERE description = "hunslet engine company 0-6-0st"
Which Owner(s) has a Description of hunslet engine company 0-6-0st?
CREATE TABLE table_name_18 (owner_s_ VARCHAR, description VARCHAR)
SELECT MAX(earnings___) AS $__ FROM table_name_60 WHERE player = "curtis strange"
What is the highest earnings for curtis strange?
CREATE TABLE table_name_60 (earnings___ INTEGER, player VARCHAR)
SELECT moving_from FROM table_name_26 WHERE nat = "ned"
Which Moving from has a Nat of ned?
CREATE TABLE table_name_26 (moving_from VARCHAR, nat VARCHAR)
SELECT elevation FROM table_name_79 WHERE nickname = "the gathering place"
Name the elevation of the gathering place
CREATE TABLE table_name_79 (elevation VARCHAR, nickname VARCHAR)
SELECT year FROM table_19643196_1 WHERE transmission = "Voith D863.4" AND engine = "Cummins ISM"
Which year had a transmission of Voith D863.4 and a Cummins ISM engine?
CREATE TABLE table_19643196_1 (year VARCHAR, transmission VARCHAR, engine VARCHAR)
SELECT home_team FROM table_name_75 WHERE away_team = "north melbourne"
Which team played as the home team when north melbourne played as away?
CREATE TABLE table_name_75 (home_team VARCHAR, away_team VARCHAR)
SELECT format FROM table_name_57 WHERE album = "pacific ocean blue" AND year = 1991
What is the format of the album Pacific Ocean Blue in 1991?
CREATE TABLE table_name_57 (format VARCHAR, album VARCHAR, year VARCHAR)
SELECT genre FROM table_name_34 WHERE developer = "banpresto" AND japanese_title = "ranma ½: netsuretsu kakutouhen"
What genre is the Banpresto game tittled Ranma ½: netsuretsu kakutouhen?
CREATE TABLE table_name_34 (genre VARCHAR, developer VARCHAR, japanese_title VARCHAR)
SELECT record FROM table_name_82 WHERE opponent = "detroit pistons" AND date = "march 7"
What is the record for the Detroit Pistons on March 7?
CREATE TABLE table_name_82 (record VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT elected FROM table_name_81 WHERE party = "republican" AND district = "7th"
Party of republican, and a District of 7th is what elected?
CREATE TABLE table_name_81 (elected VARCHAR, party VARCHAR, district VARCHAR)
SELECT venue FROM table_name_26 WHERE team = "darida"
Which team played in the Darida venue?
CREATE TABLE table_name_26 (venue VARCHAR, team VARCHAR)
SELECT original_air_date FROM table_13273629_2 WHERE directed_by = "Carey Meyer"
When was the episode directed by Carey Meyer aired for the first time?
CREATE TABLE table_13273629_2 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT T1.emp_lname, T1.emp_hiredate FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num WHERE T2.prof_office = 'DRE 102'
Find the last name and hire date of the professor who is in office DRE 102.
CREATE TABLE professor (emp_num VARCHAR, prof_office VARCHAR); CREATE TABLE employee (emp_lname VARCHAR, emp_hiredate VARCHAR, emp_num VARCHAR)
SELECT AVG(round) FROM table_name_49 WHERE event = "gcf: strength and honor"
How many rounds did the match at GCF: Strength and Honor last?
CREATE TABLE table_name_49 (round INTEGER, event VARCHAR)
SELECT COUNT(total) FROM table_name_46 WHERE rank > 12 AND gold > 4
What is the sum of total with a Rank larger than 12, and a Gold larger than 4?
CREATE TABLE table_name_46 (total VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT MIN(no) FROM table_15621965_18 WHERE position = "Forward-Center"
WHAT WAS THE NUMBER OF THE ONLY FORWARD-CENTER TO MAKE THE ROSTER?
CREATE TABLE table_15621965_18 (no INTEGER, position VARCHAR)
SELECT name FROM table_name_23 WHERE date = "5 may 1943" AND nationality = "united kingdom" AND sunk_by… = "u-266" AND casualties = "0"
What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties?
CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR)
SELECT position FROM table_name_20 WHERE round < 3 AND name = "r. jay soward"
What is the Position with a round 3 pick for r. jay soward?
CREATE TABLE table_name_20 (position VARCHAR, round VARCHAR, name VARCHAR)
SELECT original_artist FROM table_15796100_1 WHERE theme = "Year They Were Born"
Who is the original artist for the theme "Year they were born?"
CREATE TABLE table_15796100_1 (original_artist VARCHAR, theme VARCHAR)
SELECT MAX(long) FROM table_name_22 WHERE loss > 3 AND gain > 2 OFFSET 894
Which Long is the highest one that has a Loss larger than 3, and a Gain larger than 2,894?
CREATE TABLE table_name_22 (long INTEGER, loss VARCHAR, gain VARCHAR)
SELECT save FROM table_28001186_8 WHERE loss = "Duke (3-2)"
Who had the save in the game in which Duke (3-2) took the loss?
CREATE TABLE table_28001186_8 (save VARCHAR, loss VARCHAR)
SELECT MIN(production_no) FROM table_1439096_1
What is the lowest production number?
CREATE TABLE table_1439096_1 (production_no INTEGER)
SELECT college FROM table_name_95 WHERE player = "danny manning"
What college did danny manning go to?
CREATE TABLE table_name_95 (college VARCHAR, player VARCHAR)
SELECT date FROM table_name_60 WHERE result = "w 31-28"
Name the date for w 31-28
CREATE TABLE table_name_60 (date VARCHAR, result VARCHAR)
SELECT round FROM table_name_53 WHERE record = "4-1"
What is Round, when Record is "4-1"?
CREATE TABLE table_name_53 (round VARCHAR, record VARCHAR)
SELECT MAX(elected) FROM table_name_75 WHERE status = "reelected" AND incumbent = "danny marshall iii"
Status of reelected, and a Incumbent of danny marshall iii is what highest elected?
CREATE TABLE table_name_75 (elected INTEGER, status VARCHAR, incumbent VARCHAR)
SELECT captain FROM table_name_59 WHERE kit_manufacturer = "pony" AND manager = "harry redknapp"
Who is the captain for the manufacturer Pony, and the manager Harry Redknapp?
CREATE TABLE table_name_59 (captain VARCHAR, kit_manufacturer VARCHAR, manager VARCHAR)
SELECT laps FROM table_name_37 WHERE time_retired = "+ 1:39.591"
How many laps are associated with a time of + 1:39.591?
CREATE TABLE table_name_37 (laps VARCHAR, time_retired VARCHAR)
SELECT laid_down FROM table_name_33 WHERE name = "kaki"
What is the laid down date of Kaki?
CREATE TABLE table_name_33 (laid_down VARCHAR, name VARCHAR)
SELECT date__opening_ FROM table_name_47 WHERE opening_film = "another myanmar, mae sot"
What is Date (Opening), when Opening Film is "Another Myanmar, Mae Sot"?
CREATE TABLE table_name_47 (date__opening_ VARCHAR, opening_film VARCHAR)
SELECT COUNT(season) FROM table_25563779_4 WHERE national_trophy_rookie = "Simone Iaquinta"
If the national trophy/rookie is Simone Iaquinta, what is the season total number?
CREATE TABLE table_25563779_4 (season VARCHAR, national_trophy_rookie VARCHAR)
SELECT womens_singles FROM table_14904221_1 WHERE year = 2001
Who won women's singles in 2001?
CREATE TABLE table_14904221_1 (womens_singles VARCHAR, year VARCHAR)
SELECT position FROM table_name_98 WHERE player = "denard walker"
What position does Denard Walker play?
CREATE TABLE table_name_98 (position VARCHAR, player VARCHAR)
SELECT general_election FROM table_149330_1 WHERE votes_swing = "1.84"
Which general election had a vote swing of 1.84?
CREATE TABLE table_149330_1 (general_election VARCHAR, votes_swing VARCHAR)
SELECT tries_for FROM table_name_25 WHERE points_against = "214"
What is the tries for when the points against is 214?
CREATE TABLE table_name_25 (tries_for VARCHAR, points_against VARCHAR)
SELECT lyrics FROM table_name_59 WHERE catalog_number = "560 6111"
What language is the Lyrics of the release with Catalog number 560 6111?
CREATE TABLE table_name_59 (lyrics VARCHAR, catalog_number VARCHAR)
SELECT badge_serial_number FROM table_name_58 WHERE rank = "policeman" AND cause_of_death = "gunfire" AND date_of_death = "1919-02-18"
What is the Badge/Serial Number of the Policeman who died in Gunfire on 1919-02-18?
CREATE TABLE table_name_58 (badge_serial_number VARCHAR, date_of_death VARCHAR, rank VARCHAR, cause_of_death VARCHAR)
SELECT location FROM table_28794440_1 WHERE callsign = "DWRH"
Where are the broadcasting companys with the callsign DWRH located?
CREATE TABLE table_28794440_1 (location VARCHAR, callsign VARCHAR)
SELECT tournament FROM table_name_93 WHERE date = "may 31, 1987"
What tournament was on May 31, 1987?
CREATE TABLE table_name_93 (tournament VARCHAR, date VARCHAR)
SELECT AVG(bikes_available) FROM status WHERE NOT station_id IN (SELECT id FROM station WHERE city = "Palo Alto")
What is the average bike availability in stations that are not located in Palo Alto?
CREATE TABLE status (bikes_available INTEGER, station_id VARCHAR, id VARCHAR, city VARCHAR); CREATE TABLE station (bikes_available INTEGER, station_id VARCHAR, id VARCHAR, city VARCHAR)
SELECT days_of_the_week FROM table_name_31 WHERE time_of_broadcast = "january–february, june 2002"
Which Days of the week has a Time of broadcast in january–february, june 2002?
CREATE TABLE table_name_31 (days_of_the_week VARCHAR, time_of_broadcast VARCHAR)
SELECT MAX(round) FROM table_name_53 WHERE name = "anthony gonzalez"
what is the highest round for anthony gonzalez?
CREATE TABLE table_name_53 (round INTEGER, name VARCHAR)
SELECT MIN(birth_2012) FROM table_25703_2 WHERE january_december_2012 = "Tver Oblast"
What were the total number of 2012 births for the January–December 2012 Tver Oblast region?
CREATE TABLE table_25703_2 (birth_2012 INTEGER, january_december_2012 VARCHAR)
SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0
What is the average wins has Top-25 less than 0?
CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER)
SELECT MAX(bronze) FROM table_name_73 WHERE silver < 0
What's the biggest Bronze that has less than 0 Silvers?
CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)
SELECT date FROM table_name_58 WHERE score = "112–118"
Which Date has a Score of 112–118?
CREATE TABLE table_name_58 (date VARCHAR, score VARCHAR)
SELECT stadium FROM table_name_56 WHERE city = "seoul"
What stadium is in Seoul?
CREATE TABLE table_name_56 (stadium VARCHAR, city VARCHAR)
SELECT high_rebounds FROM table_29846807_4 WHERE team = "Mount St. Mary's"
Who is every high rebound when the team is Mount St. Mary's?
CREATE TABLE table_29846807_4 (high_rebounds VARCHAR, team VARCHAR)
SELECT couple FROM table_19744915_22 WHERE vote_percentage = "21.843%"
What couple had vote percentage of 21.843%?
CREATE TABLE table_19744915_22 (couple VARCHAR, vote_percentage VARCHAR)
SELECT player FROM table_name_40 WHERE pick = 147
Who was the player who was pick number 147?
CREATE TABLE table_name_40 (player VARCHAR, pick VARCHAR)
SELECT Name, Opening_Hours FROM TOURIST_ATTRACTIONS WHERE How_to_Get_There = "bus" OR How_to_Get_There = "walk"
What are the names and opening hours of the tourist attractions that can be accessed by bus or walk?
CREATE TABLE TOURIST_ATTRACTIONS (Name VARCHAR, Opening_Hours VARCHAR, How_to_Get_There VARCHAR)
SELECT city_code FROM student GROUP BY city_code ORDER BY COUNT(*) DESC LIMIT 1
Find the code of city where most of students are living in.
CREATE TABLE student (city_code VARCHAR)
SELECT high_points FROM table_17102076_5 WHERE score = "L 92–100 (OT)"
Name the high points for score being l 92–100 (ot)
CREATE TABLE table_17102076_5 (high_points VARCHAR, score VARCHAR)
SELECT MAX(drawn) FROM table_name_8 WHERE played < 38
What is the largest drawn that has a played less than 38?
CREATE TABLE table_name_8 (drawn INTEGER, played INTEGER)
SELECT T1.city FROM city AS T1 JOIN hosting_city AS T2 ON T1.city_id = T2.host_city GROUP BY T2.host_city ORDER BY COUNT(*) DESC LIMIT 1
Which city has hosted the most events?
CREATE TABLE city (city VARCHAR, city_id VARCHAR); CREATE TABLE hosting_city (host_city VARCHAR)
SELECT location___city FROM table_29483673_1 WHERE institution = "Tiffin University"
What city is Tiffin University located in?
CREATE TABLE table_29483673_1 (location___city VARCHAR, institution VARCHAR)
SELECT axle_ratio FROM table_20866024_2 WHERE model_designation = "97G00"
What's the axle ratio of the model with model designation 97G00?
CREATE TABLE table_20866024_2 (axle_ratio VARCHAR, model_designation VARCHAR)
SELECT away_team AS score FROM table_name_31 WHERE venue = "victoria park"
What was the opposing team's score at the match that was played at Victoria Park?
CREATE TABLE table_name_31 (away_team VARCHAR, venue VARCHAR)
SELECT MAX(byes) FROM table_name_95 WHERE against < 1867 AND wins = 11
What is the most byes with 11 wins and fewer than 1867 againsts?
CREATE TABLE table_name_95 (byes INTEGER, against VARCHAR, wins VARCHAR)
SELECT land_area FROM table_214920_1 WHERE population_canada_2011_census = 18847
What is the land area for the RCM that has a population of 18847?
CREATE TABLE table_214920_1 (land_area VARCHAR, population_canada_2011_census VARCHAR)
SELECT opponent FROM table_name_50 WHERE date = "jul 31" AND score = "w 5-1"
Name the opponent for jul 31 and score of w 5-1
CREATE TABLE table_name_50 (opponent VARCHAR, date VARCHAR, score VARCHAR)
SELECT score FROM table_name_48 WHERE visitor = "buffalo sabres" AND record = "1-3"
Which Score has a Visitor of buffalo sabres and a Record of 1-3?
CREATE TABLE table_name_48 (score VARCHAR, visitor VARCHAR, record VARCHAR)
SELECT result FROM table_17103566_1 WHERE team_1 = "ICL Pakistan"
What is the result when team 1 is ICL Pakistan?
CREATE TABLE table_17103566_1 (result VARCHAR, team_1 VARCHAR)
SELECT opponent FROM table_name_65 WHERE save = "smith (22)"
Which opponent has a save of smith (22)?
CREATE TABLE table_name_65 (opponent VARCHAR, save VARCHAR)
SELECT to_par FROM table_name_98 WHERE score = 70 AND player = "craig stadler"
What is To Par, when Score is 70, and when Player is "Craig Stadler"?
CREATE TABLE table_name_98 (to_par VARCHAR, score VARCHAR, player VARCHAR)
SELECT MIN(january) FROM table_name_94 WHERE game < 46 AND score = "5 - 3" AND record = "15-22-8"
What is the lowest January, when Game is less than 46, when Score is "5 - 3", and when Record is "15-22-8"?
CREATE TABLE table_name_94 (january INTEGER, record VARCHAR, game VARCHAR, score VARCHAR)
SELECT points FROM table_name_68 WHERE year < 1977 AND engine = "cosworth v8" AND entrant = "hb bewaking alarm systems"
How many points were there in a year earlier than 1977, a Cosworth V8 engine, and an entry from HB Bewaking alarm systems?
CREATE TABLE table_name_68 (points VARCHAR, entrant VARCHAR, year VARCHAR, engine VARCHAR)
SELECT COUNT(round) FROM table_1061075_1 WHERE opponents = "Haugar"
what is the total number of round where opponents is haugar
CREATE TABLE table_1061075_1 (round VARCHAR, opponents VARCHAR)
SELECT AVG(final_episode) AS Count FROM table_name_99 WHERE character = "maxine valera"
What is the average number for a final episode featuring maxine valera?
CREATE TABLE table_name_99 (final_episode INTEGER, character VARCHAR)
SELECT MAX(total) FROM table_name_23 WHERE season = "1996-97" AND second < 33
What is the highest Total, when Season is "1996-97", and when Second is less than 33?
CREATE TABLE table_name_23 (total INTEGER, season VARCHAR, second VARCHAR)
SELECT area FROM table_name_9 WHERE years = "1–8" AND name = "broomfield school"
Which area has Years of 1–8, and a Name of broomfield school?
CREATE TABLE table_name_9 (area VARCHAR, years VARCHAR, name VARCHAR)
SELECT status FROM table_12001616_4 WHERE entrant = "Joe Gibbs Racing"
What is the status of joe gibbs racing?
CREATE TABLE table_12001616_4 (status VARCHAR, entrant VARCHAR)
SELECT COUNT(game) FROM table_17325580_6 WHERE date = "December 12"
How many games occur on the date December 12?
CREATE TABLE table_17325580_6 (game VARCHAR, date VARCHAR)
SELECT date FROM table_name_73 WHERE week = 8
When has a Week of 8?
CREATE TABLE table_name_73 (date VARCHAR, week VARCHAR)
SELECT MAX(enrolment) FROM table_name_82 WHERE denomination = "anglican" AND day_boarding = "day" AND founded > 1929
What is the largest enrollment for anglican day schools founded after 1929?
CREATE TABLE table_name_82 (enrolment INTEGER, founded VARCHAR, denomination VARCHAR, day_boarding VARCHAR)
SELECT date FROM table_22334183_3 WHERE circuit = "Donington Park"
When was the circuit Donington Park?
CREATE TABLE table_22334183_3 (date VARCHAR, circuit VARCHAR)
SELECT released FROM table_name_13 WHERE series_sorted = "6y/aa"
What was the date of release for the episode sorted value of 6Y/AA?
CREATE TABLE table_name_13 (released VARCHAR, series_sorted VARCHAR)
SELECT date FROM table_name_88 WHERE catalog = "0-6700-30838-2-9"
What date has 0-6700-30838-2-9 for a catalog?
CREATE TABLE table_name_88 (date VARCHAR, catalog VARCHAR)
SELECT result FROM table_name_34 WHERE date = "16 november 2003"
What was the result on 16 November 2003?
CREATE TABLE table_name_34 (result VARCHAR, date VARCHAR)
SELECT MIN(year) FROM table_name_80 WHERE city = "casablanca"
What is the lowest year when the city is casablanca?
CREATE TABLE table_name_80 (year INTEGER, city VARCHAR)
SELECT t1.id, t1.maker FROM car_makers AS t1 JOIN model_list AS t2 ON t1.id = t2.maker GROUP BY t1.id HAVING COUNT(*) >= 2 INTERSECT SELECT t1.id, t1.maker FROM car_makers AS t1 JOIN model_list AS t2 ON t1.id = t2.maker JOIN car_names AS t3 ON t2.model = t3.model GROUP BY t1.id HAVING COUNT(*) > 3
Which are the car makers which produce at least 2 models and more than 3 car makers ? List the id and the maker .
CREATE TABLE car_makers (id VARCHAR, maker VARCHAR); CREATE TABLE model_list (maker VARCHAR, model VARCHAR); CREATE TABLE car_names (model VARCHAR)
SELECT result FROM table_name_23 WHERE competition = "europe/africa group i, play-off"
What is the result of the Europe/Africa Group I, play-off competition?
CREATE TABLE table_name_23 (result VARCHAR, competition VARCHAR)
SELECT party FROM table_1341598_11 WHERE incumbent = "Wyche Fowler"
What is the party for the incumbent Wyche Fowler?
CREATE TABLE table_1341598_11 (party VARCHAR, incumbent VARCHAR)
SELECT COUNT(finish) FROM table_256862_1 WHERE entries = "15" AND winning_yacht = "L'Esprit d'Equipe"
Name the number of finishes for 15 entries 15 and l'esprit d'equipe
CREATE TABLE table_256862_1 (finish VARCHAR, entries VARCHAR, winning_yacht VARCHAR)
SELECT tournament FROM table_name_85 WHERE finalist = "richard krajicek"
Which tournament had Richard Krajicek as a finalist?
CREATE TABLE table_name_85 (tournament VARCHAR, finalist VARCHAR)