text
stringlengths
114
1.06k
### question: What is the location and attendance of the game with a game number greater than 7 and a record of 5-2-1? ### answer: SELECT location_attendance FROM table_name_90 WHERE game > 7 AND record = "5-2-1" ### context: CREATE TABLE table_name_90 (location_attendance VARCHAR, game VARCHAR, record VARCHAR)
### question: What is the location and attendance of the game with a 3-1-0 record? ### answer: SELECT location_attendance FROM table_name_6 WHERE record = "3-1-0" ### context: CREATE TABLE table_name_6 (location_attendance VARCHAR, record VARCHAR)
### question: Who is the opponent of the game with a game number less than 5 with a 2-0-0 record? ### answer: SELECT opponent FROM table_name_51 WHERE game < 5 AND record = "2-0-0" ### context: CREATE TABLE table_name_51 (opponent VARCHAR, game VARCHAR, record VARCHAR)
### question: What Frequency's Branding is Your Cure for Corporate Radio? ### answer: SELECT frequency FROM table_name_23 WHERE branding = "your cure for corporate radio" ### context: CREATE TABLE table_name_23 (frequency VARCHAR, branding VARCHAR)
### question: What is the Format of AM 980? ### answer: SELECT format FROM table_name_96 WHERE frequency = "am 980" ### context: CREATE TABLE table_name_96 (format VARCHAR, frequency VARCHAR)
### question: What is the Branding of the Frequency owned by Sound of Faith Broadcasting Group? ### answer: SELECT branding FROM table_name_23 WHERE owner = "sound of faith broadcasting group" ### context: CREATE TABLE table_name_23 (branding VARCHAR, owner VARCHAR)
### question: What is FM 99.9's Format? ### answer: SELECT format FROM table_name_78 WHERE frequency = "fm 99.9" ### context: CREATE TABLE table_name_78 (format VARCHAR, frequency VARCHAR)
### question: What is the Format of the Frequency CJBX-FM? ### answer: SELECT format FROM table_name_59 WHERE call_sign = "cjbx-fm" ### context: CREATE TABLE table_name_59 (format VARCHAR, call_sign VARCHAR)
### question: What is the Call sign of the Frequency 106.9 the X? ### answer: SELECT call_sign FROM table_name_19 WHERE branding = "106.9 the x" ### context: CREATE TABLE table_name_19 (call_sign VARCHAR, branding VARCHAR)
### question: Which Score has an Opponent of @ buffalo sabres? ### answer: SELECT score FROM table_name_13 WHERE opponent = "@ buffalo sabres" ### context: CREATE TABLE table_name_13 (score VARCHAR, opponent VARCHAR)
### question: How many Points have a Date of march 19, 2009? ### answer: SELECT COUNT(points) FROM table_name_7 WHERE date = "march 19, 2009" ### context: CREATE TABLE table_name_7 (points VARCHAR, date VARCHAR)
### question: What time is CDT when EDT is 4:55 a.m.? ### answer: SELECT cdt___5_utc_ FROM table_name_71 WHERE edt___4_utc_ = "4:55 a.m." ### context: CREATE TABLE table_name_71 (cdt___5_utc_ VARCHAR, edt___4_utc_ VARCHAR)
### question: What is the time for PDT when CDT is 6:38 a.m.? ### answer: SELECT pdt___7_utc_ FROM table_name_69 WHERE cdt___5_utc_ = "6:38 a.m." ### context: CREATE TABLE table_name_69 (pdt___7_utc_ VARCHAR, cdt___5_utc_ VARCHAR)
### question: What time is CDT when PDT is 3:17 a.m.? ### answer: SELECT cdt___5_utc_ FROM table_name_13 WHERE pdt___7_utc_ = "3:17 a.m." ### context: CREATE TABLE table_name_13 (cdt___5_utc_ VARCHAR, pdt___7_utc_ VARCHAR)
### question: What time is MDT when EDT is set and PDT is 6:00 a.m.? ### answer: SELECT mdt___6_utc_ FROM table_name_58 WHERE edt___4_utc_ = "set" AND pdt___7_utc_ = "6:00 a.m." ### context: CREATE TABLE table_name_58 (mdt___6_utc_ VARCHAR, edt___4_utc_ VARCHAR, pdt___7_utc_ VARCHAR)
### question: Which Finals has a A-League of 0 6, and a Pre-Season larger than 0? ### answer: SELECT AVG(finals) FROM table_name_12 WHERE a_league = "0 6" AND pre_season > 0 ### context: CREATE TABLE table_name_12 (finals INTEGER, a_league VARCHAR, pre_season VARCHAR)
### question: Which Pre-Season has a A-League of 0 1, and a Finals larger than 0? ### answer: SELECT MIN(pre_season) FROM table_name_4 WHERE a_league = "0 1" AND finals > 0 ### context: CREATE TABLE table_name_4 (pre_season INTEGER, a_league VARCHAR, finals VARCHAR)
### question: What is the highest Taper (in/ft), when Size is 8? ### answer: SELECT MAX(taper__in_ft_) FROM table_name_20 WHERE size = 8 ### context: CREATE TABLE table_name_20 (taper__in_ft_ INTEGER, size VARCHAR)
### question: What is the date for week 15? ### answer: SELECT date FROM table_name_28 WHERE week = 15 ### context: CREATE TABLE table_name_28 (date VARCHAR, week VARCHAR)
### question: What is the total attendance for Candlestick Park? ### answer: SELECT COUNT(attendance) FROM table_name_74 WHERE game_site = "candlestick park" ### context: CREATE TABLE table_name_74 (attendance VARCHAR, game_site VARCHAR)
### question: Who was the opponent on april 26, 2003? ### answer: SELECT opponent FROM table_name_25 WHERE date = "april 26, 2003" ### context: CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR)
### question: What was the result on week 1? ### answer: SELECT result FROM table_name_27 WHERE week = 1 ### context: CREATE TABLE table_name_27 (result VARCHAR, week VARCHAR)
### question: What was the result of the game that took place on april 26, 2003? ### answer: SELECT result FROM table_name_83 WHERE date = "april 26, 2003" ### context: CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)
### question: What was the result of the week that was a bye before week 6? ### answer: SELECT result FROM table_name_47 WHERE week < 6 AND game_site = "bye" ### context: CREATE TABLE table_name_47 (result VARCHAR, week VARCHAR, game_site VARCHAR)
### question: What is the lowest number of districts (kecamatan) in the north sulawesi province with more than 1,510 villages? ### answer: SELECT MIN(number_of_districts__kecamatan_) FROM table_name_97 WHERE province = "north sulawesi" AND villages > 1 OFFSET 510 ### context: CREATE TABLE table_name_97 (number_of_distr...
### question: What is the sum of the number of districts (kecamatan) in the geographical unit of java with more than 4 recencies (kabupaten) and less than 8,577 villages? ### answer: SELECT SUM(number_of_districts__kecamatan_) FROM table_name_4 WHERE geographical_unit = "java" AND number_of_regencies__kabupaten_ > 4 AN...
### question: Which score was associated with an attendance of 275? ### answer: SELECT score FROM table_name_66 WHERE attendance = 275 ### context: CREATE TABLE table_name_66 (score VARCHAR, attendance VARCHAR)
### question: What was the lowest attendance by the game that had an away team of Vida? ### answer: SELECT MIN(attendance) FROM table_name_47 WHERE away = "vida" ### context: CREATE TABLE table_name_47 (attendance INTEGER, away VARCHAR)
### question: Who was the away team that had attendance under 2614 and a home team of Victoria? ### answer: SELECT away FROM table_name_69 WHERE attendance < 2614 AND home = "victoria" ### context: CREATE TABLE table_name_69 (away VARCHAR, attendance VARCHAR, home VARCHAR)
### question: Who was the home team for the game with Platense as the away team and attendance under 529? ### answer: SELECT home FROM table_name_67 WHERE attendance < 529 AND away = "platense" ### context: CREATE TABLE table_name_67 (home VARCHAR, attendance VARCHAR, away VARCHAR)
### question: What was the attendance for the game with an away team of Hispano? ### answer: SELECT attendance FROM table_name_99 WHERE away = "hispano" ### context: CREATE TABLE table_name_99 (attendance VARCHAR, away VARCHAR)
### question: Which home has an attendance of 507? ### answer: SELECT home FROM table_name_99 WHERE attendance = 507 ### context: CREATE TABLE table_name_99 (home VARCHAR, attendance VARCHAR)
### question: What was the total attendance for the 3:1 game? ### answer: SELECT SUM(attendance) FROM table_name_79 WHERE score = "3:1" ### context: CREATE TABLE table_name_79 (attendance INTEGER, score VARCHAR)
### question: How many goals against were scored when the points were smaller than 13, the wins were smaller than 3, and the goals for were smaller than 15? ### answer: SELECT SUM(goals_against) FROM table_name_73 WHERE points < 13 AND wins < 3 AND goals_for < 15 ### context: CREATE TABLE table_name_73 (goals_against I...
### question: What was the highest position when the wins were higher than 4 and the points were lower than 11? ### answer: SELECT MAX(position) FROM table_name_28 WHERE wins = 4 AND points < 11 ### context: CREATE TABLE table_name_28 (position INTEGER, wins VARCHAR, points VARCHAR)
### question: When the goals against were higher than 30, what was the average number of draws? ### answer: SELECT AVG(draws) FROM table_name_23 WHERE goals_against > 30 ### context: CREATE TABLE table_name_23 (draws INTEGER, goals_against INTEGER)
### question: How many wins happened when there were fewer than 2 draws? ### answer: SELECT SUM(wins) FROM table_name_19 WHERE draws < 2 ### context: CREATE TABLE table_name_19 (wins INTEGER, draws INTEGER)
### question: How many goals against were scored when the position was higher than 1 and the played was higher than 10? ### answer: SELECT COUNT(goals_against) FROM table_name_17 WHERE position > 1 AND played > 10 ### context: CREATE TABLE table_name_17 (goals_against VARCHAR, position VARCHAR, played VARCHAR)
### question: What year were the Grizzlies in Providence? ### answer: SELECT years_for_grizzlies FROM table_name_19 WHERE school_club_team = "providence" ### context: CREATE TABLE table_name_19 (years_for_grizzlies VARCHAR, school_club_team VARCHAR)
### question: What player from the United States played for the Grizzlies from 1997-1998? ### answer: SELECT player FROM table_name_83 WHERE nationality = "united states" AND years_for_grizzlies = "1997-1998" ### context: CREATE TABLE table_name_83 (player VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR)
### question: Which player played for the Grizzlies from 1997-1998? ### answer: SELECT player FROM table_name_13 WHERE years_for_grizzlies = "1997-1998" ### context: CREATE TABLE table_name_13 (player VARCHAR, years_for_grizzlies VARCHAR)
### question: Who won the men's ski jump when the FIS Nordic World Ski Championships was 1980? ### answer: SELECT winner FROM table_name_34 WHERE fis_nordic_world_ski_championships = "1980" ### context: CREATE TABLE table_name_34 (winner VARCHAR, fis_nordic_world_ski_championships VARCHAR)
### question: With the Winter Olympics was 1960, what was the country? ### answer: SELECT country FROM table_name_53 WHERE winter_olympics = "1960" ### context: CREATE TABLE table_name_53 (country VARCHAR, winter_olympics VARCHAR)
### question: What was the Winter Olympics was Japan as the country? ### answer: SELECT winter_olympics FROM table_name_38 WHERE country = "japan" ### context: CREATE TABLE table_name_38 (winter_olympics VARCHAR, country VARCHAR)
### question: The winner Arnfinn Bergmann has what under country? ### answer: SELECT country FROM table_name_45 WHERE winner = "arnfinn bergmann" ### context: CREATE TABLE table_name_45 (country VARCHAR, winner VARCHAR)
### question: When the FIS Nordic World Ski Championships was 1962, 1964 what was the Holmenkollen? ### answer: SELECT holmenkollen FROM table_name_58 WHERE fis_nordic_world_ski_championships = "1962, 1964" ### context: CREATE TABLE table_name_58 (holmenkollen VARCHAR, fis_nordic_world_ski_championships VARCHAR)
### question: What is the total number of Money ( $ ), when To Par is "13", and when Player is "Julius Boros"? ### answer: SELECT COUNT(money___) AS $__ FROM table_name_2 WHERE to_par = 13 AND player = "julius boros" ### context: CREATE TABLE table_name_2 (money___ VARCHAR, to_par VARCHAR, player VARCHAR)
### question: What is Player, when Money ( $ ) is less than 387, and when Score is "73-76-74-72=295"? ### answer: SELECT player FROM table_name_40 WHERE money___$__ < 387 AND score = 73 - 76 - 74 - 72 = 295 ### context: CREATE TABLE table_name_40 (player VARCHAR, money___$__ VARCHAR, score VARCHAR)
### question: What is the total number of To Par, when Money ( $ ) is less than 387, and when Player is "Al Brosch"? ### answer: SELECT COUNT(to_par) FROM table_name_33 WHERE money___$__ < 387 AND player = "al brosch" ### context: CREATE TABLE table_name_33 (to_par VARCHAR, money___$__ VARCHAR, player VARCHAR)
### question: What is Place, when To Par is less than 15, and when Score is 76-72-75-71=294? ### answer: SELECT place FROM table_name_59 WHERE to_par < 15 AND score = 76 - 72 - 75 - 71 = 294 ### context: CREATE TABLE table_name_59 (place VARCHAR, to_par VARCHAR, score VARCHAR)
### question: What is Player, when Country is "United States", when Money ( $ ) is greater than 387, and when Score is "75-74-74-70=293"? ### answer: SELECT player FROM table_name_56 WHERE country = "united states" AND money___$__ > 387 AND score = 75 - 74 - 74 - 70 = 293 ### context: CREATE TABLE table_name_56 (player...
### question: WHAT IS THE RECORD FOR THE GAME SMALLER THAN 31? ### answer: SELECT record FROM table_name_36 WHERE game < 31 ### context: CREATE TABLE table_name_36 (record VARCHAR, game INTEGER)
### question: WHAT IS THE GAME ON SEPTEMBER 13? ### answer: SELECT AVG(game) FROM table_name_23 WHERE date = "september 13" ### context: CREATE TABLE table_name_23 (game INTEGER, date VARCHAR)
### question: Which team had more than 10 wins with a champion of Mat Mladin? ### answer: SELECT team FROM table_name_88 WHERE wins > 10 AND champion = "mat mladin" ### context: CREATE TABLE table_name_88 (team VARCHAR, wins VARCHAR, champion VARCHAR)
### question: Which team had 2 wins and a season later than 1986? ### answer: SELECT team FROM table_name_55 WHERE wins = 2 AND season > 1986 ### context: CREATE TABLE table_name_55 (team VARCHAR, wins VARCHAR, season VARCHAR)
### question: What was the score for Team 1 of Stade Lavallois (d1)? ### answer: SELECT score FROM table_name_7 WHERE team_1 = "stade lavallois (d1)" ### context: CREATE TABLE table_name_7 (score VARCHAR, team_1 VARCHAR)
### question: What was team one name for the Team 2 of Toulouse Fc (d1)>? ### answer: SELECT team_1 FROM table_name_34 WHERE team_2 = "toulouse fc (d1)" ### context: CREATE TABLE table_name_34 (team_1 VARCHAR, team_2 VARCHAR)
### question: What was the name of the Team 1, where the Team 2 was Stade De Reims (d2)? ### answer: SELECT team_1 FROM table_name_93 WHERE team_2 = "stade de reims (d2)" ### context: CREATE TABLE table_name_93 (team_1 VARCHAR, team_2 VARCHAR)
### question: What was teh score of the game where Toronto was the home team on January 28? ### answer: SELECT score FROM table_name_43 WHERE home = "toronto" AND date = "january 28" ### context: CREATE TABLE table_name_43 (score VARCHAR, home VARCHAR, date VARCHAR)
### question: What is listed for the High rebounds on the Date of March 31? ### answer: SELECT high_rebounds FROM table_name_34 WHERE date = "march 31" ### context: CREATE TABLE table_name_34 (high_rebounds VARCHAR, date VARCHAR)
### question: What is the Record for the Team of Indiana? ### answer: SELECT record FROM table_name_4 WHERE team = "indiana" ### context: CREATE TABLE table_name_4 (record VARCHAR, team VARCHAR)
### question: What's the Score for the Game of 75? ### answer: SELECT score FROM table_name_74 WHERE game = 75 ### context: CREATE TABLE table_name_74 (score VARCHAR, game VARCHAR)
### question: Which Release date has a Required OS of windows, a Type of 2d, and a Developer(s) of zeonix? ### answer: SELECT release_date FROM table_name_59 WHERE required_os = "windows" AND type = "2d" AND developer_s_ = "zeonix" ### context: CREATE TABLE table_name_59 (release_date VARCHAR, developer_s_ VARCHAR, req...
### question: Which Payment has a Type of 2d, and a Release date of january 2003? ### answer: SELECT payment FROM table_name_31 WHERE type = "2d" AND release_date = "january 2003" ### context: CREATE TABLE table_name_31 (payment VARCHAR, type VARCHAR, release_date VARCHAR)
### question: Which Payment has a Type of text, and a Release date of 26 september, 2003? ### answer: SELECT payment FROM table_name_12 WHERE type = "text" AND release_date = "26 september, 2003" ### context: CREATE TABLE table_name_12 (payment VARCHAR, type VARCHAR, release_date VARCHAR)
### question: Which Type has a Release date of november 30, 1997? ### answer: SELECT type FROM table_name_88 WHERE release_date = "november 30, 1997" ### context: CREATE TABLE table_name_88 (type VARCHAR, release_date VARCHAR)
### question: Which Release date has a Type of 2d? ### answer: SELECT release_date FROM table_name_34 WHERE type = "2d" ### context: CREATE TABLE table_name_34 (release_date VARCHAR, type VARCHAR)
### question: Which Release date has a Developer(s) of microsoft research? ### answer: SELECT release_date FROM table_name_84 WHERE developer_s_ = "microsoft research" ### context: CREATE TABLE table_name_84 (release_date VARCHAR, developer_s_ VARCHAR)
### question: what is the meet when the event is flying 200 m time trial? ### answer: SELECT meet FROM table_name_99 WHERE event = "flying 200 m time trial" ### context: CREATE TABLE table_name_99 (meet VARCHAR, event VARCHAR)
### question: what is the record when the event is 1 km time trial? ### answer: SELECT record FROM table_name_53 WHERE event = "1 km time trial" ### context: CREATE TABLE table_name_53 (record VARCHAR, event VARCHAR)
### question: what is the place when the event is 4000 m individual pursuit? ### answer: SELECT place FROM table_name_94 WHERE event = "4000 m individual pursuit" ### context: CREATE TABLE table_name_94 (place VARCHAR, event VARCHAR)
### question: what is the place when the event is 4000 m individual pursuit? ### answer: SELECT place FROM table_name_2 WHERE event = "4000 m individual pursuit" ### context: CREATE TABLE table_name_2 (place VARCHAR, event VARCHAR)
### question: what is the meet when the date is 3 august 2012? ### answer: SELECT meet FROM table_name_67 WHERE date = "3 august 2012" ### context: CREATE TABLE table_name_67 (meet VARCHAR, date VARCHAR)
### question: Which Year has a Position of 4th? ### answer: SELECT SUM(year) FROM table_name_6 WHERE position = "4th" ### context: CREATE TABLE table_name_6 (year INTEGER, position VARCHAR)
### question: Which Event has a Competition of chicago marathon, and a Year larger than 2004? ### answer: SELECT event FROM table_name_79 WHERE competition = "chicago marathon" AND year > 2004 ### context: CREATE TABLE table_name_79 (event VARCHAR, competition VARCHAR, year VARCHAR)
### question: WHich Venue has a Year larger than 2003, and a Position of 10th? ### answer: SELECT venue FROM table_name_11 WHERE year > 2003 AND position = "10th" ### context: CREATE TABLE table_name_11 (venue VARCHAR, year VARCHAR, position VARCHAR)
### question: Name the Venue which has a Position of 5th? ### answer: SELECT venue FROM table_name_39 WHERE position = "5th" ### context: CREATE TABLE table_name_39 (venue VARCHAR, position VARCHAR)
### question: What is the Place 2 Player? ### answer: SELECT player FROM table_name_1 WHERE place = "2" ### context: CREATE TABLE table_name_1 (player VARCHAR, place VARCHAR)
### question: What Player has a +3 To par? ### answer: SELECT player FROM table_name_11 WHERE to_par = "+3" ### context: CREATE TABLE table_name_11 (player VARCHAR, to_par VARCHAR)
### question: What is the Place of Player with To par of +6 and Score of 78-70-74=222? ### answer: SELECT place FROM table_name_79 WHERE to_par = "+6" AND score = 78 - 70 - 74 = 222 ### context: CREATE TABLE table_name_79 (place VARCHAR, to_par VARCHAR, score VARCHAR)
### question: What is the Country of the Player with a Score of 75-70-74=219? ### answer: SELECT country FROM table_name_13 WHERE score = 75 - 70 - 74 = 219 ### context: CREATE TABLE table_name_13 (country VARCHAR, score VARCHAR)
### question: What is the Country with the T3 Place Player with a Score of 71-76-71=218? ### answer: SELECT country FROM table_name_99 WHERE place = "t3" AND score = 71 - 76 - 71 = 218 ### context: CREATE TABLE table_name_99 (country VARCHAR, place VARCHAR, score VARCHAR)
### question: In what event is the opponent Joe Nameth? ### answer: SELECT event FROM table_name_25 WHERE opponent = "joe nameth" ### context: CREATE TABLE table_name_25 (event VARCHAR, opponent VARCHAR)
### question: What is the record when the loss was to Alex Hunter in round 1? ### answer: SELECT record FROM table_name_75 WHERE round = "1" AND res = "loss" AND opponent = "alex hunter" ### context: CREATE TABLE table_name_75 (record VARCHAR, opponent VARCHAR, round VARCHAR, res VARCHAR)
### question: What is the method when the opponent is Andre Roberts? ### answer: SELECT method FROM table_name_34 WHERE opponent = "andre roberts" ### context: CREATE TABLE table_name_34 (method VARCHAR, opponent VARCHAR)
### question: What is the round when the opponent is Andre Roberts? ### answer: SELECT round FROM table_name_42 WHERE opponent = "andre roberts" ### context: CREATE TABLE table_name_42 (round VARCHAR, opponent VARCHAR)
### question: What is the round when the loss came with a record of 2-4? ### answer: SELECT round FROM table_name_78 WHERE res = "loss" AND record = "2-4" ### context: CREATE TABLE table_name_78 (round VARCHAR, res VARCHAR, record VARCHAR)
### question: How many rounds was the fight with a decision by submission (punches)? ### answer: SELECT round FROM table_name_3 WHERE method = "submission (punches)" ### context: CREATE TABLE table_name_3 (round VARCHAR, method VARCHAR)
### question: Who played against the Celtics on Sat. Feb. 23? ### answer: SELECT opponent FROM table_name_99 WHERE date = "sat. feb. 23" ### context: CREATE TABLE table_name_99 (opponent VARCHAR, date VARCHAR)
### question: Who played against the Celtics when the final game score was 85-102? ### answer: SELECT opponent FROM table_name_18 WHERE score = "85-102" ### context: CREATE TABLE table_name_18 (opponent VARCHAR, score VARCHAR)
### question: What game was the final score 82-79? ### answer: SELECT game FROM table_name_60 WHERE score = "82-79" ### context: CREATE TABLE table_name_60 (game VARCHAR, score VARCHAR)
### question: What is the highest value for Game, when Points is 16, when Date is November 11, 2008, and when Attendance is greater than 19,289? ### answer: SELECT MAX(game) FROM table_name_24 WHERE points = 16 AND date = "november 11, 2008" AND attendance > 19 OFFSET 289 ### context: CREATE TABLE table_name_24 (game I...
### question: What is Date, when Points is 13, and when Location is RBC Center? ### answer: SELECT date FROM table_name_58 WHERE points = 13 AND location = "rbc center" ### context: CREATE TABLE table_name_58 (date VARCHAR, points VARCHAR, location VARCHAR)
### question: What is Surface, when Score in Final is 3-6, 6-3, 6-2? ### answer: SELECT surface FROM table_name_23 WHERE score_in_final = "3-6, 6-3, 6-2" ### context: CREATE TABLE table_name_23 (surface VARCHAR, score_in_final VARCHAR)
### question: What is Championship, when Outcome is "runner-up", and when Opponents In Final is "Gigi Fernández Natalia Zvereva"? ### answer: SELECT championship FROM table_name_55 WHERE outcome = "runner-up" AND opponents_in_final = "gigi fernández natalia zvereva" ### context: CREATE TABLE table_name_55 (championship...
### question: What is Opponents in Final, when Partner is "Jill Hetherington", and when Year is after 1988? ### answer: SELECT opponents_in_final FROM table_name_96 WHERE partner = "jill hetherington" AND year > 1988 ### context: CREATE TABLE table_name_96 (opponents_in_final VARCHAR, partner VARCHAR, year VARCHAR)
### question: What is Surface, when Opponents, when Final is "Gigi Fernández Robin White"? ### answer: SELECT surface FROM table_name_81 WHERE opponents_in_final = "gigi fernández robin white" ### context: CREATE TABLE table_name_81 (surface VARCHAR, opponents_in_final VARCHAR)
### question: What is Outcome, when Championship is Australian Open, and when Year is before 1994? ### answer: SELECT outcome FROM table_name_78 WHERE championship = "australian open" AND year < 1994 ### context: CREATE TABLE table_name_78 (outcome VARCHAR, championship VARCHAR, year VARCHAR)
### question: What is the sum of Year(s), when Championship is "Australian Open", when Outcome is "Runner-Up", and when Score in Final is 3-6, 6-3, 6-2? ### answer: SELECT SUM(year) FROM table_name_36 WHERE championship = "australian open" AND outcome = "runner-up" AND score_in_final = "3-6, 6-3, 6-2" ### context: CREA...
### question: What iwas the attendance of the game that took place on december 6, 1998? ### answer: SELECT attendance FROM table_name_41 WHERE date = "december 6, 1998" ### context: CREATE TABLE table_name_41 (attendance VARCHAR, date VARCHAR)