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