training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_49 (starts INTEGER, year VARCHAR, avg_start VARCHAR) ###human: What was the highest number of starts in 2007 when the average start was over 17.6? ###assistant: SELECT MAX(starts) FROM table_name_49 WHERE year = 2007 AND avg_start > 17.6
###context:CREATE TABLE table_name_92 (wins VARCHAR, races VARCHAR, third VARCHAR, points VARCHAR) ###human: What is the number of wins when the number of third was 1, points were less than 572 and had less than 16 races? ###assistant: SELECT wins FROM table_name_92 WHERE third = "1" AND points < 572 AND races < 16
###context:CREATE TABLE table_name_49 (res VARCHAR, competition VARCHAR) ###human: What was the result for the friendly match competition? ###assistant: SELECT res FROM table_name_49 WHERE competition = "friendly match"
###context:CREATE TABLE table_name_17 (team__number1 VARCHAR, res VARCHAR) ###human: What was the team #1 for the match that had a result of 0-3? ###assistant: SELECT team__number1 FROM table_name_17 WHERE res = "0-3"
###context:CREATE TABLE table_name_83 (municipio VARCHAR) ###human: what is the 2010 population density for municipio ponce? ###assistant: SELECT 2010 AS _population_density FROM table_name_83 WHERE municipio = "ponce"
###context:CREATE TABLE table_name_86 (category VARCHAR, nominated_for VARCHAR) ###human: What's the category for the tween academy: class of 2012 nomination? ###assistant: SELECT category FROM table_name_86 WHERE nominated_for = "tween academy: class of 2012"
###context:CREATE TABLE table_name_47 (year VARCHAR, award_giving_body VARCHAR) ###human: How many years was famas awards the award giving body? ###assistant: SELECT COUNT(year) FROM table_name_47 WHERE award_giving_body = "famas awards"
###context:CREATE TABLE table_name_34 (result VARCHAR, category VARCHAR) ###human: What's the result for the category of best actor in a supporting role? ###assistant: SELECT result FROM table_name_34 WHERE category = "best actor in a supporting role"
###context:CREATE TABLE table_name_99 (record VARCHAR, date VARCHAR) ###human: Which Record has a Date of december 17? ###assistant: SELECT record FROM table_name_99 WHERE date = "december 17"
###context:CREATE TABLE table_name_38 (streak VARCHAR, team VARCHAR) ###human: Which Streak has a Team of new york knicks? ###assistant: SELECT streak FROM table_name_38 WHERE team = "new york knicks"
###context:CREATE TABLE table_name_43 (date VARCHAR, record VARCHAR) ###human: Which Date has a Record of 21–10? ###assistant: SELECT date FROM table_name_43 WHERE record = "21–10"
###context:CREATE TABLE table_name_74 (team VARCHAR, record VARCHAR) ###human: Which Team has a Record of 17–8? ###assistant: SELECT team FROM table_name_74 WHERE record = "17–8"
###context:CREATE TABLE table_name_63 (date VARCHAR, score VARCHAR) ###human: Which Date has a Score of 102–113? ###assistant: SELECT date FROM table_name_63 WHERE score = "102–113"
###context:CREATE TABLE table_name_80 (game VARCHAR, streak VARCHAR, score VARCHAR) ###human: Which Game has a Streak of loss 1, and a Score of 110–111? ###assistant: SELECT game FROM table_name_80 WHERE streak = "loss 1" AND score = "110–111"
###context:CREATE TABLE table_name_83 (name VARCHAR, moving_to VARCHAR, nat VARCHAR, transfer_window VARCHAR) ###human: What is the name of the player who is Sco and moving to greenock morton in the summer? ###assistant: SELECT name FROM table_name_83 WHERE nat = "sco" AND transfer_window = "summer" AND moving_to = "greenock morton"
###context:CREATE TABLE table_name_17 (moving_to VARCHAR, name VARCHAR) ###human: Where is rory loy moving to? ###assistant: SELECT moving_to FROM table_name_17 WHERE name = "rory loy"
###context:CREATE TABLE table_name_23 (transfer_fee VARCHAR, name VARCHAR) ###human: What is the transfer fee for rory loy? ###assistant: SELECT transfer_fee FROM table_name_23 WHERE name = "rory loy"
###context:CREATE TABLE table_name_89 (date VARCHAR, visitor VARCHAR) ###human: What is the date of the game with toronto as the visitor? ###assistant: SELECT date FROM table_name_89 WHERE visitor = "toronto"
###context:CREATE TABLE table_name_99 (date VARCHAR, points VARCHAR, home VARCHAR) ###human: What is the date of the game with less than 35 points and chicago as the home team? ###assistant: SELECT date FROM table_name_99 WHERE points < 35 AND home = "chicago"
###context:CREATE TABLE table_name_32 (date VARCHAR, home VARCHAR, visitor VARCHAR) ###human: What is the date of the game with pittsburgh as the home team and boston as the visitor team? ###assistant: SELECT date FROM table_name_32 WHERE home = "pittsburgh" AND visitor = "boston"
###context:CREATE TABLE table_name_77 (record VARCHAR, home VARCHAR, points VARCHAR) ###human: What is the record of the game with 35 points and pittsburgh as the home team? ###assistant: SELECT record FROM table_name_77 WHERE home = "pittsburgh" AND points = 35
###context:CREATE TABLE table_name_13 (place VARCHAR, player VARCHAR) ###human: What place did bobby wadkins come in? ###assistant: SELECT place FROM table_name_13 WHERE player = "bobby wadkins"
###context:CREATE TABLE table_name_21 (lane INTEGER, mark VARCHAR) ###human: What is the lowest Lane, when Mark is 7.66? ###assistant: SELECT MIN(lane) FROM table_name_21 WHERE mark = "7.66"
###context:CREATE TABLE table_name_59 (mark VARCHAR, react INTEGER) ###human: What is Mark, when React is less than 0.148? ###assistant: SELECT mark FROM table_name_59 WHERE react < 0.148
###context:CREATE TABLE table_name_75 (lane INTEGER, react VARCHAR, name VARCHAR) ###human: What is the sum of Land, when React is greater than 0.217, and when Name is Yoel Hernández? ###assistant: SELECT SUM(lane) FROM table_name_75 WHERE react > 0.217 AND name = "yoel hernández"
###context:CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR) ###human: What is Mark, when Lane is less than 5, and when React is 0.217? ###assistant: SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217
###context:CREATE TABLE table_name_37 (record VARCHAR, game VARCHAR) ###human: What was the record following game 67? ###assistant: SELECT record FROM table_name_37 WHERE game = 67
###context:CREATE TABLE table_name_57 (february INTEGER, opponent VARCHAR) ###human: What day in February had an opponent of @ Colorado Rockies? ###assistant: SELECT SUM(february) FROM table_name_57 WHERE opponent = "@ colorado rockies"
###context:CREATE TABLE table_name_18 (score VARCHAR, record VARCHAR) ###human: What was the score of the game with a record of 18-22-13? ###assistant: SELECT score FROM table_name_18 WHERE record = "18-22-13"
###context:CREATE TABLE table_name_29 (opponent_in_the_final VARCHAR, score VARCHAR) ###human: Which Opponent in the final has a Score of 6–3, 3–6, 6–8? ###assistant: SELECT opponent_in_the_final FROM table_name_29 WHERE score = "6–3, 3–6, 6–8"
###context:CREATE TABLE table_name_56 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) ###human: Which Tournament has a Surface of carpet, and a Date smaller than 1995, and an Opponent in the final of ken flach robert seguso? ###assistant: SELECT tournament FROM table_name_56 WHERE surface = "carpet" AND date < 1995 AND opponent_in_the_final = "ken flach robert seguso"
###context:CREATE TABLE table_name_59 (time_in_office VARCHAR, branch VARCHAR) ###human: What time in office does the U.S. Navy have? ###assistant: SELECT time_in_office FROM table_name_59 WHERE branch = "u.s. navy"
###context:CREATE TABLE table_name_5 (term_ended VARCHAR, branch VARCHAR) ###human: When did the term end for the U.S. Marine Corps? ###assistant: SELECT term_ended FROM table_name_5 WHERE branch = "u.s. marine corps"
###context:CREATE TABLE table_name_47 (country VARCHAR) ###human: What is the 2006 figure for Argentina when 2007 is less than 0,15? ###assistant: SELECT COUNT(2006) FROM table_name_47 WHERE country = "argentina" AND 2007 < 0 OFFSET 15
###context:CREATE TABLE table_name_4 (Id VARCHAR) ###human: What is the 2009 average when the 2007 average is more than 0,18? ###assistant: SELECT AVG(2009) FROM table_name_4 WHERE 2007 > 0 OFFSET 18
###context:CREATE TABLE table_name_45 (gain VARCHAR, loss VARCHAR, long VARCHAR) ###human: How many gains were there for the player who had a loss greater than 57 and a long less than 55? ###assistant: SELECT COUNT(gain) FROM table_name_45 WHERE loss > 57 AND long < 55
###context:CREATE TABLE table_name_95 (loss INTEGER, name VARCHAR, long VARCHAR) ###human: What is the lowest Loss for the player named total that has a long greater than 55? ###assistant: SELECT MIN(loss) FROM table_name_95 WHERE name = "total" AND long > 55
###context:CREATE TABLE table_name_58 (nationality VARCHAR, school_club_team VARCHAR, player VARCHAR) ###human: What nationality is Kentucky and the player Tayshaun Prince? ###assistant: SELECT nationality FROM table_name_58 WHERE school_club_team = "kentucky" AND player = "tayshaun prince"
###context:CREATE TABLE table_name_95 (nationality VARCHAR, school_club_team VARCHAR) ###human: What is the nationality of Duke? ###assistant: SELECT nationality FROM table_name_95 WHERE school_club_team = "duke"
###context:CREATE TABLE table_name_89 (nationality VARCHAR, position VARCHAR, years_for_grizzlies VARCHAR) ###human: What was the nationality of a point guard position in 1999-2001? ###assistant: SELECT nationality FROM table_name_89 WHERE position = "point guard" AND years_for_grizzlies = "1999-2001"
###context:CREATE TABLE table_name_69 (position VARCHAR, player VARCHAR) ###human: What is the position of Tayshaun Prince? ###assistant: SELECT position FROM table_name_69 WHERE player = "tayshaun prince"
###context:CREATE TABLE table_name_96 (parent VARCHAR, order VARCHAR) ###human: Who was the parent on the order of 6? ###assistant: SELECT parent FROM table_name_96 WHERE order = 6
###context:CREATE TABLE table_name_54 (husband_dates VARCHAR, date_married VARCHAR) ###human: Who was the husband date that was married in 1858? ###assistant: SELECT husband_dates FROM table_name_54 WHERE date_married = "1858"
###context:CREATE TABLE table_name_55 (record VARCHAR, opponent VARCHAR) ###human: Can you tell me the Record that has the Opponent of vs. hamilton tiger cats? ###assistant: SELECT record FROM table_name_55 WHERE opponent = "vs. hamilton tiger cats"
###context:CREATE TABLE table_name_89 (opponent VARCHAR, date VARCHAR) ###human: Can you tell me the Opponent that has the Date of sun, sept 9? ###assistant: SELECT opponent FROM table_name_89 WHERE date = "sun, sept 9"
###context:CREATE TABLE table_name_65 (country VARCHAR, player VARCHAR) ###human: Which country is Scott Hoch from? ###assistant: SELECT country FROM table_name_65 WHERE player = "scott hoch"
###context:CREATE TABLE table_name_64 (place VARCHAR, country VARCHAR) ###human: What is the place of the player from Spain? ###assistant: SELECT place FROM table_name_64 WHERE country = "spain"
###context:CREATE TABLE table_name_53 (score VARCHAR, record VARCHAR) ###human: What is Score, when Record is 12-57? ###assistant: SELECT score FROM table_name_53 WHERE record = "12-57"
###context:CREATE TABLE table_name_31 (date VARCHAR, record VARCHAR) ###human: What is Date, when Record is 12-58? ###assistant: SELECT date FROM table_name_31 WHERE record = "12-58"
###context:CREATE TABLE table_name_85 (score VARCHAR, date VARCHAR) ###human: What is Score, when Date is February 5? ###assistant: SELECT score FROM table_name_85 WHERE date = "february 5"
###context:CREATE TABLE table_name_10 (h_a_n VARCHAR, score VARCHAR) ###human: What is H/A/N, when Score is 104-109? ###assistant: SELECT h_a_n FROM table_name_10 WHERE score = "104-109"
###context:CREATE TABLE table_name_35 (score VARCHAR, opponent VARCHAR, record VARCHAR) ###human: What is Score, when Opponent is Portland Trail Blazers, and when Record is 12-58? ###assistant: SELECT score FROM table_name_35 WHERE opponent = "portland trail blazers" AND record = "12-58"
###context:CREATE TABLE table_name_55 (h_a_n VARCHAR, date VARCHAR) ###human: What is H/A/N when Date is February 24? ###assistant: SELECT h_a_n FROM table_name_55 WHERE date = "february 24"
###context:CREATE TABLE table_name_92 (game INTEGER, record VARCHAR) ###human: What is the last game of the season that has the record 0-1-0? ###assistant: SELECT MIN(game) FROM table_name_92 WHERE record = "0-1-0"
###context:CREATE TABLE table_name_73 (decision VARCHAR, date VARCHAR) ###human: Who had the decision goal when the date was 1? ###assistant: SELECT decision FROM table_name_73 WHERE date = 1
###context:CREATE TABLE table_name_83 (decision VARCHAR, record VARCHAR) ###human: Who had the decision goal when the record was 7-7-2? ###assistant: SELECT decision FROM table_name_83 WHERE record = "7-7-2"
###context:CREATE TABLE table_name_92 (game INTEGER, decision VARCHAR, record VARCHAR) ###human: What was the first game in which Weekes scored the decision goal and the record was 7-4-2? ###assistant: SELECT MIN(game) FROM table_name_92 WHERE decision = "weekes" AND record = "7-4-2"
###context:CREATE TABLE table_name_3 (points VARCHAR, details VARCHAR) ###human: What's the total number of points scored during the 1951 NSWRFL Grand Final? ###assistant: SELECT COUNT(points) FROM table_name_3 WHERE details = "1951 nswrfl grand final"
###context:CREATE TABLE table_name_17 (premiers VARCHAR, details VARCHAR) ###human: Which premier team played the 1951 NSWRFL Grand Final? ###assistant: SELECT premiers FROM table_name_17 WHERE details = "1951 nswrfl grand final"
###context:CREATE TABLE table_name_31 (details VARCHAR, points VARCHAR) ###human: During which competition were a total of 36 points scored? ###assistant: SELECT details FROM table_name_31 WHERE points = 36
###context:CREATE TABLE table_name_80 (points INTEGER, premiers VARCHAR) ###human: What's the total sum of points scored by the Brisbane Broncos? ###assistant: SELECT SUM(points) FROM table_name_80 WHERE premiers = "brisbane broncos"
###context:CREATE TABLE table_name_16 (premiers VARCHAR, points VARCHAR, score VARCHAR) ###human: What is the premier team that has 38 points and won with a score of 38-0? ###assistant: SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0"
###context:CREATE TABLE table_name_21 (tie_no VARCHAR, away_team VARCHAR) ###human: What was the tie no when the away team was northwich victoria? ###assistant: SELECT tie_no FROM table_name_21 WHERE away_team = "northwich victoria"
###context:CREATE TABLE table_name_55 (attendance VARCHAR, home_team VARCHAR) ###human: What was the attendance for the match where cambridge united was the home team? ###assistant: SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united"
###context:CREATE TABLE table_name_90 (year VARCHAR, award VARCHAR) ###human: How many times was the award inte awards? ###assistant: SELECT COUNT(year) FROM table_name_90 WHERE award = "inte awards"
###context:CREATE TABLE table_name_91 (work VARCHAR, result VARCHAR, year VARCHAR) ###human: what is the work when the result is won and the year is after 2002? ###assistant: SELECT work FROM table_name_91 WHERE result = "won" AND year > 2002
###context:CREATE TABLE table_name_36 (work VARCHAR, result VARCHAR, year VARCHAR) ###human: what is the work when the result is won and the year is before 2003? ###assistant: SELECT work FROM table_name_36 WHERE result = "won" AND year < 2003
###context:CREATE TABLE table_name_16 (venue VARCHAR, opposing_team VARCHAR) ###human: Which venue had the opposing team Natal? ###assistant: SELECT venue FROM table_name_16 WHERE opposing_team = "natal"
###context:CREATE TABLE table_name_51 (date VARCHAR, status VARCHAR, against VARCHAR) ###human: What day was the against 22 and the status tour match? ###assistant: SELECT date FROM table_name_51 WHERE status = "tour match" AND against = 22
###context:CREATE TABLE table_name_25 (attendance INTEGER, week VARCHAR) ###human: Which Attendance has a Week of 8? ###assistant: SELECT AVG(attendance) FROM table_name_25 WHERE week = 8
###context:CREATE TABLE table_name_41 (opponent VARCHAR, week VARCHAR, date VARCHAR) ###human: Which Opponent that has a Week smaller than 7 on september 12, 1988? ###assistant: SELECT opponent FROM table_name_41 WHERE week < 7 AND date = "september 12, 1988"
###context:CREATE TABLE table_name_23 (date VARCHAR, result VARCHAR) ###human: When has a Result of w 41-27? ###assistant: SELECT date FROM table_name_23 WHERE result = "w 41-27"
###context:CREATE TABLE table_name_67 (weight__kg_ INTEGER, manufacturer VARCHAR, model VARCHAR) ###human: Which Weight (kg) has a Manufacturer of fujitsu, and a Model of lifebook p1610? ###assistant: SELECT AVG(weight__kg_) FROM table_name_67 WHERE manufacturer = "fujitsu" AND model = "lifebook p1610"
###context:CREATE TABLE table_name_10 (display_size__in_ INTEGER, model VARCHAR) ###human: Which Display size (in) has a Model of versapro vy10f/bh-l? ###assistant: SELECT MIN(display_size__in_) FROM table_name_10 WHERE model = "versapro vy10f/bh-l"
###context:CREATE TABLE table_name_29 (display_size__in_ VARCHAR, model VARCHAR) ###human: Which Display size (in) has a Model of vaio pcg-u3? ###assistant: SELECT COUNT(display_size__in_) FROM table_name_29 WHERE model = "vaio pcg-u3"
###context:CREATE TABLE table_name_13 (method VARCHAR, round VARCHAR, record VARCHAR) ###human: What method was used in the match that went to round 1, and had a 6-3-1 record? ###assistant: SELECT method FROM table_name_13 WHERE round = 1 AND record = "6-3-1"
###context:CREATE TABLE table_name_6 (res VARCHAR, method VARCHAR, opponent VARCHAR) ###human: In the match against Marcus Aurélio with a method of decision (unanimous), what was the results? ###assistant: SELECT res FROM table_name_6 WHERE method = "decision (unanimous)" AND opponent = "marcus aurélio"
###context:CREATE TABLE table_name_55 (location VARCHAR, event VARCHAR) ###human: Where was the Deep - 30 Impact event held? ###assistant: SELECT location FROM table_name_55 WHERE event = "deep - 30 impact"
###context:CREATE TABLE table_name_25 (diameter__km_ INTEGER, latitude VARCHAR) ###human: COunt the sum of Diameter (km) which has a Latitude of 62.7n? ###assistant: SELECT SUM(diameter__km_) FROM table_name_25 WHERE latitude = "62.7n"
###context:CREATE TABLE table_name_94 (name VARCHAR, longitude VARCHAR) ###human: WHich Name origin has a Longitude of 332.5e? ###assistant: SELECT name AS origin FROM table_name_94 WHERE longitude = "332.5e"
###context:CREATE TABLE table_name_63 (round VARCHAR, opponent VARCHAR) ###human: In which round was Dustin Hazelett the opponent? ###assistant: SELECT round FROM table_name_63 WHERE opponent = "dustin hazelett"
###context:CREATE TABLE table_name_89 (tv_time VARCHAR, opponent VARCHAR) ###human: What is TV Time, when Opponent is At Cincinnati Bengals? ###assistant: SELECT tv_time FROM table_name_89 WHERE opponent = "at cincinnati bengals"
###context:CREATE TABLE table_name_91 (tv_time VARCHAR, date VARCHAR) ###human: What is TV Time, when Date is December 22, 1996? ###assistant: SELECT tv_time FROM table_name_91 WHERE date = "december 22, 1996"
###context:CREATE TABLE table_name_32 (result VARCHAR, opponent VARCHAR) ###human: What is Result, when Opponent is Cincinnati Bengals? ###assistant: SELECT result FROM table_name_32 WHERE opponent = "cincinnati bengals"
###context:CREATE TABLE table_name_66 (record VARCHAR, game VARCHAR) ###human: What was their record bfore game 54? ###assistant: SELECT record FROM table_name_66 WHERE game = 54
###context:CREATE TABLE table_name_52 (high_rebounds VARCHAR, team VARCHAR) ###human: Who had the most rebounds in the game against Chicago? ###assistant: SELECT high_rebounds FROM table_name_52 WHERE team = "chicago"
###context:CREATE TABLE table_name_21 (attendance INTEGER, decision VARCHAR, visitor VARCHAR) ###human: What was the lowest attendance at the game against chicago when conklin made the decision? ###assistant: SELECT MIN(attendance) FROM table_name_21 WHERE decision = "conklin" AND visitor = "chicago"
###context:CREATE TABLE table_name_33 (home_team VARCHAR, tie_no VARCHAR) ###human: For Tie #2, who was the home team? ###assistant: SELECT home_team FROM table_name_33 WHERE tie_no = "2"
###context:CREATE TABLE table_name_57 (score VARCHAR, home_team VARCHAR) ###human: What was the final score for the match where Hereford United was the home team? ###assistant: SELECT score FROM table_name_57 WHERE home_team = "hereford united"
###context:CREATE TABLE table_name_76 (away_team VARCHAR, tie_no VARCHAR) ###human: In Tie #18, who was the away team? ###assistant: SELECT away_team FROM table_name_76 WHERE tie_no = "18"
###context:CREATE TABLE table_name_27 (away_team VARCHAR, tie_no VARCHAR) ###human: In Tie #19, what was the name of the away team? ###assistant: SELECT away_team FROM table_name_27 WHERE tie_no = "19"
###context:CREATE TABLE table_name_31 (tie_no VARCHAR, home_team VARCHAR) ###human: What is the Tie number for the match where Dartford was the hone team? ###assistant: SELECT tie_no FROM table_name_31 WHERE home_team = "dartford"
###context:CREATE TABLE table_name_9 (home_team VARCHAR, away_team VARCHAR) ###human: In the match played against Telford United, who was the home team? ###assistant: SELECT home_team FROM table_name_9 WHERE away_team = "telford united"
###context:CREATE TABLE table_name_93 (position VARCHAR, class VARCHAR, player VARCHAR) ###human: What is Position, when Class is Sophomore, and when Player is Shaquille O'Neal Category:Articles With hCards? ###assistant: SELECT position FROM table_name_93 WHERE class = "sophomore" AND player = "shaquille o'neal category:articles with hcards"
###context:CREATE TABLE table_name_56 (player VARCHAR, school VARCHAR, class VARCHAR, position VARCHAR) ###human: What is Player, when Class is "senior", when Position is "shooting guard", and when School is "Bradley"? ###assistant: SELECT player FROM table_name_56 WHERE class = "senior" AND position = "shooting guard" AND school = "bradley"
###context:CREATE TABLE table_name_71 (position VARCHAR, player VARCHAR) ###human: What is Position, when Player is "Kevin Durant category:articles with hCards"? ###assistant: SELECT position FROM table_name_71 WHERE player = "kevin durant category:articles with hcards"
###context:CREATE TABLE table_name_71 (score VARCHAR, date VARCHAR) ###human: What is the Score of the match on August 23, 2004? ###assistant: SELECT score FROM table_name_71 WHERE date = "august 23, 2004"
###context:CREATE TABLE table_name_70 (score VARCHAR, tournament VARCHAR) ###human: What was the Score of the Spain F32, Gran Canaria Tournament? ###assistant: SELECT score FROM table_name_70 WHERE tournament = "spain f32, gran canaria"
###context:CREATE TABLE table_name_30 (surface VARCHAR, outcome VARCHAR, score VARCHAR) ###human: On what Surface was the match with a Score of 6–4, 6–3 and Runner-up Outcome played? ###assistant: SELECT surface FROM table_name_30 WHERE outcome = "runner-up" AND score = "6–4, 6–3"
###context:CREATE TABLE table_name_7 (outcome VARCHAR, partner VARCHAR) ###human: What is the Outcome of the match with Partner Andoni Vivanco? ###assistant: SELECT outcome FROM table_name_7 WHERE partner = "andoni vivanco"