prompt
stringlengths
81
567
completion
stringlengths
18
557
Question: Who's the actor for the Archers having a character of Martha Woodford? Context: CREATE TABLE table_name_14 (actor VARCHAR, soap_opera VARCHAR, character VARCHAR) Answer:
SELECT actor FROM table_name_14 WHERE soap_opera = "the archers" AND character = "martha woodford"
Question: Who's the character when Margot Boyd was acting? Context: CREATE TABLE table_name_34 (character VARCHAR, actor VARCHAR) Answer:
SELECT character FROM table_name_34 WHERE actor = "margot boyd"
Question: What were the notes for the time of 6:34.51? Context: CREATE TABLE table_name_56 (notes VARCHAR, time VARCHAR) Answer:
SELECT notes FROM table_name_56 WHERE time = "6:34.51"
Question: What is the rank for the rowers with the time of 6:24.35? Context: CREATE TABLE table_name_51 (rank VARCHAR, time VARCHAR) Answer:
SELECT rank FROM table_name_51 WHERE time = "6:24.35"
Question: Which rowers represented portugal and had notes of r? Context: CREATE TABLE table_name_14 (rowers VARCHAR, notes VARCHAR, country VARCHAR) Answer:
SELECT rowers FROM table_name_14 WHERE notes = "r" AND country = "portugal"
Question: Which rowers represented the country of portugal? Context: CREATE TABLE table_name_4 (rowers VARCHAR, country VARCHAR) Answer:
SELECT rowers FROM table_name_4 WHERE country = "portugal"
Question: what is the average races when points is 9 and poles is less than 0? Context: CREATE TABLE table_name_61 (races INTEGER, points VARCHAR, poles VARCHAR) Answer:
SELECT AVG(races) FROM table_name_61 WHERE points = "9" AND poles < 0
Question: what is the series when wins is less than 3, points is 9 and podiums is 1? Context: CREATE TABLE table_name_7 (series VARCHAR, podiums VARCHAR, wins VARCHAR, points VARCHAR) Answer:
SELECT series FROM table_name_7 WHERE wins < 3 AND points = "9" AND podiums = 1
Question: how many times is races more than 14, position is 9th and wins less than 0? Context: CREATE TABLE table_name_48 (season VARCHAR, wins VARCHAR, races VARCHAR, position VARCHAR) Answer:
SELECT COUNT(season) FROM table_name_48 WHERE races > 14 AND position = "9th" AND wins < 0
Question: Who was the runner-up during the Mac Ice Classic? Context: CREATE TABLE table_name_51 (runner_up_skip VARCHAR, event VARCHAR) Answer:
SELECT runner_up_skip FROM table_name_51 WHERE event = "mac ice classic"
Question: What's the date when Stu Harris was the Runner-up? Context: CREATE TABLE table_name_58 (date VARCHAR, runner_up_skip VARCHAR) Answer:
SELECT date FROM table_name_58 WHERE runner_up_skip = "stu harris"
Question: What's the location of the Ramada Perth Masters event? Context: CREATE TABLE table_name_33 (location VARCHAR, event VARCHAR) Answer:
SELECT location FROM table_name_33 WHERE event = "ramada perth masters"
Question: What's the location of the National event with Kevin Martin winning? Context: CREATE TABLE table_name_49 (location VARCHAR, winning_skip VARCHAR, event VARCHAR) Answer:
SELECT location FROM table_name_49 WHERE winning_skip = "kevin martin" AND event = "the national"
Question: What's the event that happened in Gander, Newfoundland and Labrador with Randy Ferbey runner-up? Context: CREATE TABLE table_name_91 (event VARCHAR, runner_up_skip VARCHAR, location VARCHAR) Answer:
SELECT event FROM table_name_91 WHERE runner_up_skip = "randy ferbey" AND location = "gander, newfoundland and labrador"
Question: What's the location of the National event? Context: CREATE TABLE table_name_97 (location VARCHAR, event VARCHAR) Answer:
SELECT location FROM table_name_97 WHERE event = "the national"
Question: Which Arena has a Date of october 10? Context: CREATE TABLE table_name_13 (arena VARCHAR, date VARCHAR) Answer:
SELECT arena FROM table_name_13 WHERE date = "october 10"
Question: Which Attendance has a Score of 4–3, and Points smaller than 5? Context: CREATE TABLE table_name_13 (attendance INTEGER, score VARCHAR, points VARCHAR) Answer:
SELECT MAX(attendance) FROM table_name_13 WHERE score = "4–3" AND points < 5
Question: Which Attendance has an Arena of arrowhead pond of anaheim, and Points smaller than 5? Context: CREATE TABLE table_name_20 (attendance VARCHAR, arena VARCHAR, points VARCHAR) Answer:
SELECT attendance FROM table_name_20 WHERE arena = "arrowhead pond of anaheim" AND points < 5
Question: How much Attendance has an Arena of arrowhead pond of anaheim, and Points of 5? Context: CREATE TABLE table_name_30 (attendance INTEGER, arena VARCHAR, points VARCHAR) Answer:
SELECT SUM(attendance) FROM table_name_30 WHERE arena = "arrowhead pond of anaheim" AND points = 5
Question: How much 1969 has a 1967 smaller than 0.73, and a 1964 larger than 0.07? Context: CREATE TABLE table_name_18 (Id VARCHAR) Answer:
SELECT COUNT(1969) FROM table_name_18 WHERE 1967 < 0.73 AND 1964 > 0.07
Question: Which 1964 has a Country of united states, and a 1969 smaller than 7.3? Context: CREATE TABLE table_name_85 (country VARCHAR) Answer:
SELECT MIN(1964) FROM table_name_85 WHERE country = "united states" AND 1969 < 7.3
Question: Which 1965 has a 1962 of 0.35000000000000003, and a 1967 smaller than 0.53? Context: CREATE TABLE table_name_38 (Id VARCHAR) Answer:
SELECT MIN(1965) FROM table_name_38 WHERE 1962 = 0.35000000000000003 AND 1967 < 0.53
Question: What is Bev Risman's Cross Code Debut? Context: CREATE TABLE table_name_68 (cross_code_debut VARCHAR, player VARCHAR) Answer:
SELECT cross_code_debut FROM table_name_68 WHERE player = "bev risman"
Question: What is the Player with a Cross Code Debut of RL Test GB v France? Context: CREATE TABLE table_name_25 (player VARCHAR, cross_code_debut VARCHAR) Answer:
SELECT player FROM table_name_25 WHERE cross_code_debut = "rl test gb v france"
Question: In what Year is Keith Smith's Cross Code Debut RL Test v Wales? Context: CREATE TABLE table_name_73 (year VARCHAR, cross_code_debut VARCHAR, player VARCHAR) Answer:
SELECT year FROM table_name_73 WHERE cross_code_debut = "rl test v wales" AND player = "keith smith"
Question: What is the Date of the Int'l Debut of 1967? Context: CREATE TABLE table_name_66 (date VARCHAR, year VARCHAR) Answer:
SELECT date FROM table_name_66 WHERE year = "1967"
Question: What is the Player in the Int'l Debut of 1974? Context: CREATE TABLE table_name_41 (player VARCHAR, year VARCHAR) Answer:
SELECT player FROM table_name_41 WHERE year = "1974"
Question: What lane has a time of 24.83 and a heat less than 11? Context: CREATE TABLE table_name_73 (lane INTEGER, time VARCHAR, heat VARCHAR) Answer:
SELECT SUM(lane) FROM table_name_73 WHERE time = "24.83" AND heat < 11
Question: What is the total number of heat for Chinyere Pigot? Context: CREATE TABLE table_name_94 (heat VARCHAR, name VARCHAR) Answer:
SELECT COUNT(heat) FROM table_name_94 WHERE name = "chinyere pigot"
Question: What is the name for lane 1, from Mauritius? Context: CREATE TABLE table_name_69 (name VARCHAR, lane VARCHAR, nationality VARCHAR) Answer:
SELECT name FROM table_name_69 WHERE lane = 1 AND nationality = "mauritius"
Question: Who won in 1988 with a total less than 287? Context: CREATE TABLE table_name_21 (player VARCHAR, total VARCHAR, year_s__won VARCHAR) Answer:
SELECT player FROM table_name_21 WHERE total < 287 AND year_s__won = "1988"
Question: What country is Larry Mize from? Context: CREATE TABLE table_name_21 (country VARCHAR, player VARCHAR) Answer:
SELECT country FROM table_name_21 WHERE player = "larry mize"
Question: What is the lowest number of bronze medals for a nation with fewer than 1 total medal? Context: CREATE TABLE table_name_87 (bronze INTEGER, total INTEGER) Answer:
SELECT MIN(bronze) FROM table_name_87 WHERE total < 1
Question: What team is Frank Hulbert on? Context: CREATE TABLE table_name_26 (team VARCHAR, rider VARCHAR) Answer:
SELECT team FROM table_name_26 WHERE rider = "frank hulbert"
Question: What was Martin Geiger's rank? Context: CREATE TABLE table_name_95 (rank VARCHAR, rider VARCHAR) Answer:
SELECT rank FROM table_name_95 WHERE rider = "martin geiger"
Question: What was Tom Silver's rank? Context: CREATE TABLE table_name_86 (rank VARCHAR, rider VARCHAR) Answer:
SELECT rank FROM table_name_86 WHERE rider = "tom silver"
Question: Who was the player with a debut of age 18 v plymouth , 14 august 2012, and born in Portsmouth? Context: CREATE TABLE table_name_97 (player VARCHAR, debut VARCHAR, born VARCHAR) Answer:
SELECT player FROM table_name_97 WHERE debut = "age 18 v plymouth , 14 august 2012" AND born = "portsmouth"
Question: Where was the player whose Current Club Elfsborg born? Context: CREATE TABLE table_name_63 (born VARCHAR, current_club VARCHAR) Answer:
SELECT born FROM table_name_63 WHERE current_club = "elfsborg"
Question: What is the debut for the person born in Poole? Context: CREATE TABLE table_name_82 (debut VARCHAR, born VARCHAR) Answer:
SELECT debut FROM table_name_82 WHERE born = "poole"
Question: What is the club for Sam Magri? Context: CREATE TABLE table_name_9 (current_club VARCHAR, player VARCHAR) Answer:
SELECT current_club FROM table_name_9 WHERE player = "sam magri"
Question: What is the name of the manager of the Atlético Baleares? Context: CREATE TABLE table_name_54 (manager VARCHAR, current_club VARCHAR) Answer:
SELECT manager FROM table_name_54 WHERE current_club = "atlético baleares"
Question: Who was the best blocker for the year that has a League Champion of queens of pain, and a C.A.N.T.S.L.E.E.P. Award of chassis crass (brooklyn)? Context: CREATE TABLE table_name_94 (best_blocker VARCHAR, league_champion VARCHAR, cantsleep_award VARCHAR) Answer:
SELECT best_blocker FROM table_name_94 WHERE league_champion = "queens of pain" AND cantsleep_award = "chassis crass (brooklyn)"
Question: Which Arena has Points larger than 28, and a Date of december 14? Context: CREATE TABLE table_name_2 (arena VARCHAR, points VARCHAR, date VARCHAR) Answer:
SELECT arena FROM table_name_2 WHERE points > 28 AND date = "december 14"
Question: How many Points have an Arena of bell centre? Context: CREATE TABLE table_name_39 (points VARCHAR, arena VARCHAR) Answer:
SELECT COUNT(points) FROM table_name_39 WHERE arena = "bell centre"
Question: How much Attendance has a Loss of divis (0–3–0), and Points smaller than 38? Context: CREATE TABLE table_name_86 (attendance INTEGER, loss VARCHAR, points VARCHAR) Answer:
SELECT SUM(attendance) FROM table_name_86 WHERE loss = "divis (0–3–0)" AND points < 38
Question: What 2nd run has a less than 6 rank, and 3 as the total? Context: CREATE TABLE table_name_69 (rank VARCHAR, total VARCHAR) Answer:
SELECT 2 AS nd_run FROM table_name_69 WHERE rank < 6 AND total = 3
Question: What is the sum number of year when Call of Duty 4: Modern Warfare was the game? Context: CREATE TABLE table_name_55 (year VARCHAR, game VARCHAR) Answer:
SELECT COUNT(year) FROM table_name_55 WHERE game = "call of duty 4: modern warfare"
Question: What is the earliest year when action was the genre? Context: CREATE TABLE table_name_35 (year INTEGER, genre VARCHAR) Answer:
SELECT MIN(year) FROM table_name_35 WHERE genre = "action"
Question: What is the smallest year when Ubisoft Montreal was the developer (s)? Context: CREATE TABLE table_name_38 (year INTEGER, developer_s_ VARCHAR) Answer:
SELECT MIN(year) FROM table_name_38 WHERE developer_s_ = "ubisoft montreal"
Question: What is the latest year when Call of Duty 4: Modern Warfare was the game? Context: CREATE TABLE table_name_63 (year INTEGER, game VARCHAR) Answer:
SELECT MAX(year) FROM table_name_63 WHERE game = "call of duty 4: modern warfare"
Question: Who was Lieutenant Governor to the governor that left office on January 14, 1929? Context: CREATE TABLE table_name_21 (Lieutenant VARCHAR, left_office VARCHAR) Answer:
SELECT Lieutenant AS governor FROM table_name_21 WHERE left_office = "january 14, 1929"
Question: Which governor took office on January 8, 1877? Context: CREATE TABLE table_name_88 (governor VARCHAR, took_office VARCHAR) Answer:
SELECT governor FROM table_name_88 WHERE took_office = "january 8, 1877"
Question: Who was lieutenant governor to the governor that left office on October 16, 2000? Context: CREATE TABLE table_name_90 (Lieutenant VARCHAR, left_office VARCHAR) Answer:
SELECT Lieutenant AS governor FROM table_name_90 WHERE left_office = "october 16, 2000"
Question: How many terms did the governor that left office on August 4, 1825 serve? Context: CREATE TABLE table_name_46 (terms VARCHAR, left_office VARCHAR) Answer:
SELECT terms FROM table_name_46 WHERE left_office = "august 4, 1825"
Question: Which IHSAA Class has a School of shakamak? Context: CREATE TABLE table_name_84 (ihsaa_class VARCHAR, school VARCHAR) Answer:
SELECT ihsaa_class FROM table_name_84 WHERE school = "shakamak"
Question: Which County has a School of bloomfield? Context: CREATE TABLE table_name_32 (county VARCHAR, school VARCHAR) Answer:
SELECT county FROM table_name_32 WHERE school = "bloomfield"
Question: How much Enrollment has a School of shakamak? Context: CREATE TABLE table_name_56 (enrollment VARCHAR, school VARCHAR) Answer:
SELECT COUNT(enrollment) FROM table_name_56 WHERE school = "shakamak"
Question: Which IHSAA Class has a Mascot of bulldogs? Context: CREATE TABLE table_name_10 (ihsaa_class VARCHAR, mascot VARCHAR) Answer:
SELECT ihsaa_class FROM table_name_10 WHERE mascot = "bulldogs"
Question: What's the 1996 if 1986 has a 1R? Context: CREATE TABLE table_name_53 (Id VARCHAR) Answer:
SELECT 1996 FROM table_name_53 WHERE 1986 = "1r"
Question: What's the 1986 if 1991 has a QF and 1998 has a 3R? Context: CREATE TABLE table_name_51 (Id VARCHAR) Answer:
SELECT 1986 FROM table_name_51 WHERE 1991 = "qf" AND 1998 = "3r"
Question: What's the 1997 if 1993 has a 1R, 1995 has a 3R, and 1999 has a 1R? Context: CREATE TABLE table_name_99 (Id VARCHAR) Answer:
SELECT 1997 FROM table_name_99 WHERE 1999 = "1r" AND 1995 = "3r" AND 1993 = "1r"
Question: What's the 1994 if 1995 has a 1R? Context: CREATE TABLE table_name_84 (Id VARCHAR) Answer:
SELECT 1994 FROM table_name_84 WHERE 1995 = "1r"
Question: What's the tournament when 1992 is A? Context: CREATE TABLE table_name_6 (tournament VARCHAR) Answer:
SELECT tournament FROM table_name_6 WHERE 1992 = "a"
Question: What's the 1997 when 1992 is QF, 1995 is 1R, and 1999 is 1R? Context: CREATE TABLE table_name_72 (Id VARCHAR) Answer:
SELECT 1997 FROM table_name_72 WHERE 1999 = "1r" AND 1992 = "qf" AND 1995 = "1r"
Question: What's the most league cup apps for Jimmy Lawson having 0 league cup goals? Context: CREATE TABLE table_name_74 (league_cup_apps INTEGER, league_cup_goals VARCHAR, name VARCHAR) Answer:
SELECT MAX(league_cup_apps) FROM table_name_74 WHERE league_cup_goals = 0 AND name = "jimmy lawson"
Question: What's the total goals for Alan Sweeney having 0 FA Cup goals and fewer than 0 League Cup apps? Context: CREATE TABLE table_name_91 (total_goals INTEGER, league_cup_apps VARCHAR, fa_cup_goals VARCHAR, name VARCHAR) Answer:
SELECT AVG(total_goals) FROM table_name_91 WHERE fa_cup_goals = 0 AND name = "alan sweeney" AND league_cup_apps < 0
Question: What's the total number of league cup apps when the league goals were less than 0? Context: CREATE TABLE table_name_15 (league_cup_apps VARCHAR, league_goals INTEGER) Answer:
SELECT COUNT(league_cup_apps) FROM table_name_15 WHERE league_goals < 0
Question: Where was the September 3 game? Context: CREATE TABLE table_name_15 (location VARCHAR, date VARCHAR) Answer:
SELECT location FROM table_name_15 WHERE date = "september 3"
Question: Which game was on September 12? Context: CREATE TABLE table_name_2 (game VARCHAR, date VARCHAR) Answer:
SELECT game FROM table_name_2 WHERE date = "september 12"
Question: What is cork's rank? Context: CREATE TABLE table_name_4 (rank VARCHAR, county VARCHAR) Answer:
SELECT rank FROM table_name_4 WHERE county = "cork"
Question: How many totals does cork have whose rank is larger than 2? Context: CREATE TABLE table_name_27 (total INTEGER, county VARCHAR, rank VARCHAR) Answer:
SELECT SUM(total) FROM table_name_27 WHERE county = "cork" AND rank > 2
Question: Which Matches have a Tally of 1-38? Context: CREATE TABLE table_name_7 (matches VARCHAR, tally VARCHAR) Answer:
SELECT matches FROM table_name_7 WHERE tally = "1-38"
Question: How many silver medals did spain have when they had more than 0 bronze medals and less than 54 total medals? Context: CREATE TABLE table_name_7 (silver VARCHAR, nation VARCHAR, bronze VARCHAR, total VARCHAR) Answer:
SELECT silver FROM table_name_7 WHERE bronze > 0 AND total < 54 AND nation = "spain"
Question: What was the highest number of gold medals when there were 0 silver medals? Context: CREATE TABLE table_name_78 (gold INTEGER, silver INTEGER) Answer:
SELECT MAX(gold) FROM table_name_78 WHERE silver < 0
Question: What's Brazil's rank when it has notes of R? Context: CREATE TABLE table_name_4 (rank VARCHAR, notes VARCHAR, country VARCHAR) Answer:
SELECT COUNT(rank) FROM table_name_4 WHERE notes = "r" AND country = "brazil"
Question: Which Peak Position has a Date of 10 june 1998? Context: CREATE TABLE table_name_21 (peak_position VARCHAR, date VARCHAR) Answer:
SELECT peak_position FROM table_name_21 WHERE date = "10 june 1998"
Question: What Report is on June 3, 2000? Context: CREATE TABLE table_name_85 (report VARCHAR, date VARCHAR) Answer:
SELECT report FROM table_name_85 WHERE date = "june 3, 2000"
Question: What is the Report on November 15, 2000? Context: CREATE TABLE table_name_18 (report VARCHAR, date VARCHAR) Answer:
SELECT report FROM table_name_18 WHERE date = "november 15, 2000"
Question: What is the Score on October 7, 2000? Context: CREATE TABLE table_name_45 (score VARCHAR, date VARCHAR) Answer:
SELECT score FROM table_name_45 WHERE date = "october 7, 2000"
Question: What is the figure for Santo Domingo, Dominican for the world record in the clean & jerk? Context: CREATE TABLE table_name_79 (santo_domingo_ VARCHAR, _dominican VARCHAR, world_record VARCHAR) Answer:
SELECT santo_domingo_, _dominican FROM table_name_79 WHERE world_record = "clean & jerk"
Question: What is the FIPS code for the municipality that has an area of 114.76 sq mi (297.23 sq km) and had a 2010 population of less than 166,327? Context: CREATE TABLE table_name_70 (fips_code INTEGER, area VARCHAR, population__2010_ VARCHAR) Answer:
SELECT AVG(fips_code) FROM table_name_70 WHERE area = "114.76 sq mi (297.23 sq km)" AND population__2010_ < 166 OFFSET 327
Question: In what year was Yauco, which had over 42,043 people in 2010, founded? Context: CREATE TABLE table_name_9 (founded INTEGER, municipality VARCHAR, population__2010_ VARCHAR) Answer:
SELECT AVG(founded) FROM table_name_9 WHERE municipality = "yauco" AND population__2010_ > 42 OFFSET 043
Question: What is the attendance for a week smaller than 9 with a result of L 38-20? Context: CREATE TABLE table_name_67 (attendance INTEGER, result VARCHAR, week VARCHAR) Answer:
SELECT MAX(attendance) FROM table_name_67 WHERE result = "l 38-20" AND week < 9
Question: Can you tell me the School that has the IHSAA Class of a, and the Enrollment 08-09 off 244? Context: CREATE TABLE table_name_67 (school VARCHAR, ihsaa_class VARCHAR, enrollment_08_09 VARCHAR) Answer:
SELECT school FROM table_name_67 WHERE ihsaa_class = "a" AND enrollment_08_09 = 244
Question: Can you tell me the County that has the Location of shelbyville? Context: CREATE TABLE table_name_17 (county VARCHAR, location VARCHAR) Answer:
SELECT county FROM table_name_17 WHERE location = "shelbyville"
Question: How many Deaths have a Fate of damaged, and a Tonnage (GRT) smaller than 4,917? Context: CREATE TABLE table_name_1 (deaths VARCHAR, fate VARCHAR, tonnage___grt__ VARCHAR) Answer:
SELECT COUNT(deaths) FROM table_name_1 WHERE fate = "damaged" AND tonnage___grt__ < 4 OFFSET 917
Question: Which Tonnage has a Fate of sunk, and Deaths smaller than 17, and a Date of 16 november 1940? Context: CREATE TABLE table_name_11 (tonnage___grt__ VARCHAR, date VARCHAR, fate VARCHAR, deaths VARCHAR) Answer:
SELECT tonnage___grt__ FROM table_name_11 WHERE fate = "sunk" AND deaths < 17 AND date = "16 november 1940"
Question: How much tonnage has a Fate of sunk, and a Flag of great britain, and a Date of 26 september 1940, and Deaths of 2? Context: CREATE TABLE table_name_83 (tonnage___grt__ INTEGER, deaths VARCHAR, date VARCHAR, fate VARCHAR, flag VARCHAR) Answer:
SELECT SUM(tonnage___grt__) FROM table_name_83 WHERE fate = "sunk" AND flag = "great britain" AND date = "26 september 1940" AND deaths = 2
Question: Which tonnage has a Date of 26 september 1940, and a Ship Name of ashantian? Context: CREATE TABLE table_name_84 (tonnage___grt__ INTEGER, date VARCHAR, ship_name VARCHAR) Answer:
SELECT MIN(tonnage___grt__) FROM table_name_84 WHERE date = "26 september 1940" AND ship_name = "ashantian"
Question: What is the highest lane for Brazil, ranked less than 8? Context: CREATE TABLE table_name_85 (lane INTEGER, country VARCHAR, rank VARCHAR) Answer:
SELECT MAX(lane) FROM table_name_85 WHERE country = "brazil" AND rank < 8
Question: What is the total population with less than 789 males? Context: CREATE TABLE table_name_12 (total_population VARCHAR, male INTEGER) Answer:
SELECT COUNT(total_population) FROM table_name_12 WHERE male < 789
Question: What is the lowest female number of the hiroo 1-chōme district, which has more than 1,666 households? Context: CREATE TABLE table_name_66 (female INTEGER, district VARCHAR, number_of_households VARCHAR) Answer:
SELECT MIN(female) FROM table_name_66 WHERE district = "hiroo 1-chōme" AND number_of_households > 1 OFFSET 666
Question: What is the total number of females where the total population is less than 2,195? Context: CREATE TABLE table_name_65 (female VARCHAR, total_population INTEGER) Answer:
SELECT COUNT(female) FROM table_name_65 WHERE total_population < 2 OFFSET 195
Question: What was the outcome when the partner was Iryna Bremond? Context: CREATE TABLE table_name_13 (outcome VARCHAR, partner VARCHAR) Answer:
SELECT outcome FROM table_name_13 WHERE partner = "iryna bremond"
Question: What tournament had a Score of 6–3, 2–6, [10–8]? Context: CREATE TABLE table_name_90 (tournament VARCHAR, score VARCHAR) Answer:
SELECT tournament FROM table_name_90 WHERE score = "6–3, 2–6, [10–8]"
Question: Who was the partner when the surface was clay, and outcome was runner-up, with a score of 4–6, 1–6? Context: CREATE TABLE table_name_28 (partner VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR) Answer:
SELECT partner FROM table_name_28 WHERE surface = "clay" AND outcome = "runner-up" AND score = "4–6, 1–6"
Question: What is the rank of Manuel Cortina Martínez? Context: CREATE TABLE table_name_46 (rank VARCHAR, athletes VARCHAR) Answer:
SELECT rank FROM table_name_46 WHERE athletes = "manuel cortina martínez"
Question: What is the rank if the person with a time of 1:40.626? Context: CREATE TABLE table_name_23 (rank INTEGER, time VARCHAR) Answer:
SELECT SUM(rank) FROM table_name_23 WHERE time = "1:40.626"
Question: What is the rank of the person with a time of 1:44.757? Context: CREATE TABLE table_name_62 (rank INTEGER, time VARCHAR) Answer:
SELECT MAX(rank) FROM table_name_62 WHERE time = "1:44.757"
Question: What is the rank of Israel? Context: CREATE TABLE table_name_97 (rank INTEGER, country VARCHAR) Answer:
SELECT MAX(rank) FROM table_name_97 WHERE country = "israel"