combined_text
stringlengths
106
1.05k
###question:Who was the Leading Scorer in the Game with a Score of 96-87?###answer:SELECT Leading AS scorer FROM table_name_90 WHERE score = "96-87"###context:CREATE TABLE table_name_90 (Leading VARCHAR, score VARCHAR)
###question:What Country with a MC Format has a ATCO Records Label?###answer:SELECT country FROM table_name_98 WHERE label = "atco records" AND format = "mc"###context:CREATE TABLE table_name_98 (country VARCHAR, label VARCHAR, format VARCHAR)
###question:What team has a location and attendance at the Seattle Center Coliseum 12,591?###answer:SELECT team FROM table_name_22 WHERE location_attendance = "seattle center coliseum 12,591"###context:CREATE TABLE table_name_22 (team VARCHAR, location_attendance VARCHAR)
###question:What is 1st Leg, when Team #2 is "Emelec"?###answer:SELECT 1 AS st_leg FROM table_name_76 WHERE team__number2 = "emelec"###context:CREATE TABLE table_name_76 (team__number2 VARCHAR)
###question:What is 1st Leg, when Team #1 is "San Lorenzo"?###answer:SELECT 1 AS st_leg FROM table_name_58 WHERE team__number1 = "san lorenzo"###context:CREATE TABLE table_name_58 (team__number1 VARCHAR)
###question:What is the muzzle energy with grains (g) bullet weight and a max pressure of 35,000 psi?###answer:SELECT muzzle_energy FROM table_name_67 WHERE bullet_weight = "grains (g)" AND max_pressure = "35,000 psi"###context:CREATE TABLE table_name_67 (muzzle_energy VARCHAR, bullet_weight VARCHAR, max_pressure VARCH...
###question:What is the bullet weight with a 12,000 cup max pressure?###answer:SELECT bullet_weight FROM table_name_98 WHERE max_pressure = "12,000 cup"###context:CREATE TABLE table_name_98 (bullet_weight VARCHAR, max_pressure VARCHAR)
###question:What is the max pressure for the 468ft•lbf (634 j) muzzle energy?###answer:SELECT max_pressure FROM table_name_99 WHERE muzzle_energy = "468ft•lbf (634 j)"###context:CREATE TABLE table_name_99 (max_pressure VARCHAR, muzzle_energy VARCHAR)
###question:What is the muzzle velocity for the muzzle energy 351ft•lbf (476 j)?###answer:SELECT muzzle_velocity FROM table_name_60 WHERE muzzle_energy = "351ft•lbf (476 j)"###context:CREATE TABLE table_name_60 (muzzle_velocity VARCHAR, muzzle_energy VARCHAR)
###question:What is the muzzle velocity for the .38 long colt cartridge?###answer:SELECT muzzle_velocity FROM table_name_32 WHERE cartridge = ".38 long colt"###context:CREATE TABLE table_name_32 (muzzle_velocity VARCHAR, cartridge VARCHAR)
###question:What is the muzzle energy with 40,000 psi max pressure?###answer:SELECT muzzle_energy FROM table_name_40 WHERE max_pressure = "40,000 psi"###context:CREATE TABLE table_name_40 (muzzle_energy VARCHAR, max_pressure VARCHAR)
###question:What is the home country of the player who placed t5 and had a score of 69-71=140?###answer:SELECT country FROM table_name_23 WHERE place = "t5" AND score = 69 - 71 = 140###context:CREATE TABLE table_name_23 (country VARCHAR, place VARCHAR, score VARCHAR)
###question:What was the place for the player whose final score was 71-69=140?###answer:SELECT place FROM table_name_78 WHERE score = 71 - 69 = 140###context:CREATE TABLE table_name_78 (place VARCHAR, score VARCHAR)
###question:What was the To par for the player whose final score was 67-71=138?###answer:SELECT to_par FROM table_name_26 WHERE score = 67 - 71 = 138###context:CREATE TABLE table_name_26 (to_par VARCHAR, score VARCHAR)
###question:What was Nolan Henke's To par when he placed in t3?###answer:SELECT to_par FROM table_name_96 WHERE place = "t3" AND player = "nolan henke"###context:CREATE TABLE table_name_96 (to_par VARCHAR, place VARCHAR, player VARCHAR)
###question:WHAT IS THE MEANING WITH Pīnyīn of chē?###answer:SELECT meaning FROM table_name_61 WHERE pīnyīn = "chē"###context:CREATE TABLE table_name_61 (meaning VARCHAR, pīnyīn VARCHAR)
###question:WHAT IS THE RADICAL WITH gǔ, AND STROKE COUNT OF 7?###answer:SELECT radical__variants_ FROM table_name_81 WHERE pīnyīn = "gǔ" AND stroke_count = 7###context:CREATE TABLE table_name_81 (radical__variants_ VARCHAR, pīnyīn VARCHAR, stroke_count VARCHAR)
###question:WHAT IS THE STROKE COUNT WITH RADICAL OF 生, FRQUENCY SMALLER THAN 22?###answer:SELECT COUNT(stroke_count) FROM table_name_57 WHERE radical__variants_ = "生" AND frequency < 22###context:CREATE TABLE table_name_57 (stroke_count VARCHAR, radical__variants_ VARCHAR, frequency VARCHAR)
###question:WHAT IS THE STROKE COUNT WITH RADICAL 皿 FREQUENCY SMALLER THAN 129?###answer:SELECT AVG(stroke_count) FROM table_name_88 WHERE radical__variants_ = "皿" AND frequency < 129###context:CREATE TABLE table_name_88 (stroke_count INTEGER, radical__variants_ VARCHAR, frequency VARCHAR)
###question:What is the Flagship of the Show Hosted by Rover (Shane French)?###answer:SELECT flagship FROM table_name_33 WHERE host_s_ = "rover (shane french)"###context:CREATE TABLE table_name_33 (flagship VARCHAR, host_s_ VARCHAR)
###question:What is the Host of the Show with a Market of New York?###answer:SELECT host_s_ FROM table_name_78 WHERE market = "new york"###context:CREATE TABLE table_name_78 (host_s_ VARCHAR, market VARCHAR)
###question:What is the iHeartRadio of the Bronson and Christine Show?###answer:SELECT iheartradio FROM table_name_74 WHERE show = "bronson and christine"###context:CREATE TABLE table_name_74 (iheartradio VARCHAR, show VARCHAR)
###question:What is the to total number of par with laurie ayton?###answer:SELECT COUNT(to_par) FROM table_name_99 WHERE player = "laurie ayton"###context:CREATE TABLE table_name_99 (to_par VARCHAR, player VARCHAR)
###question:Where is bobby jones (a)?###answer:SELECT place FROM table_name_43 WHERE player = "bobby jones (a)"###context:CREATE TABLE table_name_43 (place VARCHAR, player VARCHAR)
###question:Can you tell me the total number of Top 5 that has the Year smaller than 2009, and the Wins larger than 0?###answer:SELECT COUNT(top_5) FROM table_name_38 WHERE year < 2009 AND wins > 0###context:CREATE TABLE table_name_38 (top_5 VARCHAR, year VARCHAR, wins VARCHAR)
###question:Can you tell me the Wins that has the Starts larger than 1, and the Top 5 of 3?###answer:SELECT wins FROM table_name_19 WHERE starts > 1 AND top_5 = 3###context:CREATE TABLE table_name_19 (wins VARCHAR, starts VARCHAR, top_5 VARCHAR)
###question:Can you tell me the sum of Starts that the Winnings of $139,774, and the Wins smaller than 0?###answer:SELECT SUM(starts) FROM table_name_37 WHERE winnings = "$139,774" AND wins < 0###context:CREATE TABLE table_name_37 (starts INTEGER, winnings VARCHAR, wins VARCHAR)
###question:Who is affiliated with the nickname Ramblers?###answer:SELECT affiliation FROM table_name_53 WHERE nickname = "ramblers"###context:CREATE TABLE table_name_53 (affiliation VARCHAR, nickname VARCHAR)
###question:Who was the Opponent in the match with a Score of 6–3, 6–4?###answer:SELECT opponent FROM table_name_61 WHERE score = "6–3, 6–4"###context:CREATE TABLE table_name_61 (opponent VARCHAR, score VARCHAR)
###question:On what Surface was the match against Malek Jaziri played?###answer:SELECT surface FROM table_name_78 WHERE opponent = "malek jaziri"###context:CREATE TABLE table_name_78 (surface VARCHAR, opponent VARCHAR)
###question:What is the total number of Year(s) Won, when Player is Ed Furgol, and when To Par is greater than 12?###answer:SELECT COUNT(year_s__won) FROM table_name_27 WHERE player = "ed furgol" AND to_par > 12###context:CREATE TABLE table_name_27 (year_s__won VARCHAR, player VARCHAR, to_par VARCHAR)
###question:What is Year(s) Won, when Player is Arnold Palmer?###answer:SELECT year_s__won FROM table_name_91 WHERE player = "arnold palmer"###context:CREATE TABLE table_name_91 (year_s__won VARCHAR, player VARCHAR)
###question:What is Highest Total, when Year(s) Won is before 1959?###answer:SELECT MAX(total) FROM table_name_99 WHERE year_s__won < 1959###context:CREATE TABLE table_name_99 (total INTEGER, year_s__won INTEGER)
###question:What is Player, when Year(s) Won is before 1961, and when To Par is 6?###answer:SELECT player FROM table_name_42 WHERE year_s__won < 1961 AND to_par = 6###context:CREATE TABLE table_name_42 (player VARCHAR, year_s__won VARCHAR, to_par VARCHAR)
###question:What is Finish, when To Par is greater than 6, and when Year(s) Won is before 1961?###answer:SELECT finish FROM table_name_33 WHERE to_par > 6 AND year_s__won < 1961###context:CREATE TABLE table_name_33 (finish VARCHAR, to_par VARCHAR, year_s__won VARCHAR)
###question:What is Top Par, when Country is Sweden?###answer:SELECT to_par FROM table_name_71 WHERE country = "sweden"###context:CREATE TABLE table_name_71 (to_par VARCHAR, country VARCHAR)
###question:What is the highest Money ($), when Top Par is E, and when Player is Ernie Els?###answer:SELECT MAX(money___) AS $__ FROM table_name_35 WHERE to_par = "e" AND player = "ernie els"###context:CREATE TABLE table_name_35 (money___ INTEGER, to_par VARCHAR, player VARCHAR)
###question:What is the sum of Money ($), when Score is 70-71-70-69=280?###answer:SELECT SUM(money___) AS $__ FROM table_name_43 WHERE score = 70 - 71 - 70 - 69 = 280###context:CREATE TABLE table_name_43 (money___ INTEGER, score VARCHAR)
###question:What was the high assist when the high point was Eric Gordon (21)?###answer:SELECT high_assists FROM table_name_35 WHERE high_points = "eric gordon (21)"###context:CREATE TABLE table_name_35 (high_assists VARCHAR, high_points VARCHAR)
###question:What day was the high assist Mike Taylor (5)?###answer:SELECT date FROM table_name_95 WHERE high_assists = "mike taylor (5)"###context:CREATE TABLE table_name_95 (date VARCHAR, high_assists VARCHAR)
###question:What was the record when the high rebound was Deandre Jordan (11)?###answer:SELECT record FROM table_name_63 WHERE high_rebounds = "deandre jordan (11)"###context:CREATE TABLE table_name_63 (record VARCHAR, high_rebounds VARCHAR)
###question:What was the away team when the home was st kilda?###answer:SELECT away_team FROM table_name_34 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_34 (away_team VARCHAR, home_team VARCHAR)
###question:Who was the away team on sunday, 13 february?###answer:SELECT away_team FROM table_name_40 WHERE date = "sunday, 13 february"###context:CREATE TABLE table_name_40 (away_team VARCHAR, date VARCHAR)
###question:Which Week has a Date of december 3, 2001?###answer:SELECT week FROM table_name_56 WHERE date = "december 3, 2001"###context:CREATE TABLE table_name_56 (week VARCHAR, date VARCHAR)
###question:Which Week has a Opponent of tennessee titans?###answer:SELECT week FROM table_name_86 WHERE opponent = "tennessee titans"###context:CREATE TABLE table_name_86 (week VARCHAR, opponent VARCHAR)
###question:What are the years won with a total of 282?###answer:SELECT year_s__won FROM table_name_37 WHERE total = 282###context:CREATE TABLE table_name_37 (year_s__won VARCHAR, total VARCHAR)
###question:What was the date when the against was 3?###answer:SELECT date FROM table_name_35 WHERE against = 3###context:CREATE TABLE table_name_35 (date VARCHAR, against VARCHAR)
###question:What was the Against when the Opposing Team was sheffield wednesday?###answer:SELECT against FROM table_name_24 WHERE opposing_team = "sheffield wednesday"###context:CREATE TABLE table_name_24 (against VARCHAR, opposing_team VARCHAR)
###question:Which round was played in the H Venue on 29 january 1949?###answer:SELECT round FROM table_name_83 WHERE venue = "h" AND date = "29 january 1949"###context:CREATE TABLE table_name_83 (round VARCHAR, venue VARCHAR, date VARCHAR)
###question:What is the total number of Against that were played in the H Venue on 26 february 1949?###answer:SELECT COUNT(against) FROM table_name_59 WHERE venue = "h" AND date = "26 february 1949"###context:CREATE TABLE table_name_59 (against VARCHAR, venue VARCHAR, date VARCHAR)
###question:What was the round for 29 January 1949, when the against was 1?###answer:SELECT round FROM table_name_52 WHERE against = 1 AND date = "29 january 1949"###context:CREATE TABLE table_name_52 (round VARCHAR, against VARCHAR, date VARCHAR)
###question:What is the Result when the Attendance is 1,634?###answer:SELECT result FROM table_name_85 WHERE attendance = "1,634"###context:CREATE TABLE table_name_85 (result VARCHAR, attendance VARCHAR)
###question:On what date was Stuart Potts the Man of the Match?###answer:SELECT date FROM table_name_47 WHERE man_of_the_match = "stuart potts"###context:CREATE TABLE table_name_47 (date VARCHAR, man_of_the_match VARCHAR)
###question:Who was the Opponent when Terry Miles was the Man of the Match?###answer:SELECT opponent FROM table_name_1 WHERE man_of_the_match = "terry miles"###context:CREATE TABLE table_name_1 (opponent VARCHAR, man_of_the_match VARCHAR)
###question:What was the Result of the game dated 21st?###answer:SELECT result FROM table_name_97 WHERE date = "21st"###context:CREATE TABLE table_name_97 (result VARCHAR, date VARCHAR)
###question:Which Venue is listed under the Date of 21st?###answer:SELECT venue FROM table_name_52 WHERE date = "21st"###context:CREATE TABLE table_name_52 (venue VARCHAR, date VARCHAR)
###question:What was the Result on the Date of 25th?###answer:SELECT result FROM table_name_82 WHERE date = "25th"###context:CREATE TABLE table_name_82 (result VARCHAR, date VARCHAR)
###question:What was the rank when the opponent was Wisconsin (played at Wisconsin)?###answer:SELECT rank__number FROM table_name_23 WHERE opponent_number = "at wisconsin"###context:CREATE TABLE table_name_23 (rank__number VARCHAR, opponent_number VARCHAR)
###question:What was the result when they played at Michigan State?###answer:SELECT result FROM table_name_14 WHERE opponent_number = "at michigan state"###context:CREATE TABLE table_name_14 (result VARCHAR, opponent_number VARCHAR)
###question:Who was the opponent when the result was w24-7?###answer:SELECT opponent_number FROM table_name_1 WHERE result = "w24-7"###context:CREATE TABLE table_name_1 (opponent_number VARCHAR, result VARCHAR)
###question:How many were in attendance when they played vs. 12 Stanford?###answer:SELECT attendance FROM table_name_57 WHERE opponent_number = "vs. 12 stanford"###context:CREATE TABLE table_name_57 (attendance VARCHAR, opponent_number VARCHAR)
###question:Which Big (>500ha) has a Micro (10ha) larger than 940, and a Department of potosí, and a Total smaller than 16,240?###answer:SELECT MAX(big__) > 500 AS ha_ FROM table_name_12 WHERE micro__10ha_ > 940 AND department = "potosí" AND total < 16 OFFSET 240###context:CREATE TABLE table_name_12 (big__ INTEGER, tot...
###question:Which Fumb Yds has a Fumb F. of 0, and a Int LG smaller than 0?###answer:SELECT MAX(fumb_yds) FROM table_name_9 WHERE fumb_f = 0 AND int_lg < 0###context:CREATE TABLE table_name_9 (fumb_yds INTEGER, fumb_f VARCHAR, int_lg VARCHAR)
###question:Which Fumb TD has an Int TD of 1, and a Fumb F. smaller than 1?###answer:SELECT MIN(fumb_td) FROM table_name_72 WHERE int_td = 1 AND fumb_f < 1###context:CREATE TABLE table_name_72 (fumb_td INTEGER, int_td VARCHAR, fumb_f VARCHAR)
###question:What is the name of the person whose country is West Indies.###answer:SELECT name FROM table_name_53 WHERE country = "west indies"###context:CREATE TABLE table_name_53 (name VARCHAR, country VARCHAR)
###question:What is the Pananmal Punjabi's date of birth?###answer:SELECT date_of_birth FROM table_name_81 WHERE name = "pananmal punjabi"###context:CREATE TABLE table_name_81 (date_of_birth VARCHAR, name VARCHAR)
###question:Who was the winner after 2011?###answer:SELECT winner FROM table_name_81 WHERE year > 2011###context:CREATE TABLE table_name_81 (winner VARCHAR, year INTEGER)
###question:What was the lowest year for TCU?###answer:SELECT MIN(year) FROM table_name_79 WHERE winner = "tcu"###context:CREATE TABLE table_name_79 (year INTEGER, winner VARCHAR)
###question:What is the score of player bill rogers?###answer:SELECT score FROM table_name_30 WHERE player = "bill rogers"###context:CREATE TABLE table_name_30 (score VARCHAR, player VARCHAR)
###question:What is the country with a t7 place and a 69-68-72=209 score?###answer:SELECT country FROM table_name_70 WHERE place = "t7" AND score = 69 - 68 - 72 = 209###context:CREATE TABLE table_name_70 (country VARCHAR, place VARCHAR, score VARCHAR)
###question:What is the place of player jim thorpe?###answer:SELECT place FROM table_name_60 WHERE player = "jim thorpe"###context:CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR)
###question:What is the place of player chi-chi rodríguez?###answer:SELECT place FROM table_name_41 WHERE player = "chi-chi rodríguez"###context:CREATE TABLE table_name_41 (place VARCHAR, player VARCHAR)
###question:Who is the player with a 69-68-71=208 score?###answer:SELECT player FROM table_name_23 WHERE score = 69 - 68 - 71 = 208###context:CREATE TABLE table_name_23 (player VARCHAR, score VARCHAR)
###question:What state had a title of duke for the royal house of ji?###answer:SELECT state FROM table_name_94 WHERE title = "duke" AND royal_house = "ji"###context:CREATE TABLE table_name_94 (state VARCHAR, title VARCHAR, royal_house VARCHAR)
###question:What state had the name of wu for the royal house of ji?###answer:SELECT state FROM table_name_21 WHERE royal_house = "ji" AND name = "wu"###context:CREATE TABLE table_name_21 (state VARCHAR, royal_house VARCHAR, name VARCHAR)
###question:What was the name listed for the royal house of jiang and a title of duke?###answer:SELECT name FROM table_name_96 WHERE title = "duke" AND royal_house = "jiang"###context:CREATE TABLE table_name_96 (name VARCHAR, title VARCHAR, royal_house VARCHAR)
###question:What was the name when the state was wey?###answer:SELECT name FROM table_name_22 WHERE state = "wey"###context:CREATE TABLE table_name_22 (name VARCHAR, state VARCHAR)
###question:What was the title for the state of qin?###answer:SELECT title FROM table_name_29 WHERE state = "qin"###context:CREATE TABLE table_name_29 (title VARCHAR, state VARCHAR)
###question:What was the state that had the vassal name of li?###answer:SELECT state FROM table_name_8 WHERE name = "li"###context:CREATE TABLE table_name_8 (state VARCHAR, name VARCHAR)
###question:Where was the match held that lasted 3:24?###answer:SELECT location FROM table_name_90 WHERE time = "3:24"###context:CREATE TABLE table_name_90 (location VARCHAR, time VARCHAR)
###question:The match against Mark Hunt had what result?###answer:SELECT res FROM table_name_86 WHERE opponent = "mark hunt"###context:CREATE TABLE table_name_86 (res VARCHAR, opponent VARCHAR)
###question:Who was the match against at the PRIDE 31 event?###answer:SELECT opponent FROM table_name_70 WHERE event = "pride 31"###context:CREATE TABLE table_name_70 (opponent VARCHAR, event VARCHAR)
###question:The match that went 1 round, and had a method of submission (rear-naked choke) had what record?###answer:SELECT record FROM table_name_43 WHERE round = 1 AND method = "submission (rear-naked choke)"###context:CREATE TABLE table_name_43 (record VARCHAR, round VARCHAR, method VARCHAR)
###question:Who is the player with a t7 place?###answer:SELECT player FROM table_name_56 WHERE place = "t7"###context:CREATE TABLE table_name_56 (player VARCHAR, place VARCHAR)
###question:What is the lowest amount of money player jim colbert has?###answer:SELECT MIN(money___) AS $__ FROM table_name_96 WHERE player = "jim colbert"###context:CREATE TABLE table_name_96 (money___ INTEGER, player VARCHAR)
###question:What is the average Enrollment of Dickinson College?###answer:SELECT AVG(enrollment) FROM table_name_41 WHERE institution = "dickinson college"###context:CREATE TABLE table_name_41 (enrollment INTEGER, institution VARCHAR)
###question:Which institution has a nickname of Blue Hens?###answer:SELECT institution FROM table_name_88 WHERE nickname = "blue hens"###context:CREATE TABLE table_name_88 (institution VARCHAR, nickname VARCHAR)
###question:What is the nickname of the college established in 1773?###answer:SELECT nickname FROM table_name_65 WHERE established = 1773###context:CREATE TABLE table_name_65 (nickname VARCHAR, established VARCHAR)
###question:What was the time of round 2 against Taylor Mccorriston?###answer:SELECT time FROM table_name_69 WHERE round = "2" AND opponent = "taylor mccorriston"###context:CREATE TABLE table_name_69 (time VARCHAR, round VARCHAR, opponent VARCHAR)
###question:Who had the high assists against San Antonio?###answer:SELECT high_assists FROM table_name_58 WHERE team = "san antonio"###context:CREATE TABLE table_name_58 (high_assists VARCHAR, team VARCHAR)
###question:What was the number of the game against Charlotte?###answer:SELECT SUM(game) FROM table_name_63 WHERE team = "charlotte"###context:CREATE TABLE table_name_63 (game INTEGER, team VARCHAR)
###question:Which Money has a Score of 70-68-73-68=279?###answer:SELECT MIN(money___) AS $__ FROM table_name_25 WHERE score = 70 - 68 - 73 - 68 = 279###context:CREATE TABLE table_name_25 (money___ INTEGER, score VARCHAR)
###question:Which Score has a To par of +1, and a Player of masashi ozaki?###answer:SELECT score FROM table_name_94 WHERE to_par = "+1" AND player = "masashi ozaki"###context:CREATE TABLE table_name_94 (score VARCHAR, to_par VARCHAR, player VARCHAR)
###question:Which money has a Country of united states, and a Place of t6?###answer:SELECT AVG(money___) AS $__ FROM table_name_23 WHERE country = "united states" AND place = "t6"###context:CREATE TABLE table_name_23 (money___ INTEGER, country VARCHAR, place VARCHAR)
###question:What is the 2004 value for the 2009 Grand slam tournaments?###answer:SELECT 2004 FROM table_name_86 WHERE 2009 = "grand slam tournaments"###context:CREATE TABLE table_name_86 (Id VARCHAR)
###question:What tournament has a 2008 value of A, q1 in 2005, and 1r in 2004?###answer:SELECT tournament FROM table_name_31 WHERE 2008 = "a" AND 2005 = "q1" AND 2004 = "1r"###context:CREATE TABLE table_name_31 (tournament VARCHAR)
###question:What is the 2005 value for the 2010 grand slam tournaments?###answer:SELECT 2005 FROM table_name_37 WHERE 2010 = "grand slam tournaments"###context:CREATE TABLE table_name_37 (Id VARCHAR)
###question:What is the 2003 value for the 2008 grand slam tournaments?###answer:SELECT 2003 FROM table_name_87 WHERE 2008 = "grand slam tournaments"###context:CREATE TABLE table_name_87 (Id VARCHAR)
###question:What is the 2005 value with a q2 in 2011, a q1 in 2012, and 1r in 2003?###answer:SELECT 2005 FROM table_name_48 WHERE 2011 = "q2" AND 2012 = "q1" AND 2003 = "1r"###context:CREATE TABLE table_name_48 (Id VARCHAR)
###question:What is the 2009 value for the 2003 grand slam tournaments?###answer:SELECT 2009 FROM table_name_96 WHERE 2003 = "grand slam tournaments"###context:CREATE TABLE table_name_96 (Id VARCHAR)