answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT SUM(score) FROM table_name_13 WHERE place = "t2" AND player = "justin leonard"
CREATE TABLE table_name_13 (score INTEGER, place VARCHAR, player VARCHAR)
What is Sum of Score, when Place is T2, and when Player is Justin Leonard?
SELECT place FROM table_name_32 WHERE score < 67 AND country = "south africa"
CREATE TABLE table_name_32 (place VARCHAR, score VARCHAR, country VARCHAR)
What is Place, when Score is less than 67, and when Country is South Africa?
SELECT team FROM table_name_23 WHERE laps = 379
CREATE TABLE table_name_23 (team VARCHAR, laps VARCHAR)
Can you tell me the Team that has the Laps of 379?
SELECT tournament FROM table_name_57 WHERE margin_of_victory = "4 strokes"
CREATE TABLE table_name_57 (tournament VARCHAR, margin_of_victory VARCHAR)
What is the Tournament with a Margin of victory that was 4 strokes?
SELECT 1999 FROM table_name_18 WHERE 1998 = "2r"
CREATE TABLE table_name_18 (Id VARCHAR)
What is 1999, when 1998 is 2R?
SELECT 1998 FROM table_name_86 WHERE 1994 = "grand slam tournaments"
CREATE TABLE table_name_86 (Id VARCHAR)
What is 1998, when 1994 is Grand Slam Tournaments?
SELECT 2009 FROM table_name_1 WHERE 2000 = "1r" AND 1998 = "3r"
CREATE TABLE table_name_1 (Id VARCHAR)
What is 2009, when 2000 is 1R, and when 1998 is 3R?
SELECT 2009 FROM table_name_59 WHERE 2008 = "1r" AND tournament = "french open"
CREATE TABLE table_name_59 (tournament VARCHAR)
What is 2009, when 2008 is 1R, and when Tournament is French Open?
SELECT 2009 FROM table_name_81 WHERE 2004 = "2r" AND 1993 = "a"
CREATE TABLE table_name_81 (Id VARCHAR)
What is 2009, when 2004 is 2R, and when 1993 is A?
SELECT AVG(gold) FROM table_name_45 WHERE total > 12
CREATE TABLE table_name_45 (gold INTEGER, total INTEGER)
What is the average amount of gold medals for a country with more than 12 total medals?
SELECT visitor FROM table_name_7 WHERE home = "nets"
CREATE TABLE table_name_7 (visitor VARCHAR, home VARCHAR)
Who were the Visitor when the Nets were the Home team?
SELECT leading_scorer FROM table_name_98 WHERE score = "80–112"
CREATE TABLE table_name_98 (leading_scorer VARCHAR, score VARCHAR)
What Leading scorer had a Score of 80–112?
SELECT tournament FROM table_name_56 WHERE margin_of_victory = "2 strokes" AND date = "sep 20, 1981"
CREATE TABLE table_name_56 (tournament VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
What is the name of the tournament played on Sep 20, 1981, ending with a margin of vicroty of 2 strokes?
SELECT winning_score FROM table_name_97 WHERE date = "jul 4, 1982"
CREATE TABLE table_name_97 (winning_score VARCHAR, date VARCHAR)
For the tournament played on Jul 4, 1982, what was the winning score?
SELECT winning_score FROM table_name_60 WHERE tournament = "andy williams-san diego open invitational"
CREATE TABLE table_name_60 (winning_score VARCHAR, tournament VARCHAR)
What was the winning score for the Andy Williams-San Diego Open Invitational tournament?
SELECT runner_s__up FROM table_name_95 WHERE date = "jun 3, 1973"
CREATE TABLE table_name_95 (runner_s__up VARCHAR, date VARCHAR)
Who was the runner(s)-up for the tournament played on Jun 3, 1973?
SELECT winning_score FROM table_name_96 WHERE date = "jul 14, 1973"
CREATE TABLE table_name_96 (winning_score VARCHAR, date VARCHAR)
What was the winning score for the tournament played on Jul 14, 1973?
SELECT tournament FROM table_name_64 WHERE runner_s__up = "gil morgan"
CREATE TABLE table_name_64 (tournament VARCHAR, runner_s__up VARCHAR)
In which tournament was Gil Morgan the runner-up?
SELECT MAX(attendance) FROM table_name_19 WHERE opponent = "atlanta falcons" AND week < 10
CREATE TABLE table_name_19 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
What was the highest attendance when the Atlanta Falcons played for a week smaller than 10?
SELECT result FROM table_name_42 WHERE theme = "dolly parton"
CREATE TABLE table_name_42 (result VARCHAR, theme VARCHAR)
What is the Result when the Theme was by Dolly Parton?
SELECT theme FROM table_name_85 WHERE original_artist = "carole king" AND week__number = "hollywood"
CREATE TABLE table_name_85 (theme VARCHAR, original_artist VARCHAR, week__number VARCHAR)
What is the Theme when the Original artist was carole king, and a Week # shows hollywood?
SELECT song_choice FROM table_name_26 WHERE order__number = "4"
CREATE TABLE table_name_26 (song_choice VARCHAR, order__number VARCHAR)
What is the Song choice when there is an Order # of 4?
SELECT proto_oceanic FROM table_name_86 WHERE animal = "louse"
CREATE TABLE table_name_86 (proto_oceanic VARCHAR, animal VARCHAR)
What proto-oceanic has louse as the animal?
SELECT SUM(delegates) FROM table_name_22 WHERE counties_carries = 4 AND state_delegate > 1 OFFSET 903
CREATE TABLE table_name_22 (delegates INTEGER, counties_carries VARCHAR, state_delegate VARCHAR)
What is the total number of delegate that have 4 counties carries and more than 1,903 state delegates?
SELECT home_team FROM table_name_87 WHERE away_team = "oxford united"
CREATE TABLE table_name_87 (home_team VARCHAR, away_team VARCHAR)
What is the Home team with an Away team that is oxford united?
SELECT home_team FROM table_name_90 WHERE away_team = "wrexham"
CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR)
What is the Home team with an Away team that is wrexham?
SELECT MIN(gold) FROM table_name_24 WHERE silver = 7 AND bronze < 7
CREATE TABLE table_name_24 (gold INTEGER, silver VARCHAR, bronze VARCHAR)
Which Gold has a Silver of 7, and a Bronze smaller than 7?
SELECT SUM(bronze) FROM table_name_69 WHERE silver = 15 AND gold < 20
CREATE TABLE table_name_69 (bronze INTEGER, silver VARCHAR, gold VARCHAR)
Which Bronze has a Silver of 15, and a Gold smaller than 20?
SELECT MIN(bronze) FROM table_name_93 WHERE silver = 7 AND total > 25
CREATE TABLE table_name_93 (bronze INTEGER, silver VARCHAR, total VARCHAR)
Which Bronze has a Silver of 7, and a Total larger than 25?
SELECT SUM(gold) FROM table_name_92 WHERE bronze > 1 AND total > 80
CREATE TABLE table_name_92 (gold INTEGER, bronze VARCHAR, total VARCHAR)
Which Gold has a Bronze larger than 1, and a Total larger than 80?
SELECT COUNT(total) FROM table_name_93 WHERE silver > 8 AND bronze = 20 AND gold < 20
CREATE TABLE table_name_93 (total VARCHAR, gold VARCHAR, silver VARCHAR, bronze VARCHAR)
Which Total has a Silver larger than 8, and a Bronze of 20, and a Gold smaller than 20?
SELECT total FROM table_name_62 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "26-24"
CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)
What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?
SELECT total FROM table_name_16 WHERE score = "3-0" AND set_3 = "25-18" AND set_2 = "25-12"
CREATE TABLE table_name_16 (total VARCHAR, set_2 VARCHAR, score VARCHAR, set_3 VARCHAR)
What is the total of the 3-0 score with a set 2 of 25-12 and a set 3 of 25-18?
SELECT set_5 FROM table_name_25 WHERE set_2 = "26-24" AND set_1 = "27-25"
CREATE TABLE table_name_25 (set_5 VARCHAR, set_2 VARCHAR, set_1 VARCHAR)
What is the set 5 of the match with a set 2 of 26-24 and a set 1 of 27-25?
SELECT COUNT(silver) FROM table_name_66 WHERE total = 76
CREATE TABLE table_name_66 (silver VARCHAR, total VARCHAR)
Who has a total number of 76 silver medals?
SELECT score FROM table_name_74 WHERE home_team = "ipswich town" AND tie_no = "replay"
CREATE TABLE table_name_74 (score VARCHAR, home_team VARCHAR, tie_no VARCHAR)
What score has ipswich town as the home team, and replay as the tie no.?
SELECT score FROM table_name_27 WHERE home_team = "grays athletic"
CREATE TABLE table_name_27 (score VARCHAR, home_team VARCHAR)
What score has grays athletic as the home team?
SELECT date FROM table_name_73 WHERE tie_no = "6"
CREATE TABLE table_name_73 (date VARCHAR, tie_no VARCHAR)
What date has 6 as the tie no.?
SELECT fastest_lap FROM table_name_8 WHERE winning_team = "team brm" AND race = 1 AND pole_position = "leanne tander" AND circuit = "phillip island"
CREATE TABLE table_name_8 (fastest_lap VARCHAR, circuit VARCHAR, pole_position VARCHAR, winning_team VARCHAR, race VARCHAR)
What is Fastest Lap, when Winning Team is Team BRM, when Race is 1, when Pole Position is Leanne Tander, and when Circuit is Phillip Island?
SELECT fastest_lap FROM table_name_68 WHERE round = "5" AND winning_driver = "james winslow"
CREATE TABLE table_name_68 (fastest_lap VARCHAR, round VARCHAR, winning_driver VARCHAR)
What is Fastest Lap, when Round is 5, and when Winning Driver is James Winslow?
SELECT date FROM table_name_81 WHERE fastest_lap = "james winslow" AND race = 1 AND winning_driver = "leanne tander"
CREATE TABLE table_name_81 (date VARCHAR, winning_driver VARCHAR, fastest_lap VARCHAR, race VARCHAR)
What is Date, when Fastest Lap is James Winslow, when Race is 1, and when Winning Driver is Leanne Tander?
SELECT pole_position FROM table_name_71 WHERE circuit = "adelaide street circuit" AND winning_team = "piccola scuderia corse"
CREATE TABLE table_name_71 (pole_position VARCHAR, circuit VARCHAR, winning_team VARCHAR)
What is Pole Position, when Circuit is Adelaide Street Circuit, and when Winning Team is Piccola Scuderia Corse?
SELECT country FROM table_name_18 WHERE location = "trestles"
CREATE TABLE table_name_18 (country VARCHAR, location VARCHAR)
What country was the game played in when the location was trestles?
SELECT date FROM table_name_8 WHERE location = "bells beach"
CREATE TABLE table_name_8 (date VARCHAR, location VARCHAR)
What date was the game played when it was located at bells beach?
SELECT country FROM table_name_73 WHERE date = "april 11-april 21"
CREATE TABLE table_name_73 (country VARCHAR, date VARCHAR)
What country was the game played when it was played from April 11-April 21?
SELECT runner_up FROM table_name_31 WHERE location = "bells beach"
CREATE TABLE table_name_31 (runner_up VARCHAR, location VARCHAR)
Who was the Runner-up when the game was played at Bells Beach?
SELECT accolade FROM table_name_44 WHERE publication = "under the radar"
CREATE TABLE table_name_44 (accolade VARCHAR, publication VARCHAR)
Which Accolade had a publication of Under the Radar?
SELECT year FROM table_name_99 WHERE publication = "pazz & jop"
CREATE TABLE table_name_99 (year VARCHAR, publication VARCHAR)
Which year had a publication of Pazz & Jop?
SELECT COUNT(district) FROM table_name_57 WHERE democratic = "nicholas von stein"
CREATE TABLE table_name_57 (district VARCHAR, democratic VARCHAR)
How many districts featured the democrat nicholas von stein?
SELECT incumbent FROM table_name_21 WHERE democratic = "mike carroll"
CREATE TABLE table_name_21 (incumbent VARCHAR, democratic VARCHAR)
Which incumbent's democratic candidate was mike carroll?
SELECT democratic_ticket FROM table_name_68 WHERE liberal_ticket = "edward r. dudley"
CREATE TABLE table_name_68 (democratic_ticket VARCHAR, liberal_ticket VARCHAR)
Who ran under the Democratic ticket when Edward R. Dudley ran under the Liberal ticket?
SELECT democratic_ticket FROM table_name_99 WHERE socialist_labor_ticket = "john emanuel"
CREATE TABLE table_name_99 (democratic_ticket VARCHAR, socialist_labor_ticket VARCHAR)
When John Emanuel ran under the Socialist Labor ticket who ran under the Democratic ticket?
SELECT office FROM table_name_55 WHERE socialist_workers_ticket = "sylvia weinstein"
CREATE TABLE table_name_55 (office VARCHAR, socialist_workers_ticket VARCHAR)
What was the office up for election when Sylvia Weinstein ran under the Socialist Workers ticket?
SELECT socialist_labor_ticket FROM table_name_28 WHERE democratic_ticket = "robert m. morgenthau"
CREATE TABLE table_name_28 (socialist_labor_ticket VARCHAR, democratic_ticket VARCHAR)
Who ran under the Socialist Labor ticket when Robert M. Morgenthau ran for the Democratic ticket?
SELECT socialist_workers_ticket FROM table_name_99 WHERE republican_ticket = "john p. lomenzo"
CREATE TABLE table_name_99 (socialist_workers_ticket VARCHAR, republican_ticket VARCHAR)
When Republican ticket was John P. Lomenzo who ran for the Socialist Workers ticket?
SELECT SUM(area_km_2) FROM table_name_70 WHERE pop_density_people_km_2 > 91 AND member_state = "italy" AND population_in_millions < 58.8
CREATE TABLE table_name_70 (area_km_2 INTEGER, population_in_millions VARCHAR, pop_density_people_km_2 VARCHAR, member_state VARCHAR)
What is the area km2 of the area with a pop density people/km2 larger than 91, is a member state of Italy, and had less than 58.8 population in millions?
SELECT area__percentage_of_eu FROM table_name_39 WHERE population_in_millions = 16.4
CREATE TABLE table_name_39 (area__percentage_of_eu VARCHAR, population_in_millions VARCHAR)
What is the area % of EU with 16.4 population in millions?
SELECT COUNT(area_km_2) FROM table_name_8 WHERE population_in_millions > 4.2 AND member_state = "czech republic"
CREATE TABLE table_name_8 (area_km_2 VARCHAR, population_in_millions VARCHAR, member_state VARCHAR)
What is the total number of area km2 with a 4.2 population in millions and is a member state of the Czech Republic?
SELECT SUM(pop_density_people_km_2) FROM table_name_47 WHERE population__percentage_of_eu = "0.1%" AND area__percentage_of_eu = "0.1%" AND population_in_millions > 0.5
CREATE TABLE table_name_47 (pop_density_people_km_2 INTEGER, population_in_millions VARCHAR, population__percentage_of_eu VARCHAR, area__percentage_of_eu VARCHAR)
What is the sum of the pop density people/km2 with a population % of EU of 0.1%, an area % of EU of 0.1%, and has more than 0.5 population in millions?
SELECT MIN(area_km_2) FROM table_name_61 WHERE member_state = "czech republic" AND population_in_millions < 10.3
CREATE TABLE table_name_61 (area_km_2 INTEGER, member_state VARCHAR, population_in_millions VARCHAR)
What is the lowest area km2 of the member state of the Czech Republic and has a population in millions lesss than 10.3?
SELECT COUNT(height) FROM table_name_22 WHERE spike < 340 AND name = "gilberto godoy filho" AND weight < 85
CREATE TABLE table_name_22 (height VARCHAR, weight VARCHAR, spike VARCHAR, name VARCHAR)
Weighing less than 85, with less than 340 Spikes, what is Gilberto Godoy Filho's Height
SELECT COUNT(attendance) FROM table_name_1 WHERE opponent = "boston patriots" AND week > 14
CREATE TABLE table_name_1 (attendance VARCHAR, opponent VARCHAR, week VARCHAR)
What is the Attendance for Opponent Boston Patriots and Week is greater than 14?
SELECT nominated_work FROM table_name_96 WHERE year = 1997
CREATE TABLE table_name_96 (nominated_work VARCHAR, year VARCHAR)
Which Nominated work has a Year of 1997?
SELECT award FROM table_name_40 WHERE category = "music video acting award"
CREATE TABLE table_name_40 (award VARCHAR, category VARCHAR)
Which Award has a Category of music video acting award?
SELECT canadian_championship FROM table_name_87 WHERE league = "84 (4)"
CREATE TABLE table_name_87 (canadian_championship VARCHAR, league VARCHAR)
When the league is 84 (4) what is the Canadian Championship?
SELECT canadian_championship FROM table_name_85 WHERE league = "84 (4)"
CREATE TABLE table_name_85 (canadian_championship VARCHAR, league VARCHAR)
What Canadian Championship has 84 (4) as the league?
SELECT canadian_championship FROM table_name_45 WHERE name = "ashtone morgan category:articles with hcards"
CREATE TABLE table_name_45 (canadian_championship VARCHAR, name VARCHAR)
What Canadian Championship has Ashtone Morgan Category:Articles with hcards as the name?
SELECT total FROM table_name_15 WHERE name = "carl robinson category:articles with hcards"
CREATE TABLE table_name_15 (total VARCHAR, name VARCHAR)
What is the total when the name is Carl Robinson Category:Articles with hcards?
SELECT name FROM table_name_11 WHERE games < 38 AND rank < 4 AND points = 357
CREATE TABLE table_name_11 (name VARCHAR, points VARCHAR, games VARCHAR, rank VARCHAR)
What is Name, when Games are less than 38, when Rank is less than 4, and when Points are 357?
SELECT team FROM table_name_12 WHERE rank > 2 AND points > 259
CREATE TABLE table_name_12 (team VARCHAR, rank VARCHAR, points VARCHAR)
What is Team, when Rank is greater than 2, and when Points are greater than 259?
SELECT MAX(games) FROM table_name_75 WHERE team = "ciudad de la laguna" AND points > 357
CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, points VARCHAR)
What are the Highest Games, when Team is Ciudad De La Laguna, and when Points are greater than 357?
SELECT points FROM table_name_81 WHERE name = "ondrej starosta"
CREATE TABLE table_name_81 (points VARCHAR, name VARCHAR)
What is Points, when Name is Ondrej Starosta?
SELECT MIN(points) FROM table_name_98 WHERE games > 34 AND name = "andrew panko"
CREATE TABLE table_name_98 (points INTEGER, games VARCHAR, name VARCHAR)
What is the lowest value for Points, when Games is greater than 34, and when Name is Andrew Panko?
SELECT MAX(points) FROM table_name_52 WHERE games = 21 AND rank > 2
CREATE TABLE table_name_52 (points INTEGER, games VARCHAR, rank VARCHAR)
What is the highest value for Points, when Games is 21, and when Rank is greater than 2?
SELECT AVG(rank) FROM table_name_31 WHERE date = "2007-06-21" AND mark < 91.29
CREATE TABLE table_name_31 (rank INTEGER, date VARCHAR, mark VARCHAR)
What is the average rank of the record on 2007-06-21 with a mark less than 91.29?
SELECT MIN(mark) FROM table_name_34 WHERE rank = 8
CREATE TABLE table_name_34 (mark INTEGER, rank VARCHAR)
What is the lowest mark of the rank 8 record?
SELECT place FROM table_name_38 WHERE mark > 90.73 AND date = "1996-05-25"
CREATE TABLE table_name_38 (place VARCHAR, mark VARCHAR, date VARCHAR)
What is the place of the record on 1996-05-25 with a mark greater than 90.73?
SELECT place FROM table_name_16 WHERE mark > 91.29 AND rank = 6
CREATE TABLE table_name_16 (place VARCHAR, mark VARCHAR, rank VARCHAR)
What is the place of the rank 6 record, which has a mark greater than 91.29?
SELECT competition FROM table_name_55 WHERE venue = "hampden park, glasgow"
CREATE TABLE table_name_55 (competition VARCHAR, venue VARCHAR)
What competition has a venue in Hampden Park, Glasgow?
SELECT score FROM table_name_68 WHERE venue = "hampden park, glasgow"
CREATE TABLE table_name_68 (score VARCHAR, venue VARCHAR)
What was the score in Hampden Park, Glasgow?
SELECT venue FROM table_name_83 WHERE notes = "2:28:31"
CREATE TABLE table_name_83 (venue VARCHAR, notes VARCHAR)
Which Venue has a Notes of 2:28:31?
SELECT venue FROM table_name_98 WHERE competition = "venice marathon"
CREATE TABLE table_name_98 (venue VARCHAR, competition VARCHAR)
Which Venue has a Competition of venice marathon?
SELECT MIN(year) FROM table_name_17 WHERE notes = "dnf"
CREATE TABLE table_name_17 (year INTEGER, notes VARCHAR)
Which Year that has Notes of dnf?
SELECT competition FROM table_name_45 WHERE year > 2000
CREATE TABLE table_name_45 (competition VARCHAR, year INTEGER)
Which Competition has a Year larger than 2000?
SELECT date FROM table_name_33 WHERE set_4 = "25-19"
CREATE TABLE table_name_33 (date VARCHAR, set_4 VARCHAR)
What date has a set 4 of 25-19?
SELECT total FROM table_name_80 WHERE set_2 = "25-18"
CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)
What is the total for the set 2 of 25-18?
SELECT total FROM table_name_55 WHERE set_2 = "25-19"
CREATE TABLE table_name_55 (total VARCHAR, set_2 VARCHAR)
What is the total for set 2 of 25-19?
SELECT set_3 FROM table_name_54 WHERE set_5 = "na" AND set_1 = "21-25" AND set_2 = "25-16"
CREATE TABLE table_name_54 (set_3 VARCHAR, set_2 VARCHAR, set_5 VARCHAR, set_1 VARCHAR)
What is set 3 when set 5 is na, set 1 is 21-25, and set 2 is 25-16?
SELECT set_1 FROM table_name_90 WHERE date = "jun 26" AND set_2 = "25-16"
CREATE TABLE table_name_90 (set_1 VARCHAR, date VARCHAR, set_2 VARCHAR)
What is the set 1 for the date jun 26, and a set 2 of 25-16?
SELECT total FROM table_name_80 WHERE set_2 = "17-25"
CREATE TABLE table_name_80 (total VARCHAR, set_2 VARCHAR)
What is the total for set 2 17-25?
SELECT opponent FROM table_name_57 WHERE score = "1-6, 3-6"
CREATE TABLE table_name_57 (opponent VARCHAR, score VARCHAR)
What Opponent has a Score that is 1-6, 3-6?
SELECT writer FROM table_name_9 WHERE artist = "mort drucker" AND issue > 470 AND actual_title = "law & order: svu"
CREATE TABLE table_name_9 (writer VARCHAR, actual_title VARCHAR, artist VARCHAR, issue VARCHAR)
What writer has mort drucker as the artist, an issue greater than 470, and law & order: svu as an actual title?
SELECT date FROM table_name_93 WHERE actual_title = "ed"
CREATE TABLE table_name_93 (date VARCHAR, actual_title VARCHAR)
What date has ed as an actual title?
SELECT issue FROM table_name_51 WHERE actual_title = "7th heaven"
CREATE TABLE table_name_51 (issue VARCHAR, actual_title VARCHAR)
What isssue has 7th heaven as an actual title?
SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001"
CREATE TABLE table_name_20 (issue VARCHAR, artist VARCHAR, date VARCHAR)
What issue has mort drucker as the artist and february 2001 as the date?
SELECT COUNT(week) FROM table_name_78 WHERE attendance < 39 OFFSET 434
CREATE TABLE table_name_78 (week VARCHAR, attendance INTEGER)
In what Week was the Attendance 39,434?
SELECT year FROM table_name_3 WHERE outcome = "runner-up" AND opponent = "lleyton hewitt"
CREATE TABLE table_name_3 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)
What year was the match were xavier malisse was the runner-up against lleyton hewitt?
SELECT year FROM table_name_39 WHERE outcome = "runner-up" AND opponent = "filippo volandri"
CREATE TABLE table_name_39 (year VARCHAR, outcome VARCHAR, opponent VARCHAR)
What year was the match against filippo volandri where xavier malisse was runner-up?
SELECT SUM(against) FROM table_name_57 WHERE difference = "6" AND played > 19
CREATE TABLE table_name_57 (against INTEGER, difference VARCHAR, played VARCHAR)
How many against have a difference of 6, with a played greater than 19?
SELECT MIN(drawn) FROM table_name_52 WHERE played > 19 AND position < 2
CREATE TABLE table_name_52 (drawn INTEGER, played VARCHAR, position VARCHAR)
What is the lowest drawn that has a played greater than 19, with a position less than 2?