answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT MIN(lane) FROM table_name_68 WHERE mark = "8.09 pb"
CREATE TABLE table_name_68 (lane INTEGER, mark VARCHAR)
What's the lowest lane found for a mark of 8.09 pb?
SELECT SUM(heat) FROM table_name_17 WHERE name = "ivet lalova"
CREATE TABLE table_name_17 (heat INTEGER, name VARCHAR)
What's the sum of all of ivet lalova's Heat stats?
SELECT COUNT(heat) FROM table_name_5 WHERE country = "british virgin islands"
CREATE TABLE table_name_5 (heat VARCHAR, country VARCHAR)
What's the total number of Heat recorded for the british virgin islands?
SELECT COUNT(heat) FROM table_name_14 WHERE mark = "7.29" AND name = "virgen benavides" AND lane < 2
CREATE TABLE table_name_14 (heat VARCHAR, lane VARCHAR, mark VARCHAR, name VARCHAR)
When the lane is under 2 and the name is virgen benavides with a mark of 7.29, what's the total number of Heat found?
SELECT time FROM table_name_87 WHERE competition = "european cup" AND venue = "moscow"
CREATE TABLE table_name_87 (time VARCHAR, competition VARCHAR, venue VARCHAR)
What's the Time for the Competition of european cup and has a Venue of Moscow?
SELECT time FROM table_name_17 WHERE event = "4x100 m relay" AND venue = "frankfurt"
CREATE TABLE table_name_17 (time VARCHAR, event VARCHAR, venue VARCHAR)
What's the Time for an Event of 4x100 m relay and has a Venue of Frankfurt?
SELECT competition FROM table_name_77 WHERE event = "4x100 m relay" AND time = "38.89"
CREATE TABLE table_name_77 (competition VARCHAR, event VARCHAR, time VARCHAR)
What Competition has an Event of 4x100 m relay and has the Time of 38.89?
SELECT MIN(year) FROM table_name_71 WHERE venue = "casablanca" AND time = "20.63w"
CREATE TABLE table_name_71 (year INTEGER, venue VARCHAR, time VARCHAR)
What's the lowest Year with a Venue of casablanca and has the Time of 20.63w?
SELECT college_junior_club_team FROM table_name_91 WHERE nationality = "united states"
CREATE TABLE table_name_91 (college_junior_club_team VARCHAR, nationality VARCHAR)
What was the College/junior/club team of the player with the united states nationality?
SELECT MIN(pick) FROM table_name_91 WHERE round > 7 AND nationality = "united states"
CREATE TABLE table_name_91 (pick INTEGER, round VARCHAR, nationality VARCHAR)
What was the lowest pick number for a united states player picked before round 7?
SELECT country FROM table_name_6 WHERE score = 69 - 71 - 72 - 69 = 281
CREATE TABLE table_name_6 (country VARCHAR, score VARCHAR)
What country was the player with the score line 69-71-72-69=281 from?
SELECT score FROM table_name_86 WHERE country = "south africa"
CREATE TABLE table_name_86 (score VARCHAR, country VARCHAR)
What was the score of the player from South Africa?
SELECT country FROM table_name_65 WHERE score = 73 - 74 - 72 - 64 = 283
CREATE TABLE table_name_65 (country VARCHAR, score VARCHAR)
What country did the player with the score line 73-74-72-64=283 from?
SELECT pro_stock AS Motorcycle FROM table_name_60 WHERE pro_stock = "tom martino"
CREATE TABLE table_name_60 (pro_stock VARCHAR)
Who won Pro Stock Motorcycle the year Tom Martino won Pro Stock?
SELECT funny_car FROM table_name_64 WHERE year = 2012
CREATE TABLE table_name_64 (funny_car VARCHAR, year VARCHAR)
Who won Funny Car in 2012?
SELECT funny_car FROM table_name_57 WHERE pro_stock = "jim yates" AND year > 1996
CREATE TABLE table_name_57 (funny_car VARCHAR, pro_stock VARCHAR, year VARCHAR)
Who won Funny Car when Jim Yates won Pro Stock, in years after 1996?
SELECT pro_stock FROM table_name_83 WHERE top_fuel = "tony schumacher" AND funny_car = "tony pedregon"
CREATE TABLE table_name_83 (pro_stock VARCHAR, top_fuel VARCHAR, funny_car VARCHAR)
Who won Pro Stock the year Tony Schumacher won Top Fuel and Tony Pedregon won Funny Car?
SELECT year FROM table_name_65 WHERE funny_car = "john force" AND top_fuel = "mike dunn"
CREATE TABLE table_name_65 (year VARCHAR, funny_car VARCHAR, top_fuel VARCHAR)
In which year did John Force win Funny Car and Mike Dunn win in Top Fuel?
SELECT COUNT(races) FROM table_name_54 WHERE poles = 0 AND season = "2006" AND podiums > 0
CREATE TABLE table_name_54 (races VARCHAR, podiums VARCHAR, poles VARCHAR, season VARCHAR)
What is the total number of races in the 2006 season with 0 poles and more than 0 podiums?
SELECT MAX(fastest_laps) FROM table_name_9 WHERE poles = 0 AND races > 15 AND podiums > 2
CREATE TABLE table_name_9 (fastest_laps INTEGER, podiums VARCHAR, poles VARCHAR, races VARCHAR)
What is the highest number of the fastest laps when there were 0 poles, more than 2 podiums, and more than 15 races?
SELECT SUM(races) FROM table_name_8 WHERE poles > 1 AND fastest_laps < 4
CREATE TABLE table_name_8 (races INTEGER, poles VARCHAR, fastest_laps VARCHAR)
What is the total number of races when there was more than 1 pole, and the fastest number of laps was less than 4?
SELECT AVG(fastest_laps) FROM table_name_5 WHERE poles < 0
CREATE TABLE table_name_5 (fastest_laps INTEGER, poles INTEGER)
What was the average number of fastest laps with less than 0 poles?
SELECT MIN(poles) FROM table_name_52 WHERE fastest_laps < 0
CREATE TABLE table_name_52 (poles INTEGER, fastest_laps INTEGER)
What is the smallest number of poles when the fastest laps are less than 0?
SELECT SUM(wins) FROM table_name_80 WHERE fastest_laps = 0 AND races < 16 AND season = "2007" AND podiums < 0
CREATE TABLE table_name_80 (wins INTEGER, podiums VARCHAR, season VARCHAR, fastest_laps VARCHAR, races VARCHAR)
What is the total number of wins in the 2007 season when the fastest laps is 0, there are less than 0 podiums, and there are less than 16 races?
SELECT surface FROM table_name_85 WHERE partner = "hayley ericksen"
CREATE TABLE table_name_85 (surface VARCHAR, partner VARCHAR)
What surface did hayley ericksen play on?
SELECT opponents_in_the_final FROM table_name_23 WHERE surface = "hard" AND score = "6-4, 7-6(2)"
CREATE TABLE table_name_23 (opponents_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
Who were the opponents on a hard surface with a score of 6-4, 7-6(2)?
SELECT score FROM table_name_97 WHERE partner = "hayley ericksen"
CREATE TABLE table_name_97 (score VARCHAR, partner VARCHAR)
What was hayley ericksen's score?
SELECT silver FROM table_name_28 WHERE bronze = "katie curtis unknown"
CREATE TABLE table_name_28 (silver VARCHAR, bronze VARCHAR)
Who won the Silver the Year Katie Curtis Unknown won the Bronze?
SELECT round FROM table_name_54 WHERE name = "greg huntington"
CREATE TABLE table_name_54 (round VARCHAR, name VARCHAR)
Round that greg huntington went in?
SELECT SUM(overall) FROM table_name_16 WHERE college = "penn state"
CREATE TABLE table_name_16 (overall INTEGER, college VARCHAR)
Total overall from penn state?
SELECT COUNT(seasons) FROM table_name_2 WHERE coach = "pat chambers"
CREATE TABLE table_name_2 (seasons VARCHAR, coach VARCHAR)
How many seasons did Pat Chambers coach?
SELECT to_par FROM table_name_70 WHERE score = 68 - 74 - 69 = 211
CREATE TABLE table_name_70 (to_par VARCHAR, score VARCHAR)
What was the to par that goes with the score 68-74-69=211?
SELECT country FROM table_name_21 WHERE player = "paul stankowski"
CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR)
What country is Paul Stankowski from?
SELECT place FROM table_name_90 WHERE score = 70 - 66 - 65 = 201
CREATE TABLE table_name_90 (place VARCHAR, score VARCHAR)
What place goes with the score of 70-66-65=201?
SELECT score FROM table_name_95 WHERE to_par = "e" AND player = "fred funk"
CREATE TABLE table_name_95 (score VARCHAR, to_par VARCHAR, player VARCHAR)
When Fred Funk had a to par of E, what was the score?
SELECT location FROM table_name_89 WHERE opponent = "scott junk"
CREATE TABLE table_name_89 (location VARCHAR, opponent VARCHAR)
Where is the location where Scott Junk was the opponent?
SELECT score FROM table_name_69 WHERE date = "14 december 1974" AND away_team = "crystal palace"
CREATE TABLE table_name_69 (score VARCHAR, date VARCHAR, away_team VARCHAR)
what is the score on 14 december 1974 and the away team is crystal palace?
SELECT date FROM table_name_94 WHERE away_team = "crystal palace"
CREATE TABLE table_name_94 (date VARCHAR, away_team VARCHAR)
what is the date when the away team is crystal palace?
SELECT tie_no FROM table_name_7 WHERE away_team = "bradford city"
CREATE TABLE table_name_7 (tie_no VARCHAR, away_team VARCHAR)
What was the Tie Number of the Bradford City away team?
SELECT home_team FROM table_name_81 WHERE tie_no = "replay" AND away_team = "bolton wanderers"
CREATE TABLE table_name_81 (home_team VARCHAR, tie_no VARCHAR, away_team VARCHAR)
Who was the home team that had a replay of Tie Number and played against the Bolton Wanderers?
SELECT date FROM table_name_92 WHERE tie_no = "4"
CREATE TABLE table_name_92 (date VARCHAR, tie_no VARCHAR)
What date has a Tie Number of 4?
SELECT AVG(money___) AS $__ FROM table_name_54 WHERE player = "tom weiskopf"
CREATE TABLE table_name_54 (money___ INTEGER, player VARCHAR)
What is the average money ($) that Tom Weiskopf made?
SELECT place FROM table_name_43 WHERE country = "united states" AND to_par = "+2" AND score = 73 - 74 - 71 - 72 = 290
CREATE TABLE table_name_43 (place VARCHAR, country VARCHAR, to_par VARCHAR, score VARCHAR)
What place did the golfer from the United States come in with a To Par of +2, and a score of 73-74-71-72=290?
SELECT power_notation FROM table_name_35 WHERE long_scale = "one million"
CREATE TABLE table_name_35 (power_notation VARCHAR, long_scale VARCHAR)
For a long scale of one million, what is the power notion?
SELECT long_scale FROM table_name_7 WHERE power_notation = "10 12"
CREATE TABLE table_name_7 (long_scale VARCHAR, power_notation VARCHAR)
For a power notation of 10 12, what is the long scale?
SELECT long_scale FROM table_name_94 WHERE short_scale = "one quadrillion a thousand trillion"
CREATE TABLE table_name_94 (long_scale VARCHAR, short_scale VARCHAR)
For a short scale of one quadrillion a thousand trillion, what is the Long scale?
SELECT employee__real_name_ FROM table_name_9 WHERE pick__number > 10 AND brand__to_ = "raw"
CREATE TABLE table_name_9 (employee__real_name_ VARCHAR, pick__number VARCHAR, brand__to_ VARCHAR)
what is the employee (real name) when the pick # is higher than 10 and the brand (to) is raw?
SELECT opponent_team FROM table_name_37 WHERE scorers = "ronaldinho 90+3'"
CREATE TABLE table_name_37 (opponent_team VARCHAR, scorers VARCHAR)
Who was the opposing team when the scorer was ronaldinho 90+3'?
SELECT opponent_team FROM table_name_84 WHERE scorers = "jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'"
CREATE TABLE table_name_84 (opponent_team VARCHAR, scorers VARCHAR)
Who was the opposing team when the scorers were jong-a-pin 19'( o.g. ) , gattuso 23' , inzaghi 69'?
SELECT score FROM table_name_26 WHERE home_team = "altrincham"
CREATE TABLE table_name_26 (score VARCHAR, home_team VARCHAR)
What was the score when Altrincham was home?
SELECT MAX(goals_against) FROM table_name_20 WHERE drawn < 3
CREATE TABLE table_name_20 (goals_against INTEGER, drawn INTEGER)
How many goals against when the draws are fewer than 3?
SELECT SUM(goals_for) FROM table_name_24 WHERE points_1 = 38 AND played < 42
CREATE TABLE table_name_24 (goals_for INTEGER, points_1 VARCHAR, played VARCHAR)
How many goals when the points 1 is 38 and the played number is less than 42?
SELECT MIN(goals_for) FROM table_name_20 WHERE goal_difference = "+10" AND goals_against > 61
CREATE TABLE table_name_20 (goals_for INTEGER, goal_difference VARCHAR, goals_against VARCHAR)
What is the fewest goals for when goal difference is +10 and goals against is more than 61?
SELECT MIN(goals_for) FROM table_name_35 WHERE goals_against = 75 AND drawn < 11
CREATE TABLE table_name_35 (goals_for INTEGER, goals_against VARCHAR, drawn VARCHAR)
What is the fewest goals for when goals against is 75 and drawn is smaller than 11?
SELECT MAX(goals_for) FROM table_name_46 WHERE position > 10 AND goal_difference < -24 AND played > 30
CREATE TABLE table_name_46 (goals_for INTEGER, played VARCHAR, position VARCHAR, goal_difference VARCHAR)
What is the highest goals for the position after 10, a goal difference less than -24, and played more than 30 times?
SELECT MIN(goals_for) FROM table_name_88 WHERE played > 30
CREATE TABLE table_name_88 (goals_for INTEGER, played INTEGER)
What is the lowest goals for more than 30 games played?
SELECT MAX(goals_for) FROM table_name_71 WHERE position > 8 AND losses = 12 AND played < 30
CREATE TABLE table_name_71 (goals_for INTEGER, played VARCHAR, position VARCHAR, losses VARCHAR)
What is the highest amount of goals in the position after 8, 12 losses, and played less than 30 games?
SELECT COUNT(losses) FROM table_name_50 WHERE played > 30
CREATE TABLE table_name_50 (losses VARCHAR, played INTEGER)
What is the total number of losses for the over 30 games played?
SELECT COUNT(losses) FROM table_name_68 WHERE draws < 7 AND points > 26 AND goals_for = 60 AND position < 4
CREATE TABLE table_name_68 (losses VARCHAR, position VARCHAR, goals_for VARCHAR, draws VARCHAR, points VARCHAR)
What is the total number of losses and draws less than 7, points larger than 26, 60 goals, and a position before 4?
SELECT MAX(bronze) FROM table_name_84 WHERE gold > 0 AND total = 15 AND silver < 5
CREATE TABLE table_name_84 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR)
What is the highest total for bronze with a gold larger than 0, a silver smaller than 5, and a total of 15?
SELECT score FROM table_name_36 WHERE high_points = "dwight howard (25)"
CREATE TABLE table_name_36 (score VARCHAR, high_points VARCHAR)
What is Score, when High Points is "Dwight Howard (25)"?
SELECT score FROM table_name_81 WHERE team = "washington"
CREATE TABLE table_name_81 (score VARCHAR, team VARCHAR)
What is Score, when Team is "Washington"?
SELECT record FROM table_name_97 WHERE location_attendance = "pepsi center 19,749"
CREATE TABLE table_name_97 (record VARCHAR, location_attendance VARCHAR)
What is Record, when Location Attendance is "Pepsi Center 19,749"?
SELECT record FROM table_name_24 WHERE game = 36
CREATE TABLE table_name_24 (record VARCHAR, game VARCHAR)
What is Record, when Game is "36"?
SELECT date FROM table_name_38 WHERE winning_score = −14(68 - 68 - 67 - 71 = 274)
CREATE TABLE table_name_38 (date VARCHAR, winning_score VARCHAR)
What is Date, when Winning Score is −14 (68-68-67-71=274)?
SELECT margin_of_victory FROM table_name_24 WHERE tournament = "mercedes championships (3)"
CREATE TABLE table_name_24 (margin_of_victory VARCHAR, tournament VARCHAR)
What is the Margin of Victory, when Tournament is Mercedes Championships (3)?
SELECT date FROM table_name_83 WHERE tournament = "greenbrier classic"
CREATE TABLE table_name_83 (date VARCHAR, tournament VARCHAR)
What is Date, when Tournament, is Greenbrier Classic?
SELECT runner_s__up FROM table_name_87 WHERE margin_of_victory = "6 strokes"
CREATE TABLE table_name_87 (runner_s__up VARCHAR, margin_of_victory VARCHAR)
What is Runner(s)-Up when Margin of Victory is 6 Strokes?
SELECT date FROM table_name_18 WHERE runner_s__up = "jonathan kaye"
CREATE TABLE table_name_18 (date VARCHAR, runner_s__up VARCHAR)
What is Date, when Runner(s)-Up is Jonathan Kaye?
SELECT MAX(year_named) FROM table_name_1 WHERE name = "nahete colles"
CREATE TABLE table_name_1 (year_named INTEGER, name VARCHAR)
What is the year that nahete colles was named?
SELECT MAX(year_named) FROM table_name_78 WHERE latitude = "76.0n" AND diameter__km_ > 548
CREATE TABLE table_name_78 (year_named INTEGER, latitude VARCHAR, diameter__km_ VARCHAR)
What year was the geological feature with a latitude of 76.0n and a diameter larger than 548 km was named?
SELECT diameter__km_ FROM table_name_62 WHERE name = "t'ien hu colles"
CREATE TABLE table_name_62 (diameter__km_ VARCHAR, name VARCHAR)
What is the diameter in km of t'ien hu colles?
SELECT team FROM table_name_22 WHERE laps = 134
CREATE TABLE table_name_22 (team VARCHAR, laps VARCHAR)
Which team has driven 134 laps?
SELECT class FROM table_name_74 WHERE laps > 134 AND pos = "4th"
CREATE TABLE table_name_74 (class VARCHAR, laps VARCHAR, pos VARCHAR)
In what class is the laps greater than 134 and the position is 4th?
SELECT title FROM table_name_11 WHERE name = "mentuhotep iv"
CREATE TABLE table_name_11 (title VARCHAR, name VARCHAR)
What title did Mentuhotep IV have?
SELECT title FROM table_name_78 WHERE name = "amenemhat ii"
CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)
What is the title of Amenemhat II?
SELECT title FROM table_name_78 WHERE name = "senusret i"
CREATE TABLE table_name_78 (title VARCHAR, name VARCHAR)
What is the title of Senusret I?
SELECT title FROM table_name_57 WHERE name = "amenemhat i"
CREATE TABLE table_name_57 (title VARCHAR, name VARCHAR)
What is the title of Amenemhat I?
SELECT record FROM table_name_35 WHERE round = 5 AND time = "5:00" AND opponent = "torrance taylor"
CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR, round VARCHAR, time VARCHAR)
What is the Record when the round was 5, time was 5:00, and the opponent was Torrance Taylor
SELECT method FROM table_name_86 WHERE time = "5:00" AND round > 4
CREATE TABLE table_name_86 (method VARCHAR, time VARCHAR, round VARCHAR)
What is the method when the time was 5:00, and the round higher than 4?
SELECT polling_organisation_client FROM table_name_5 WHERE others = "7%"
CREATE TABLE table_name_5 (polling_organisation_client VARCHAR, others VARCHAR)
When the others had a value of 7%, what was the Polling organisation/client?
SELECT player FROM table_name_26 WHERE position = "small forward"
CREATE TABLE table_name_26 (player VARCHAR, position VARCHAR)
What player plays the position of small forward?
SELECT latitude FROM table_name_18 WHERE diameter__km_ = 0
CREATE TABLE table_name_18 (latitude VARCHAR, diameter__km_ VARCHAR)
What is the latitude of the 0 diameter?
SELECT longitude FROM table_name_35 WHERE name = "angerona tholus"
CREATE TABLE table_name_35 (longitude VARCHAR, name VARCHAR)
What is the longitude of Angerona Tholus?
SELECT MIN(diameter__km_) FROM table_name_97 WHERE name = "eirene tholus"
CREATE TABLE table_name_97 (diameter__km_ INTEGER, name VARCHAR)
What is the smallest diameter for Eirene Tholus?
SELECT MIN(game) FROM table_name_88 WHERE date = "april 25"
CREATE TABLE table_name_88 (game INTEGER, date VARCHAR)
What was the game on April 25?
SELECT SUM(wkts) FROM table_name_46 WHERE ovrs > 2 AND econ > 7.84
CREATE TABLE table_name_46 (wkts INTEGER, ovrs VARCHAR, econ VARCHAR)
what is the sum of the wkts when the ovrs were bigger than 2 and econ was bigger than 7.84?
SELECT SUM(runs) FROM table_name_65 WHERE ovrs < 2 AND wkts > 0
CREATE TABLE table_name_65 (runs INTEGER, ovrs VARCHAR, wkts VARCHAR)
What is the sum of the runs when the wkts were bigger than 0 and ovrs were smaller than 2?
SELECT MAX(wkts) FROM table_name_21 WHERE runs < 26 AND player = "james hopes" AND ovrs > 2
CREATE TABLE table_name_21 (wkts INTEGER, ovrs VARCHAR, runs VARCHAR, player VARCHAR)
What is the highest wkts for james hopes who had less than 26 runs and more than 2 ovrs?
SELECT AVG(sales__billion_) AS $_ FROM table_name_65 WHERE headquarters = "france" AND assets__billion_$_ > 2 OFFSET 539.1
CREATE TABLE table_name_65 (sales__billion_ INTEGER, headquarters VARCHAR, assets__billion_$_ VARCHAR)
What is the average sales in billions of the company headquartered in France with more than 2,539.1 billion in assets?
SELECT AVG(sales__billion_) AS $_ FROM table_name_5 WHERE company = "walmart" AND profits__billion_$_ > 15.7
CREATE TABLE table_name_5 (sales__billion_ INTEGER, company VARCHAR, profits__billion_$_ VARCHAR)
What is the average sales in billions of walmart, which has more than 15.7 billion in profits?
SELECT rider FROM table_name_35 WHERE grid = 21
CREATE TABLE table_name_35 (rider VARCHAR, grid VARCHAR)
What is the rider when the grid is 21?
SELECT AVG(laps) FROM table_name_71 WHERE manufacturer = "yamaha" AND rider = "garry mccoy" AND grid < 4
CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, rider VARCHAR)
What is the average laps when the manufacturer is yamaha, and the rider is garry mccoy and the grid is smaller than 4?
SELECT MIN(laps) FROM table_name_10 WHERE rider = "andrew pitt" AND grid < 18
CREATE TABLE table_name_10 (laps INTEGER, rider VARCHAR, grid VARCHAR)
What is the lowest laps for rider andrew pitt, with a grid smaller than 18? Wha
SELECT MIN(laps) FROM table_name_4 WHERE manufacturer = "yamaha" AND time_retired = "+1:08.312" AND grid < 20
CREATE TABLE table_name_4 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
What is the lowest laps that has a manufacturer of yamaha, and a time/retired of +1:08.312, and a grid less than 20?
SELECT event FROM table_name_74 WHERE method = "tko (punches)" AND opponent = "jason macdonald"
CREATE TABLE table_name_74 (event VARCHAR, method VARCHAR, opponent VARCHAR)
What event had a tko (punches) method and jason macdonald as the opponent?
SELECT opponent FROM table_name_30 WHERE round > 1 AND method = "decision (unanimous)"
CREATE TABLE table_name_30 (opponent VARCHAR, round VARCHAR, method VARCHAR)
What is the opponent after round number 1 with a method of decision (unanimous)?
SELECT partnering FROM table_name_29 WHERE opponents_in_final = "marcelo melo andré sá"
CREATE TABLE table_name_29 (partnering VARCHAR, opponents_in_final VARCHAR)
Who is the partnering that had the opponents of Marcelo Melo André Sá?
SELECT score_in_final FROM table_name_32 WHERE date = "february 14, 1999"
CREATE TABLE table_name_32 (score_in_final VARCHAR, date VARCHAR)
What was the score on February 14, 1999?
SELECT date FROM table_name_29 WHERE score_in_final = "6–7(9), 6–2, (10–7)"
CREATE TABLE table_name_29 (date VARCHAR, score_in_final VARCHAR)
What date was the score 6–7(9), 6–2, (10–7)?