question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What year did jockey Ramon Dominguez have a distance of 1-1/16?
columns: - name: year type: VARCHAR - name: distance type: VARCHAR - name: jockey type: VARCHAR table: table_name_40
SELECT year FROM table_name_40 WHERE distance = "1-1/16" AND jockey = "ramon dominguez"
What team was the opponent when the score was 8-2?
columns: - name: opponent type: VARCHAR - name: score type: VARCHAR table: table_name_24
SELECT opponent FROM table_name_24 WHERE score = "8-2"
What is the most recent year where the final score is 4–6, 3–6, 6–4, 5–7?
columns: - name: year type: INTEGER - name: score_in_the_final type: VARCHAR table: table_22839669_1
SELECT MAX(year) FROM table_22839669_1 WHERE score_in_the_final = "4–6, 3–6, 6–4, 5–7"
What is the municipal status where the population density is 895.5?
columns: - name: municipal_status type: VARCHAR - name: population_density type: VARCHAR table: table_21284653_1
SELECT municipal_status FROM table_21284653_1 WHERE population_density = "895.5"
What episode had a run time of 24:18?
columns: - name: episode type: VARCHAR - name: run_time type: VARCHAR table: table_2101431_1
SELECT episode FROM table_2101431_1 WHERE run_time = "24:18"
What's the location of the school having the panthers as a mascot with an AAA for the IHSAA Class?
columns: - name: location type: VARCHAR - name: ihsaa_class type: VARCHAR - name: mascot type: VARCHAR table: table_name_28
SELECT location FROM table_name_28 WHERE ihsaa_class = "aaa" AND mascot = "panthers"
On what date was the Result l 38-14?
columns: - name: date type: VARCHAR - name: result type: VARCHAR table: table_name_46
SELECT date FROM table_name_46 WHERE result = "l 38-14"
Which tournament in 2012 had a 2007 and 2011 finishes of "A"?
columns: - name: Id type: VARCHAR table: table_name_91
SELECT 2012 FROM table_name_91 WHERE 2007 = "a" AND 2011 = "a"
Which country has a rollercoaster that opened in 2002, is a spinning coaster, and is located in Disney's Animal Kingdom?
columns: - name: country type: VARCHAR - name: park type: VARCHAR - name: opened type: VARCHAR - name: model type: VARCHAR table: table_name_76
SELECT country FROM table_name_76 WHERE opened = 2002 AND model = "spinning coaster" AND park = "disney's animal kingdom"
How many miss universes did south africa have?
columns: - name: miss_universe type: VARCHAR - name: country type: VARCHAR table: table_28634206_1
SELECT COUNT(miss_universe) FROM table_28634206_1 WHERE country = "South Africa"
Name the example when the environment is #_x
columns: - name: example type: VARCHAR - name: environment type: VARCHAR table: table_name_46
SELECT example FROM table_name_46 WHERE environment = "#_x"
What Rank is the Director(s) of satoko okita?
columns: - name: rank type: VARCHAR - name: director_s_ type: VARCHAR table: table_name_42
SELECT rank FROM table_name_42 WHERE director_s_ = "satoko okita"
when womens singles is wang yihan and tour is french super series, what were the men's singles?
columns: - name: mens_singles type: VARCHAR - name: womens_singles type: VARCHAR - name: tour type: VARCHAR table: table_21001903_2
SELECT mens_singles FROM table_21001903_2 WHERE womens_singles = "Wang Yihan" AND tour = "French Super Series"
What is the total number of events the Open Championship has with less than 0 cuts?
columns: - name: events type: INTEGER - name: tournament type: VARCHAR - name: cuts_made type: VARCHAR table: table_name_50
SELECT SUM(events) FROM table_name_50 WHERE tournament = "the open championship" AND cuts_made < 0
Who was the home team when the score was 4–3?
columns: - name: home type: VARCHAR - name: score type: VARCHAR table: table_name_93
SELECT home FROM table_name_93 WHERE score = "4–3"
what was the gp/gs in 2003 when the total points was "did not play"?
columns: - name: gp_gs type: VARCHAR - name: total_points type: VARCHAR - name: year type: VARCHAR table: table_name_96
SELECT gp_gs FROM table_name_96 WHERE total_points = "did not play" AND year = "2003"
The ship MS Vistafjord has what in service for NAL?
columns: - name: in_service_for_nal type: VARCHAR - name: ship type: VARCHAR table: table_name_10
SELECT in_service_for_nal FROM table_name_10 WHERE ship = "ms vistafjord"
What is the Galician (reintegrationist) word of the Galician (Official) is adeus*?
columns: - name: galician___reintegrationist__ type: VARCHAR - name: galician___official__ type: VARCHAR table: table_26614365_5
SELECT galician___reintegrationist__ FROM table_26614365_5 WHERE galician___official__ = "Adeus*"
What is Website, when Last Release is 2009-08-09, 1.2.9?
columns: - name: website type: VARCHAR - name: last_release type: VARCHAR table: table_name_25
SELECT website FROM table_name_25 WHERE last_release = "2009-08-09, 1.2.9"
What position did the 2010-11 USA Γ­r player have?
columns: - name: position type: VARCHAR - name: season type: VARCHAR - name: nationality type: VARCHAR - name: team type: VARCHAR table: table_name_5
SELECT position FROM table_name_5 WHERE nationality = "usa" AND team = "Γ­r" AND season = "2010-11"
Who has the most assists on January 3?
columns: - name: high_assists type: VARCHAR - name: date type: VARCHAR table: table_15873014_5
SELECT high_assists FROM table_15873014_5 WHERE date = "January 3"
What is the Location for the jiu-jitsu vs martial arts?
columns: - name: location type: VARCHAR - name: event type: VARCHAR table: table_name_36
SELECT location FROM table_name_36 WHERE event = "jiu-jitsu vs martial arts"
Which position has more than 4 points, less than 12 tries, a squad number of more than 1, and where Ali Lauitiiti is a player?
columns: - name: position type: VARCHAR - name: player type: VARCHAR - name: squad_no type: VARCHAR - name: points type: VARCHAR - name: tries type: VARCHAR table: table_name_58
SELECT position FROM table_name_58 WHERE points > 4 AND tries < 12 AND squad_no > 1 AND player = "ali lauitiiti"
I want the driver for ferrari who made Laps less than 26 and grids more than 9
columns: - name: driver type: VARCHAR - name: constructor type: VARCHAR - name: grid type: VARCHAR - name: laps type: VARCHAR table: table_name_69
SELECT driver FROM table_name_69 WHERE grid > 9 AND laps < 26 AND constructor = "ferrari"
For which production company did Sam Mccarthy produce?
columns: - name: production_company type: VARCHAR - name: producer_s_ type: VARCHAR table: table_name_61
SELECT production_company FROM table_name_61 WHERE producer_s_ = "sam mccarthy"
What date had a time of 20:10?
columns: - name: date type: VARCHAR - name: time type: VARCHAR table: table_name_25
SELECT date FROM table_name_25 WHERE time = "20:10"
What was the date of the game when the Lightning had a record of 9–8–1?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_name_58
SELECT date FROM table_name_58 WHERE record = "9–8–1"
Which game does the quentyn martell have?
columns: - name: game type: VARCHAR - name: pov_character type: VARCHAR table: table_name_54
SELECT game FROM table_name_54 WHERE pov_character = "quentyn martell"
What is the singular present that is associated with a singular preterite of ou and a subjunctive present of ie?
columns: - name: sing_pres type: VARCHAR - name: sing_pret type: VARCHAR - name: subj_pres type: VARCHAR table: table_name_51
SELECT sing_pres FROM table_name_51 WHERE sing_pret = "ou" AND subj_pres = "ie"
Which Type has a Company of epcor?
columns: - name: type type: VARCHAR - name: company type: VARCHAR table: table_name_21
SELECT type FROM table_name_21 WHERE company = "epcor"
What is the round for the Int. Adac-Preis Der Tourenwagen Von Sachsen-Anhalt?
columns: - name: round type: VARCHAR - name: race type: VARCHAR table: table_name_92
SELECT round FROM table_name_92 WHERE race = "int. adac-preis der tourenwagen von sachsen-anhalt"
What is the losing bonus when the points are 24?
columns: - name: losing_bonus type: VARCHAR - name: points type: VARCHAR table: table_14058433_3
SELECT losing_bonus FROM table_14058433_3 WHERE points = "24"
How many opponents were there with the record of 3-2-2?
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_23308178_4
SELECT COUNT(opponent) FROM table_23308178_4 WHERE record = "3-2-2"
What is Fitzroy's smallest crowd size?
columns: - name: crowd type: INTEGER - name: home_team type: VARCHAR table: table_name_3
SELECT MIN(crowd) FROM table_name_3 WHERE home_team = "fitzroy"
who is the opponent in the final when the year is before 1883?
columns: - name: opponent_in_the_final type: VARCHAR - name: year type: INTEGER table: table_name_8
SELECT opponent_in_the_final FROM table_name_8 WHERE year < 1883
WHAT IS THE TYPE WITH 124?
columns: - name: type type: VARCHAR - name: quantity type: VARCHAR table: table_name_56
SELECT type FROM table_name_56 WHERE quantity = "124"
When spanish challenge is the team name what are the rr1 points?
columns: - name: rr1_pts type: VARCHAR - name: team_name type: VARCHAR table: table_21489362_2
SELECT rr1_pts FROM table_21489362_2 WHERE team_name = "Spanish Challenge"
In which tournament did he place 20th?
columns: - name: tournament type: VARCHAR - name: result type: VARCHAR table: table_name_55
SELECT tournament FROM table_name_55 WHERE result = "20th"
Name the candidates for result of lost renomination democratic loss
columns: - name: candidates type: VARCHAR - name: result type: VARCHAR table: table_1342149_24
SELECT candidates FROM table_1342149_24 WHERE result = "Lost renomination Democratic loss"
When was the episode 2x10 aired for the first time?
columns: - name: first_broadcast type: VARCHAR - name: episode type: VARCHAR table: table_19930660_2
SELECT first_broadcast FROM table_19930660_2 WHERE episode = "2x10"
Which episode was directed by Jeff Woolnough and written by Christopher Ambrose?
columns: - name: title type: VARCHAR - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_26824484_1
SELECT title FROM table_26824484_1 WHERE directed_by = "Jeff Woolnough" AND written_by = "Christopher Ambrose"
What is the 1st prize of the tournament in Scotland?
columns: - name: location type: VARCHAR table: table_name_95
SELECT 1 AS st_prize___$__ FROM table_name_95 WHERE location = "scotland"
What is the name when weight shows head coach: Aleksandr Kabanov?
columns: - name: name type: VARCHAR - name: weight type: VARCHAR table: table_name_70
SELECT name FROM table_name_70 WHERE weight = "head coach: aleksandr kabanov"
What is the lowest Minutes Played, when Rebounds is 25, and when Field Goal % is less than "0.315"?
columns: - name: minutes_played type: INTEGER - name: rebounds type: VARCHAR - name: field_goal__percentage type: VARCHAR table: table_name_95
SELECT MIN(minutes_played) FROM table_name_95 WHERE rebounds = 25 AND field_goal__percentage < 0.315
What was Olga Govortsova's goal when she played on a clay surface on 26 May 2012?
columns: - name: score type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_84
SELECT score FROM table_name_84 WHERE surface = "clay" AND date = "26 may 2012"
What are the forms of the conjucated vos(*) where Γ©l / ella / usted is muela
columns: - name: vos__ type: VARCHAR - name: _ type: VARCHAR - name: "\xE9l___ella___usted" type: VARCHAR table: table_1977630_2
SELECT vos__ * _ FROM table_1977630_2 WHERE Γ©l___ella___usted = "muela"
What year sold 1,695,900+ copies with an Oricon position larger than 1?
columns: - name: year type: INTEGER - name: copies_sold type: VARCHAR - name: oricon_position type: VARCHAR table: table_name_19
SELECT AVG(year) FROM table_name_19 WHERE copies_sold = "1,695,900+" AND oricon_position > 1
When the away team was collingwood, what was the away team score?
columns: - name: away_team type: VARCHAR table: table_name_86
SELECT away_team AS score FROM table_name_86 WHERE away_team = "collingwood"
Which competition had a 4-3 score?
columns: - name: competition type: VARCHAR - name: score type: VARCHAR table: table_name_86
SELECT competition FROM table_name_86 WHERE score = "4-3"
What pick number was the player that went to baylor college?
columns: - name: pick type: VARCHAR - name: college type: VARCHAR table: table_name_55
SELECT pick FROM table_name_55 WHERE college = "baylor"
What is the attendance total of the game with the Lakers as the home team?
columns: - name: attendance type: VARCHAR - name: home type: VARCHAR table: table_name_67
SELECT COUNT(attendance) FROM table_name_67 WHERE home = "lakers"
What is Score, when Money ( $ ) is 32,200, and when Player is Chip Beck?
columns: - name: score type: VARCHAR - name: money___$__ type: VARCHAR - name: player type: VARCHAR table: table_name_2
SELECT score FROM table_name_2 WHERE money___$__ = "32,200" AND player = "chip beck"
What was the score in January that was less than 4?
columns: - name: score type: VARCHAR - name: january type: INTEGER table: table_name_92
SELECT score FROM table_name_92 WHERE january < 4
Which player's home town is Swift Current, AB?
columns: - name: player type: VARCHAR - name: home_town type: VARCHAR table: table_name_17
SELECT player FROM table_name_17 WHERE home_town = "swift current, ab"
What is the event year radek Ε‘tΔ›pΓ‘nek was the round and there were less than 3 aces?
columns: - name: event type: VARCHAR - name: round type: VARCHAR - name: aces type: VARCHAR table: table_name_92
SELECT COUNT(event) FROM table_name_92 WHERE round = "radek Ε‘tΔ›pΓ‘nek" AND NOT aces < 3
When did the Theme of bobsleigh release?
columns: - name: date_of_issue type: VARCHAR - name: theme type: VARCHAR table: table_name_56
SELECT date_of_issue FROM table_name_56 WHERE theme = "bobsleigh"
What years have claudia ruffo as the actor?
columns: - name: years type: VARCHAR - name: actor type: VARCHAR table: table_name_18
SELECT years FROM table_name_18 WHERE actor = "claudia ruffo"
What years did the Utah Jazz Player from Southern Methodist, Play?
columns: - name: years_for_jazz type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_52
SELECT years_for_jazz FROM table_name_52 WHERE school_club_team = "southern methodist"
Who was the athlete from Lithuania?
columns: - name: athlete type: VARCHAR - name: country type: VARCHAR table: table_name_87
SELECT athlete FROM table_name_87 WHERE country = "lithuania"
What club does Manuel Fernandes coach?
columns: - name: club type: VARCHAR - name: head_coach type: VARCHAR table: table_name_88
SELECT club FROM table_name_88 WHERE head_coach = "manuel fernandes"
I want to know the 2013 when 2001 was wta premier 5 tournaments
columns: - name: Id type: VARCHAR table: table_name_87
SELECT 2013 FROM table_name_87 WHERE 2001 = "wta premier 5 tournaments"
What long-term gain for collectibles coincides with ordinary income rate 15%?
columns: - name: long_term_gain_on_collectibles type: VARCHAR - name: ordinary_income_rate type: VARCHAR table: table_name_48
SELECT long_term_gain_on_collectibles FROM table_name_48 WHERE ordinary_income_rate = "15%"
Which analog channel has a digital channel of 4.1?
columns: - name: analog_channel type: VARCHAR - name: digital_channel type: VARCHAR table: table_name_31
SELECT analog_channel FROM table_name_31 WHERE digital_channel = "4.1"
What is the time of the match with 3 rounds and a 9-3 record?
columns: - name: time type: VARCHAR - name: round type: VARCHAR - name: record type: VARCHAR table: table_name_52
SELECT time FROM table_name_52 WHERE round = 3 AND record = "9-3"
What team has a 94.1 rating?
columns: - name: team type: VARCHAR - name: rate type: VARCHAR table: table_name_67
SELECT team FROM table_name_67 WHERE rate = "94.1"
Which song was sung by Artist Luther Vandross in the Week Top 20?
columns: - name: song_sung type: VARCHAR - name: artist type: VARCHAR - name: week type: VARCHAR table: table_name_17
SELECT song_sung FROM table_name_17 WHERE artist = "luther vandross" AND week = "top 20"
Which Game has a Record of 27–30?
columns: - name: game type: INTEGER - name: record type: VARCHAR table: table_name_99
SELECT SUM(game) FROM table_name_99 WHERE record = "27–30"
What was the team #1 for the match that had a result of 0-3?
columns: - name: team__number1 type: VARCHAR - name: res type: VARCHAR table: table_name_17
SELECT team__number1 FROM table_name_17 WHERE res = "0-3"
What was the result when the attendance was 25,418?
columns: - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_99
SELECT result FROM table_name_99 WHERE attendance = "25,418"
Name the total number of founded for yankton
columns: - name: founded type: VARCHAR - name: location_s_ type: VARCHAR table: table_2076557_2
SELECT COUNT(founded) FROM table_2076557_2 WHERE location_s_ = "Yankton"
Who was the visiting team on December 17?
columns: - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_90
SELECT visitor FROM table_name_90 WHERE date = "december 17"
What is the mean number of totals with no silvers and a bronze number less than 0?
columns: - name: total type: INTEGER - name: silver type: VARCHAR - name: bronze type: VARCHAR table: table_name_9
SELECT AVG(total) FROM table_name_9 WHERE silver = 0 AND bronze < 0
What was Week 15 when Week 12 was Notre Dame (7-2)?
columns: - name: week_15__final__dec_3 type: VARCHAR - name: week_12_nov_13 type: VARCHAR table: table_name_50
SELECT week_15__final__dec_3 FROM table_name_50 WHERE week_12_nov_13 = "notre dame (7-2)"
What is every team with location attendance of Seattle Center Coliseum 14,180?
columns: - name: team type: VARCHAR - name: location_attendance type: VARCHAR table: table_27902171_5
SELECT team FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180"
On what date is there a score1 of 2 - 4 with the opponent Chelsea under 18s?
columns: - name: date type: VARCHAR - name: score1 type: VARCHAR - name: opponent type: VARCHAR table: table_name_69
SELECT date FROM table_name_69 WHERE score1 = "2 - 4" AND opponent = "chelsea under 18s"
How many people were at the game where the home team was South Melbourne?
columns: - name: crowd type: VARCHAR - name: home_team type: VARCHAR table: table_name_16
SELECT crowd FROM table_name_16 WHERE home_team = "south melbourne"
What is the least lane number that Natalie Coughlin was in when she was ranked greater than 1?
columns: - name: lane type: INTEGER - name: name type: VARCHAR - name: rank type: VARCHAR table: table_name_75
SELECT MIN(lane) FROM table_name_75 WHERE name = "natalie coughlin" AND rank > 1
How many have the Till Agra of 500?
columns: - name: till_mathura type: VARCHAR - name: till_agra type: VARCHAR table: table_19787093_1
SELECT COUNT(till_mathura) FROM table_19787093_1 WHERE till_agra = 500
Name the Date of mercedes, and a Circuit of elgin?
columns: - name: date type: VARCHAR - name: winning_constructor type: VARCHAR - name: circuit type: VARCHAR table: table_name_57
SELECT date FROM table_name_57 WHERE winning_constructor = "mercedes" AND circuit = "elgin"
What was the total attendance on September 12?
columns: - name: attendance type: VARCHAR - name: date type: VARCHAR table: table_name_76
SELECT attendance FROM table_name_76 WHERE date = "september 12"
What was Week 14 when Week 13 was Nebraska (8-2)?
columns: - name: week_14_nov_27 type: VARCHAR - name: week_13_nov_20 type: VARCHAR table: table_name_37
SELECT week_14_nov_27 FROM table_name_37 WHERE week_13_nov_20 = "nebraska (8-2)"
WHAT IS THE THIRD WITH LEAD CINDY SIMMONS?
columns: - name: third type: VARCHAR - name: lead type: VARCHAR table: table_name_76
SELECT third FROM table_name_76 WHERE lead = "cindy simmons"
What is the Label of the release on April 24, 2009 in Germany?
columns: - name: label type: VARCHAR - name: region type: VARCHAR - name: date type: VARCHAR table: table_name_2
SELECT label FROM table_name_2 WHERE region = "germany" AND date = "april 24, 2009"
what is the continent in which the country russia is listed?
columns: - name: continent type: VARCHAR - name: country type: VARCHAR table: table_27435931_1
SELECT continent FROM table_27435931_1 WHERE country = "Russia"
Name the Rider which has a Time of +59.304?
columns: - name: rider type: VARCHAR - name: time type: VARCHAR table: table_name_33
SELECT rider FROM table_name_33 WHERE time = "+59.304"
What is the place of the Pinyin transcription Xi Wangri?
columns: - name: standard_order type: INTEGER - name: transcription__based_on_pinyin_ type: VARCHAR table: table_1805919_1
SELECT MAX(standard_order) FROM table_1805919_1 WHERE transcription__based_on_pinyin_ = "Xi Wangri"
What's the average Top-25, that has an Events that's smaller than 12, and has a Top-5 that is larger than 0?
columns: - name: top_25 type: INTEGER - name: events type: VARCHAR - name: top_5 type: VARCHAR table: table_name_60
SELECT AVG(top_25) FROM table_name_60 WHERE events < 12 AND top_5 > 0
What is the typical match smaller than 2?
columns: - name: average type: INTEGER - name: matches type: INTEGER table: table_name_90
SELECT AVG(average) FROM table_name_90 WHERE matches < 2
How many victors where there in the War of 1730–1736 , first stage?
columns: - name: victor type: VARCHAR - name: name_of_the_war type: VARCHAR table: table_24706337_1
SELECT COUNT(victor) FROM table_24706337_1 WHERE name_of_the_war = "War of 1730–1736 , first stage"
Who is the player that has a round greater than 2 and a pick bigger than 83?
columns: - name: player type: VARCHAR - name: round type: VARCHAR - name: pick type: VARCHAR table: table_name_5
SELECT player FROM table_name_5 WHERE round > 2 AND pick > 83
What result has miami dolphins as the opponent?
columns: - name: result type: VARCHAR - name: opponent type: VARCHAR table: table_name_36
SELECT result FROM table_name_36 WHERE opponent = "miami dolphins"
What was the two-round score for Bob Tway?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_45
SELECT score FROM table_name_45 WHERE player = "bob tway"
Which Surname has Bats of r, and a Position of p, and a DOB of 20 may 1989?
columns: - name: surname type: VARCHAR - name: dob type: VARCHAR - name: bats type: VARCHAR - name: position type: VARCHAR table: table_name_73
SELECT surname FROM table_name_73 WHERE bats = "r" AND position = "p" AND dob = "20 may 1989"
How many laps with a grid larger than 7 did a Lotus - Ford do with a Time/Retired of + 2 laps?
columns: - name: laps type: INTEGER - name: time_retired type: VARCHAR - name: grid type: VARCHAR - name: constructor type: VARCHAR table: table_name_68
SELECT SUM(laps) FROM table_name_68 WHERE grid > 7 AND constructor = "lotus - ford" AND time_retired = "+ 2 laps"
Which muzzle devices are on the Colt 603?
columns: - name: muzzle_device type: VARCHAR - name: colt_model_no type: VARCHAR table: table_19901_1
SELECT muzzle_device FROM table_19901_1 WHERE colt_model_no = "603"
WHAT IS THE 2011 PERFORMANCE FOR TOURNAMENTS PLAYED?
columns: - name: tournament type: VARCHAR table: table_name_48
SELECT 2011 FROM table_name_48 WHERE tournament = "tournaments played"
Which Partner has a Score of 7–6, 6–3?
columns: - name: partner type: VARCHAR - name: score type: VARCHAR table: table_name_38
SELECT partner FROM table_name_38 WHERE score = "7–6, 6–3"
What district has Riley Joseph Wilson as the incumbent?
columns: - name: district type: VARCHAR - name: incumbent type: VARCHAR table: table_1342331_18
SELECT district FROM table_1342331_18 WHERE incumbent = "Riley Joseph Wilson"
What is Away Team, when Home Team is "Ipswich Town", and when Date is "6 February 1986"?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR - name: date type: VARCHAR table: table_name_90
SELECT away_team FROM table_name_90 WHERE home_team = "ipswich town" AND date = "6 february 1986"
What is the surface of the score, 7–6 (7–3) , 6–3?
columns: - name: surface type: VARCHAR - name: score type: VARCHAR table: table_name_40
SELECT surface FROM table_name_40 WHERE score = "7–6 (7–3) , 6–3"