text
stringlengths
114
1.06k
### question: what is the molecules when the percent mass is 1.0? ### answer: SELECT molecules FROM table_name_8 WHERE percent_of_mass = "1.0" ### context: CREATE TABLE table_name_8 (molecules VARCHAR, percent_of_mass VARCHAR)
### question: what is the mol.weight (daltons) when the percent of mass is 1.5? ### answer: SELECT molweight__daltons_ FROM table_name_47 WHERE percent_of_mass = "1.5" ### context: CREATE TABLE table_name_47 (molweight__daltons_ VARCHAR, percent_of_mass VARCHAR)
### question: what is the perfect of mass when the molecules is 1.74e14*? ### answer: SELECT percent_of_mass FROM table_name_58 WHERE molecules = "1.74e14*" ### context: CREATE TABLE table_name_58 (percent_of_mass VARCHAR, molecules VARCHAR)
### question: what is the percent of mass when the mol.weight (daltons) is 1e11? ### answer: SELECT percent_of_mass FROM table_name_21 WHERE molweight__daltons_ = "1e11" ### context: CREATE TABLE table_name_21 (percent_of_mass VARCHAR, molweight__daltons_ VARCHAR)
### question: How many people attended the game when the away team was dynamo kyiv, and a Home team of torpedo zaporizhia? ### answer: SELECT attendance FROM table_name_31 WHERE away_team = "dynamo kyiv" AND home_team = "torpedo zaporizhia" ### context: CREATE TABLE table_name_31 (attendance VARCHAR, away_team VARCHAR, home_team VARCHAR)
### question: What was the round when the home team was chornomorets odessa? ### answer: SELECT round FROM table_name_55 WHERE home_team = "chornomorets odessa" ### context: CREATE TABLE table_name_55 (round VARCHAR, home_team VARCHAR)
### question: What is the rank when the game was at dnipro stadium , kremenchuk? ### answer: SELECT rank FROM table_name_55 WHERE location = "dnipro stadium , kremenchuk" ### context: CREATE TABLE table_name_55 (rank VARCHAR, location VARCHAR)
### question: What are the lowest points for the engines of the Lamborghini v12 and the Chassis on Minardi m191b? ### answer: SELECT MIN(points) FROM table_name_48 WHERE engine = "lamborghini v12" AND chassis = "minardi m191b" ### context: CREATE TABLE table_name_48 (points INTEGER, engine VARCHAR, chassis VARCHAR)
### question: What is the Chassis from before 1997 with a Lamborghini v12 engine? ### answer: SELECT chassis FROM table_name_98 WHERE year < 1997 AND engine = "lamborghini v12" ### context: CREATE TABLE table_name_98 (chassis VARCHAR, year VARCHAR, engine VARCHAR)
### question: What is the total of the year with a point larger than 0 or the Chassis of Minardi m190? ### answer: SELECT SUM(year) FROM table_name_32 WHERE chassis = "minardi m190" AND points > 0 ### context: CREATE TABLE table_name_32 (year INTEGER, chassis VARCHAR, points VARCHAR)
### question: What are the lowest points from 1992 with a Chassis of Minardi m192? ### answer: SELECT MIN(points) FROM table_name_89 WHERE year = 1992 AND chassis = "minardi m192" ### context: CREATE TABLE table_name_89 (points INTEGER, year VARCHAR, chassis VARCHAR)
### question: What Entrant has 0 points and from 1997? ### answer: SELECT entrant FROM table_name_67 WHERE points = 0 AND year = 1997 ### context: CREATE TABLE table_name_67 (entrant VARCHAR, points VARCHAR, year VARCHAR)
### question: What is the total roll with a decile less than 7, and an authority of state, in the Macraes Flat area? ### answer: SELECT COUNT(roll) FROM table_name_98 WHERE decile = 7 AND authority = "state" AND area = "macraes flat" ### context: CREATE TABLE table_name_98 (roll VARCHAR, area VARCHAR, decile VARCHAR, authority VARCHAR)
### question: What year has a decile more than 6, in the Waikouaiti area? ### answer: SELECT years FROM table_name_78 WHERE decile > 6 AND area = "waikouaiti" ### context: CREATE TABLE table_name_78 (years VARCHAR, decile VARCHAR, area VARCHAR)
### question: What place did the Nashville Metros place in the 1994/95 Season? ### answer: SELECT regular_season FROM table_name_64 WHERE year = "1994/95" ### context: CREATE TABLE table_name_64 (regular_season VARCHAR, year VARCHAR)
### question: What years did the Nashville Metros have Usisl Indoor League? ### answer: SELECT year FROM table_name_63 WHERE league = "usisl indoor" ### context: CREATE TABLE table_name_63 (year VARCHAR, league VARCHAR)
### question: Which Round has kim eun-ha as an Opponent? ### answer: SELECT round FROM table_name_37 WHERE opponent = "kim eun-ha" ### context: CREATE TABLE table_name_37 (round VARCHAR, opponent VARCHAR)
### question: Which kind of Edition that has a Surface of clay, and Park Sung-Hee as an opponent? ### answer: SELECT edition FROM table_name_95 WHERE surface = "clay" AND opponent = "park sung-hee" ### context: CREATE TABLE table_name_95 (edition VARCHAR, surface VARCHAR, opponent VARCHAR)
### question: What is the highest gold number count where a county had over 9 golds and 10 silvers? ### answer: SELECT MAX(gold) FROM table_name_87 WHERE total > 9 AND silver > 10 ### context: CREATE TABLE table_name_87 (gold INTEGER, total VARCHAR, silver VARCHAR)
### question: How many bronze medals did the country with 7 medals and over 5 silver medals receive? ### answer: SELECT SUM(bronze) FROM table_name_88 WHERE total = 7 AND silver > 5 ### context: CREATE TABLE table_name_88 (bronze INTEGER, total VARCHAR, silver VARCHAR)
### question: Name the date for venue of lord's ### answer: SELECT date FROM table_name_78 WHERE venue = "lord's" ### context: CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)
### question: Name the result for venue of lord's ### answer: SELECT result FROM table_name_82 WHERE venue = "lord's" ### context: CREATE TABLE table_name_82 (result VARCHAR, venue VARCHAR)
### question: Name the date for result of eng by 23 runs ### answer: SELECT date FROM table_name_24 WHERE result = "eng by 23 runs" ### context: CREATE TABLE table_name_24 (date VARCHAR, result VARCHAR)
### question: Name the date for result of draw, and venue of edgbaston ### answer: SELECT date FROM table_name_37 WHERE result = "draw" AND venue = "edgbaston" ### context: CREATE TABLE table_name_37 (date VARCHAR, result VARCHAR, venue VARCHAR)
### question: What is the total number of weeks that the Seahawks had a record of 5-5? ### answer: SELECT COUNT(week) FROM table_name_73 WHERE record = "5-5" ### context: CREATE TABLE table_name_73 (week VARCHAR, record VARCHAR)
### question: Who has 1 win, 1 loss, and has played 2 matches? ### answer: SELECT name FROM table_name_77 WHERE wins = "1" AND losses = "1" AND matches = "2" ### context: CREATE TABLE table_name_77 (name VARCHAR, matches VARCHAR, wins VARCHAR, losses VARCHAR)
### question: Who has 5 losses and has played 11 matches? ### answer: SELECT name FROM table_name_47 WHERE losses = "5" AND matches = "11" ### context: CREATE TABLE table_name_47 (name VARCHAR, losses VARCHAR, matches VARCHAR)
### question: How many matches has Mohammad Al-Shamlan played when there is 1 win? ### answer: SELECT matches FROM table_name_43 WHERE wins = "1" AND name = "mohammad al-shamlan" ### context: CREATE TABLE table_name_43 (matches VARCHAR, wins VARCHAR, name VARCHAR)
### question: How many matches were played when there was 1 draw and 1 win? ### answer: SELECT matches FROM table_name_92 WHERE draws = "1" AND wins = "1" ### context: CREATE TABLE table_name_92 (matches VARCHAR, draws VARCHAR, wins VARCHAR)
### question: Name the played with lost of 5 ### answer: SELECT played FROM table_name_65 WHERE lost = "5" ### context: CREATE TABLE table_name_65 (played VARCHAR, lost VARCHAR)
### question: Name the played with points against of points against ### answer: SELECT played FROM table_name_95 WHERE points_against = "points against" ### context: CREATE TABLE table_name_95 (played VARCHAR, points_against VARCHAR)
### question: Name the tries with tries against of 38 ### answer: SELECT tries_for FROM table_name_35 WHERE tries_against = "38" ### context: CREATE TABLE table_name_35 (tries_for VARCHAR, tries_against VARCHAR)
### question: Name the points against when tries against is 51 and points is 52 with played of 22 ### answer: SELECT points_against FROM table_name_91 WHERE played = "22" AND points = "52" AND tries_against = "51" ### context: CREATE TABLE table_name_91 (points_against VARCHAR, tries_against VARCHAR, played VARCHAR, points VARCHAR)
### question: Name the points against for cwmllynfell rfc ### answer: SELECT points_against FROM table_name_27 WHERE club = "cwmllynfell rfc" ### context: CREATE TABLE table_name_27 (points_against VARCHAR, club VARCHAR)
### question: What is lead for the Election Results polling firm and has a PSOE of 39.6% 175? ### answer: SELECT lead FROM table_name_8 WHERE polling_firm = "election results" AND psoe = "39.6% 175" ### context: CREATE TABLE table_name_8 (lead VARCHAR, polling_firm VARCHAR, psoe VARCHAR)
### question: What is the PSOE for the Local Elections polling firm? ### answer: SELECT psoe FROM table_name_78 WHERE polling_firm = "local elections" ### context: CREATE TABLE table_name_78 (psoe VARCHAR, polling_firm VARCHAR)
### question: Which date has a PSOE of 36.1%? ### answer: SELECT date FROM table_name_86 WHERE psoe = "36.1%" ### context: CREATE TABLE table_name_86 (date VARCHAR, psoe VARCHAR)
### question: Name the height with 9 floors ### answer: SELECT height_ft___m FROM table_name_80 WHERE floors = 9 ### context: CREATE TABLE table_name_80 (height_ft___m VARCHAR, floors VARCHAR)
### question: Name the years as tallest when floors are larger than 18 ### answer: SELECT years_as_tallest FROM table_name_4 WHERE floors > 18 ### context: CREATE TABLE table_name_4 (years_as_tallest VARCHAR, floors INTEGER)
### question: Tell me the name that has 17 floors ### answer: SELECT name FROM table_name_25 WHERE floors = 17 ### context: CREATE TABLE table_name_25 (name VARCHAR, floors VARCHAR)
### question: Which was the position for overall less than 254, round less than 5 and pick number less than 13? ### answer: SELECT position FROM table_name_64 WHERE overall < 254 AND round < 5 AND pick__number < 13 ### context: CREATE TABLE table_name_64 (position VARCHAR, pick__number VARCHAR, overall VARCHAR, round VARCHAR)
### question: Name the round having an overall of 6 ### answer: SELECT round FROM table_name_84 WHERE overall = 6 ### context: CREATE TABLE table_name_84 (round VARCHAR, overall VARCHAR)
### question: Name the position of the player from college of virginia ### answer: SELECT position FROM table_name_96 WHERE college = "virginia" ### context: CREATE TABLE table_name_96 (position VARCHAR, college VARCHAR)
### question: What was the date of the game that had a goal of 3? ### answer: SELECT date FROM table_name_48 WHERE goal = 3 ### context: CREATE TABLE table_name_48 (date VARCHAR, goal VARCHAR)
### question: What was the date of the game that had a goal of 4? ### answer: SELECT date FROM table_name_58 WHERE goal = 4 ### context: CREATE TABLE table_name_58 (date VARCHAR, goal VARCHAR)
### question: What is the highest rank of a swimmer in lane 5? ### answer: SELECT MAX(rank) FROM table_name_20 WHERE lane = 5 ### context: CREATE TABLE table_name_20 (rank INTEGER, lane VARCHAR)
### question: What is the lowest rank of Jens Kruppa in a lane larger than 2? ### answer: SELECT MIN(rank) FROM table_name_28 WHERE name = "jens kruppa" AND lane > 2 ### context: CREATE TABLE table_name_28 (rank INTEGER, name VARCHAR, lane VARCHAR)
### question: Which nationality has a lane of 6 and a rank smaller than 6? ### answer: SELECT nationality FROM table_name_33 WHERE rank < 6 AND lane = 6 ### context: CREATE TABLE table_name_33 (nationality VARCHAR, rank VARCHAR, lane VARCHAR)
### question: What is Tony Jacklin's total? ### answer: SELECT total FROM table_name_33 WHERE player = "tony jacklin" ### context: CREATE TABLE table_name_33 (total VARCHAR, player VARCHAR)
### question: What was Todd Hamilton's to par? ### answer: SELECT to_par FROM table_name_9 WHERE player = "todd hamilton" ### context: CREATE TABLE table_name_9 (to_par VARCHAR, player VARCHAR)
### question: When was a game won with more than 11 to par? ### answer: SELECT year_s__won FROM table_name_6 WHERE to_par > 11 ### context: CREATE TABLE table_name_6 (year_s__won VARCHAR, to_par INTEGER)
### question: Where is the place that has a Callsign of DWRJ-FM? ### answer: SELECT location FROM table_name_77 WHERE callsign = "dwrj-fm" ### context: CREATE TABLE table_name_77 (location VARCHAR, callsign VARCHAR)
### question: Which Power has Location in metro manila ### answer: SELECT power__kw_ FROM table_name_75 WHERE location = "metro manila" ### context: CREATE TABLE table_name_75 (power__kw_ VARCHAR, location VARCHAR)
### question: Which tier of the tournament has Mont de Marson in it? ### answer: SELECT tier FROM table_name_61 WHERE tournament = "mont de marson" ### context: CREATE TABLE table_name_61 (tier VARCHAR, tournament VARCHAR)
### question: Which date has opponents, Akgul Amanmuradova Nina Bratchikova, in the final? ### answer: SELECT date FROM table_name_65 WHERE opponents_in_the_final = "akgul amanmuradova nina bratchikova" ### context: CREATE TABLE table_name_65 (date VARCHAR, opponents_in_the_final VARCHAR)
### question: Which date has opponents, Claire De Gubernatis Alexandra Dulgheru, in the final? ### answer: SELECT date FROM table_name_20 WHERE opponents_in_the_final = "claire de gubernatis alexandra dulgheru" ### context: CREATE TABLE table_name_20 (date VARCHAR, opponents_in_the_final VARCHAR)
### question: What is the score in the touranament of Antalya-Belek? ### answer: SELECT score FROM table_name_66 WHERE tournament = "antalya-belek" ### context: CREATE TABLE table_name_66 (score VARCHAR, tournament VARCHAR)
### question: Which date has the tier of Itf $10k? ### answer: SELECT date FROM table_name_66 WHERE tier = "itf $10k" ### context: CREATE TABLE table_name_66 (date VARCHAR, tier VARCHAR)
### question: What is the score vs. all when the score vs. Terran is 159? ### answer: SELECT vs_all FROM table_name_72 WHERE vs_terran = "159" ### context: CREATE TABLE table_name_72 (vs_all VARCHAR, vs_terran VARCHAR)
### question: What is the score vs. Protoss when the score vs. Terran is 10 wins? ### answer: SELECT vs_protoss FROM table_name_97 WHERE vs_terran = "10 wins" ### context: CREATE TABLE table_name_97 (vs_protoss VARCHAR, vs_terran VARCHAR)
### question: What is the score vs. Terran when the score vs. Zerg is 69? ### answer: SELECT vs_terran FROM table_name_12 WHERE vs_zerg = "69" ### context: CREATE TABLE table_name_12 (vs_terran VARCHAR, vs_zerg VARCHAR)
### question: What occurrs as of September 1, 2012 when the value for vs. all is 65.47%? ### answer: SELECT as_of_september_1, _2012 FROM table_name_61 WHERE vs_all = "65.47%" ### context: CREATE TABLE table_name_61 (as_of_september_1 VARCHAR, _2012 VARCHAR, vs_all VARCHAR)
### question: What is the record of the opponent that has a bye? ### answer: SELECT record FROM table_name_35 WHERE opponent = "bye" ### context: CREATE TABLE table_name_35 (record VARCHAR, opponent VARCHAR)
### question: What was the average total medals received by Roland Hayes School when there were 0 gold medals? ### answer: SELECT AVG(total_medals) FROM table_name_99 WHERE gold_medals = 0 AND ensemble = "roland hayes school" ### context: CREATE TABLE table_name_99 (total_medals INTEGER, gold_medals VARCHAR, ensemble VARCHAR)
### question: What was the total number of medals received by James Logan High School when it received less than 1 silver medal? ### answer: SELECT COUNT(total_medals) FROM table_name_42 WHERE ensemble = "james logan high school" AND silver_medals < 1 ### context: CREATE TABLE table_name_42 (total_medals VARCHAR, ensemble VARCHAR, silver_medals VARCHAR)
### question: What is the highest number of bronze medals received by an ensemble who received fewer than 0 gold medals? ### answer: SELECT MAX(bronze_medals) FROM table_name_77 WHERE gold_medals < 0 ### context: CREATE TABLE table_name_77 (bronze_medals INTEGER, gold_medals INTEGER)
### question: What was the Score of the 2008 Africa Cup of Nations Competition? ### answer: SELECT score FROM table_name_3 WHERE competition = "2008 africa cup of nations" ### context: CREATE TABLE table_name_3 (score VARCHAR, competition VARCHAR)
### question: Name the most goals with losses less than 15 and position more than 8 with points of 42+4 ### answer: SELECT MAX(goals_for) FROM table_name_18 WHERE losses < 15 AND position > 8 AND points = "42+4" ### context: CREATE TABLE table_name_18 (goals_for INTEGER, points VARCHAR, losses VARCHAR, position VARCHAR)
### question: Name the average goals against for draws of 8 and wins more than 22 with losses less than 12 ### answer: SELECT AVG(goals_against) FROM table_name_92 WHERE draws = 8 AND losses < 12 AND wins > 22 ### context: CREATE TABLE table_name_92 (goals_against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR)
### question: Name the least wins for goal difference being less than -20 with position less than 20 and goals for of 35 ### answer: SELECT MIN(wins) FROM table_name_19 WHERE position < 20 AND goals_for = 35 AND goal_difference < -20 ### context: CREATE TABLE table_name_19 (wins INTEGER, goal_difference VARCHAR, position VARCHAR, goals_for VARCHAR)
### question: Name the average losses for draws larger than 6 and played more than 38 ### answer: SELECT AVG(losses) FROM table_name_58 WHERE draws > 6 AND played > 38 ### context: CREATE TABLE table_name_58 (losses INTEGER, draws VARCHAR, played VARCHAR)
### question: Name the least goals against for played more than 38 ### answer: SELECT MIN(goals_against) FROM table_name_4 WHERE played > 38 ### context: CREATE TABLE table_name_4 (goals_against INTEGER, played INTEGER)
### question: After 1961, who as the Entrant when the engine was a Ferrari v8, and when the points were lower than 23? ### answer: SELECT entrant FROM table_name_64 WHERE year > 1961 AND engine = "ferrari v8" AND points < 23 ### context: CREATE TABLE table_name_64 (entrant VARCHAR, points VARCHAR, year VARCHAR, engine VARCHAR)
### question: What is was the Chassis in 1967? ### answer: SELECT chassis FROM table_name_38 WHERE year = 1967 ### context: CREATE TABLE table_name_38 (chassis VARCHAR, year VARCHAR)
### question: In 1962, what was the total number of points, when the Engine was Ferrari v6? ### answer: SELECT COUNT(points) FROM table_name_97 WHERE engine = "ferrari v6" AND year = 1962 ### context: CREATE TABLE table_name_97 (points VARCHAR, engine VARCHAR, year VARCHAR)
### question: In 1961, what was the Chassis when the points were lower than 6? ### answer: SELECT chassis FROM table_name_51 WHERE points < 6 AND year = 1961 ### context: CREATE TABLE table_name_51 (chassis VARCHAR, points VARCHAR, year VARCHAR)
### question: What was the sum of the years, when the entrant was Scuderia Ferrari, and when the Chassis was Ferrari 312/66? ### answer: SELECT SUM(year) FROM table_name_68 WHERE entrant = "scuderia ferrari" AND chassis = "ferrari 312/66" ### context: CREATE TABLE table_name_68 (year INTEGER, entrant VARCHAR, chassis VARCHAR)
### question: What was the sum of the years, when the entrant was Scuderia Centro Sud, and when there were 6 points? ### answer: SELECT SUM(year) FROM table_name_69 WHERE entrant = "scuderia centro sud" AND points = 6 ### context: CREATE TABLE table_name_69 (year INTEGER, entrant VARCHAR, points VARCHAR)
### question: In the tkkm o manawatu coed school in kelvin grove, what is the Authority listed/ ### answer: SELECT authority FROM table_name_93 WHERE gender = "coed" AND area = "kelvin grove" AND name = "tkkm o manawatu" ### context: CREATE TABLE table_name_93 (authority VARCHAR, name VARCHAR, gender VARCHAR, area VARCHAR)
### question: which Authority has a coed school with a decile greater than 4, with a 150 roll? ### answer: SELECT authority FROM table_name_49 WHERE gender = "coed" AND decile > 4 AND roll = "150" ### context: CREATE TABLE table_name_49 (authority VARCHAR, roll VARCHAR, gender VARCHAR, decile VARCHAR)
### question: Name the language for trotta ### answer: SELECT language FROM table_name_68 WHERE original_title = "trotta" ### context: CREATE TABLE table_name_68 (language VARCHAR, original_title VARCHAR)
### question: Name the original title directed by luis buñuel ### answer: SELECT original_title FROM table_name_85 WHERE director = "luis buñuel" ### context: CREATE TABLE table_name_85 (original_title VARCHAR, director VARCHAR)
### question: Name the original title directed by sudhendu roy ### answer: SELECT original_title FROM table_name_79 WHERE director = "sudhendu roy" ### context: CREATE TABLE table_name_79 (original_title VARCHAR, director VARCHAR)
### question: Name the film title that is spanish from peru ### answer: SELECT film_title_used_in_nomination FROM table_name_78 WHERE language = "spanish" AND country = "peru" ### context: CREATE TABLE table_name_78 (film_title_used_in_nomination VARCHAR, language VARCHAR, country VARCHAR)
### question: Name the langauge for switzerland ### answer: SELECT language FROM table_name_96 WHERE country = "switzerland" ### context: CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR)
### question: What is the Total with 0 Silver and Gold, 1 Bronze and Rank larger than 2? ### answer: SELECT MIN(total) FROM table_name_54 WHERE rank > 2 AND bronze = 1 AND silver > 0 AND gold < 0 ### context: CREATE TABLE table_name_54 (total INTEGER, gold VARCHAR, silver VARCHAR, rank VARCHAR, bronze VARCHAR)
### question: How many Bronze medals were received by the nation that Ranked less than 5 and received more than 2 Gold medals, less than 4 Silver medals with a Total of 9 medals? ### answer: SELECT AVG(bronze) FROM table_name_70 WHERE rank < 5 AND gold > 2 AND total = 9 AND silver < 4 ### context: CREATE TABLE table_name_70 (bronze INTEGER, silver VARCHAR, total VARCHAR, rank VARCHAR, gold VARCHAR)
### question: which order of bat belongs to the family of vespertilionidae and includes the northern long-eared myotis? ### answer: SELECT order FROM table_name_26 WHERE family = "vespertilionidae" AND name = "northern long-eared myotis" ### context: CREATE TABLE table_name_26 (order VARCHAR, family VARCHAR, name VARCHAR)
### question: What year has WSC class? ### answer: SELECT year FROM table_name_42 WHERE class = "wsc" ### context: CREATE TABLE table_name_42 (year VARCHAR, class VARCHAR)
### question: Which race has D. Beadman for the jockey and a 4th place result? ### answer: SELECT race FROM table_name_27 WHERE jockey = "d. beadman" AND result = "4th" ### context: CREATE TABLE table_name_27 (race VARCHAR, jockey VARCHAR, result VARCHAR)
### question: Who is the 1st member in the 1884 by-election? ### answer: SELECT 1 AS st_member FROM table_name_7 WHERE election = "1884 by-election" ### context: CREATE TABLE table_name_7 (election VARCHAR)
### question: What is the 2nd party in the 1874 election? ### answer: SELECT 2 AS nd_party FROM table_name_16 WHERE election = "1874" ### context: CREATE TABLE table_name_16 (election VARCHAR)
### question: Which school had a player who played the C position? ### answer: SELECT school FROM table_name_64 WHERE position = "c" ### context: CREATE TABLE table_name_64 (school VARCHAR, position VARCHAR)
### question: Which game is on the date October 16? ### answer: SELECT AVG(game) FROM table_name_11 WHERE date = "october 16" ### context: CREATE TABLE table_name_11 (game INTEGER, date VARCHAR)
### question: What is the 2009 value with a q1 in 2006 in the French Open? ### answer: SELECT 2009 FROM table_name_75 WHERE 2006 = "q1" AND tournament = "french open" ### context: CREATE TABLE table_name_75 (tournament VARCHAR)
### question: What is the 2010 value with a 2r in 2008 and A in 2013? ### answer: SELECT 2010 FROM table_name_83 WHERE 2008 = "2r" AND 2013 = "a" ### context: CREATE TABLE table_name_83 (Id VARCHAR)
### question: What is the 2007 value with 1r in 2009 in the US Open? ### answer: SELECT 2007 FROM table_name_26 WHERE 2009 = "1r" AND tournament = "us open" ### context: CREATE TABLE table_name_26 (tournament VARCHAR)
### question: What is the 2009 value in the 2011 Grand Slam Tournaments? ### answer: SELECT 2009 FROM table_name_55 WHERE 2011 = "grand slam tournaments" ### context: CREATE TABLE table_name_55 (Id VARCHAR)
### question: What is the 2005 value with 1r in 2013 and q2 in 2011? ### answer: SELECT 2005 FROM table_name_73 WHERE 2013 = "1r" AND 2011 = "q2" ### context: CREATE TABLE table_name_73 (Id VARCHAR)
### question: What is the 2010 value in the Australian Open? ### answer: SELECT 2010 FROM table_name_60 WHERE tournament = "australian open" ### context: CREATE TABLE table_name_60 (tournament VARCHAR)