Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
10,600
<question>: What was the date of the game with a result of bye before week 12? <context>: CREATE TABLE table_name_3 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_3 WHERE week < 12 AND result = "bye"
10,601
<question>: What was the record at the game against the Los Angeles Rams? <context>: CREATE TABLE table_name_25 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_25 WHERE opponent = "los angeles rams"
10,602
<question>: Who is the opponent from September 28? <context>: CREATE TABLE table_name_13 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_13 WHERE date = "september 28"
10,603
<question>: Who was the opponent at the game later than game 22 when the record was 17-10-4? <context>: CREATE TABLE table_name_56 (opponent VARCHAR, game VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_56 WHERE game > 22 AND record = "17-10-4"
10,604
<question>: What were the Opponents of the team, that made it to the third round, before 2008? <context>: CREATE TABLE table_name_95 (opponents VARCHAR, year VARCHAR, progress VARCHAR)
SELECT opponents FROM table_name_95 WHERE year < 2008 AND progress = "third round"
10,605
<question>: What was the score in 1997 for the team that has a Progress of no entrants? <context>: CREATE TABLE table_name_83 (score VARCHAR, progress VARCHAR, year VARCHAR)
SELECT score FROM table_name_83 WHERE progress = "no entrants" AND year = 1997
10,606
<question>: How many Atts that have Yards of 43 and a Long larger than 43? <context>: CREATE TABLE table_name_65 (att INTEGER, yards VARCHAR, long VARCHAR)
SELECT SUM(att) FROM table_name_65 WHERE yards = 43 AND long > 43
10,607
<question>: How many Ints have a Rating smaller than 87, and Yards larger than 4? <context>: CREATE TABLE table_name_19 (int INTEGER, rating VARCHAR, yards VARCHAR)
SELECT AVG(int) FROM table_name_19 WHERE rating < 87 AND yards > 4
10,608
<question>: Which visitor has detroit as the home, and february 24 as the date? <context>: CREATE TABLE table_name_76 (visitor VARCHAR, home VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_76 WHERE home = "detroit" AND date = "february 24"
10,609
<question>: What score has detroit as the home and february 17 as the date? <context>: CREATE TABLE table_name_6 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_6 WHERE home = "detroit" AND date = "february 17"
10,610
<question>: What shows for Scorers when the Opponent was west germany on October 7? <context>: CREATE TABLE table_name_31 (scorers VARCHAR, opponent VARCHAR, date VARCHAR)
SELECT scorers FROM table_name_31 WHERE opponent = "west germany" AND date = "october 7"
10,611
<question>: Who was the director of Battalion Wars 2 which was released on GCN after 2004? <context>: CREATE TABLE table_name_72 (director VARCHAR, title VARCHAR, platform_s_ VARCHAR, year VARCHAR)
SELECT director FROM table_name_72 WHERE platform_s_ = "gcn" AND year > 2004 AND title = "battalion wars 2"
10,612
<question>: What year was Metroid Prime Hunters 5 released? <context>: CREATE TABLE table_name_7 (year INTEGER, title VARCHAR)
SELECT SUM(year) FROM table_name_7 WHERE title = "metroid prime hunters 5"
10,613
<question>: What platform was used for the game directed by Bryan Walker after 2006? <context>: CREATE TABLE table_name_45 (platform_s_ VARCHAR, year VARCHAR, director VARCHAR)
SELECT platform_s_ FROM table_name_45 WHERE year > 2006 AND director = "bryan walker"
10,614
<question>: What 3ds game did Naohiko Aoyama direct? <context>: CREATE TABLE table_name_72 (title VARCHAR, platform_s_ VARCHAR, director VARCHAR)
SELECT title FROM table_name_72 WHERE platform_s_ = "3ds" AND director = "naohiko aoyama"
10,615
<question>: What was the score when the loss was hideo nomo (3–5)? <context>: CREATE TABLE table_name_57 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_57 WHERE loss = "hideo nomo (3–5)"
10,616
<question>: What was the score on may 19? <context>: CREATE TABLE table_name_77 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_77 WHERE date = "may 19"
10,617
<question>: Name of the highest Pick is also a Round greater than 5 and Player as Tom Ivey? <context>: CREATE TABLE table_name_9 (pick INTEGER, round VARCHAR, player VARCHAR)
SELECT MAX(pick) FROM table_name_9 WHERE round > 5 AND player = "tom ivey"
10,618
<question>: What Nationality is the Pick that is 116? <context>: CREATE TABLE table_name_92 (nationality VARCHAR, pick VARCHAR)
SELECT nationality FROM table_name_92 WHERE pick = 116
10,619
<question>: What is the total of Pick with a Position of n/a and Greg Wendt as Player with a Round less than 6? <context>: CREATE TABLE table_name_61 (pick INTEGER, round VARCHAR, position VARCHAR, player VARCHAR)
SELECT SUM(pick) FROM table_name_61 WHERE position = "n/a" AND player = "greg wendt" AND round < 6
10,620
<question>: What was the score at 3:27? <context>: CREATE TABLE table_name_8 (score VARCHAR, time VARCHAR)
SELECT score FROM table_name_8 WHERE time = "3:27"
10,621
<question>: What is the cardinal direction of Monday in English? <context>: CREATE TABLE table_name_84 (cardinal_direction VARCHAR, english VARCHAR)
SELECT cardinal_direction FROM table_name_84 WHERE english = "monday"
10,622
<question>: What is the cardinal direction northwest in English? <context>: CREATE TABLE table_name_31 (english VARCHAR, cardinal_direction VARCHAR)
SELECT english FROM table_name_31 WHERE cardinal_direction = "northwest"
10,623
<question>: What is the sign of Burmese taninganwe တနင်္ဂနွေ? <context>: CREATE TABLE table_name_87 (sign VARCHAR, burmese VARCHAR)
SELECT sign FROM table_name_87 WHERE burmese = "taninganwe တနင်္ဂနွေ"
10,624
<question>: What is the cardinal direction of Wednesday p.m. in English? <context>: CREATE TABLE table_name_90 (cardinal_direction VARCHAR, english VARCHAR)
SELECT cardinal_direction FROM table_name_90 WHERE english = "wednesday p.m."
10,625
<question>: What is the sign of the Burmese taninganwe တနင်္ဂနွေ? <context>: CREATE TABLE table_name_94 (sign VARCHAR, burmese VARCHAR)
SELECT sign FROM table_name_94 WHERE burmese = "taninganwe တနင်္ဂနွေ"
10,626
<question>: On January 5 who was the home team? <context>: CREATE TABLE table_name_68 (home VARCHAR, date VARCHAR)
SELECT home FROM table_name_68 WHERE date = "january 5"
10,627
<question>: What was the Pick Number when the position was wide receiver, the college was Southern Miss with an overall less than 186? <context>: CREATE TABLE table_name_54 (pick__number INTEGER, overall VARCHAR, position VARCHAR, college VARCHAR)
SELECT AVG(pick__number) FROM table_name_54 WHERE position = "wide receiver" AND college = "southern miss" AND overall < 186
10,628
<question>: Let's say position was linebacker with a pick number less than 5, what was the highest round? <context>: CREATE TABLE table_name_61 (round INTEGER, position VARCHAR, pick__number VARCHAR)
SELECT MAX(round) FROM table_name_61 WHERE position = "linebacker" AND pick__number > 5
10,629
<question>: What transfer window has baptista as the name? <context>: CREATE TABLE table_name_44 (transfer_window VARCHAR, name VARCHAR)
SELECT transfer_window FROM table_name_44 WHERE name = "baptista"
10,630
<question>: What country has a loan as the type? <context>: CREATE TABLE table_name_6 (country VARCHAR, type VARCHAR)
SELECT country FROM table_name_6 WHERE type = "loan"
10,631
<question>: What type has song as the name? <context>: CREATE TABLE table_name_7 (type VARCHAR, name VARCHAR)
SELECT type FROM table_name_7 WHERE name = "song"
10,632
<question>: What ends has transferred as the type? <context>: CREATE TABLE table_name_92 (ends VARCHAR, type VARCHAR)
SELECT ends FROM table_name_92 WHERE type = "transferred"
10,633
<question>: What moving has fra as the country? <context>: CREATE TABLE table_name_63 (moving_from VARCHAR, country VARCHAR)
SELECT moving_from FROM table_name_63 WHERE country = "fra"
10,634
<question>: What transfer window has bra as the country, with £3.4m as the transfer fee? <context>: CREATE TABLE table_name_79 (transfer_window VARCHAR, country VARCHAR, transfer_fee VARCHAR)
SELECT transfer_window FROM table_name_79 WHERE country = "bra" AND transfer_fee = "£3.4m"
10,635
<question>: Which Incumbent has a District of massachusetts 2? <context>: CREATE TABLE table_name_62 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_62 WHERE district = "massachusetts 2"
10,636
<question>: Which Incumbent has a District of massachusetts 8? <context>: CREATE TABLE table_name_47 (incumbent VARCHAR, district VARCHAR)
SELECT incumbent FROM table_name_47 WHERE district = "massachusetts 8"
10,637
<question>: Which District has a First elected larger than 1858? <context>: CREATE TABLE table_name_21 (district VARCHAR, first_elected INTEGER)
SELECT district FROM table_name_21 WHERE first_elected > 1858
10,638
<question>: What episode has a manual motorcycle transmissions section D? <context>: CREATE TABLE table_name_20 (episode INTEGER, segment_d VARCHAR)
SELECT SUM(episode) FROM table_name_20 WHERE segment_d = "manual motorcycle transmissions"
10,639
<question>: What segment A is associated with a Segment C of paint chip cards? <context>: CREATE TABLE table_name_31 (segment_a VARCHAR, segment_c VARCHAR)
SELECT segment_a FROM table_name_31 WHERE segment_c = "paint chip cards"
10,640
<question>: What segment A is associated with a Segment D of manual motorcycle transmissions? <context>: CREATE TABLE table_name_76 (segment_a VARCHAR, segment_d VARCHAR)
SELECT segment_a FROM table_name_76 WHERE segment_d = "manual motorcycle transmissions"
10,641
<question>: What is shown for Austria when Croatia shows Ireland? <context>: CREATE TABLE table_name_13 (austria VARCHAR, croatia VARCHAR)
SELECT austria FROM table_name_13 WHERE croatia = "ireland"
10,642
<question>: What is the smallest number for 102 when Friendly of friendly, and an Austria of greece? <context>: CREATE TABLE table_name_78 (austria VARCHAR)
SELECT MIN(102) FROM table_name_78 WHERE "friendly" = "friendly" AND austria = "greece"
10,643
<question>: What is the Losing bonus with an extra try bonus? <context>: CREATE TABLE table_name_89 (losing_bonus VARCHAR, try_bonus VARCHAR)
SELECT losing_bonus FROM table_name_89 WHERE try_bonus = "try bonus"
10,644
<question>: What did the loss come from a Club of mumbles rfc? <context>: CREATE TABLE table_name_92 (lost VARCHAR, club VARCHAR)
SELECT lost FROM table_name_92 WHERE club = "mumbles rfc"
10,645
<question>: Round of 1, and a Record of 10–2 had what method? <context>: CREATE TABLE table_name_88 (method VARCHAR, round VARCHAR, record VARCHAR)
SELECT method FROM table_name_88 WHERE round = "1" AND record = "10–2"
10,646
<question>: Record of 3–1 had what Res? <context>: CREATE TABLE table_name_7 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_7 WHERE record = "3–1"
10,647
<question>: Record of 47–5 (1) involved what res? <context>: CREATE TABLE table_name_49 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_49 WHERE record = "47–5 (1)"
10,648
<question>: Opponent of sergei bondarovich, and a Record of 2–0 had what method? <context>: CREATE TABLE table_name_72 (method VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT method FROM table_name_72 WHERE opponent = "sergei bondarovich" AND record = "2–0"
10,649
<question>: Method of submission (chin in the eye) had what opponent? <context>: CREATE TABLE table_name_93 (opponent VARCHAR, method VARCHAR)
SELECT opponent FROM table_name_93 WHERE method = "submission (chin in the eye)"
10,650
<question>: Opponent of leonardo castello branco had what record? <context>: CREATE TABLE table_name_66 (record VARCHAR, opponent VARCHAR)
SELECT record FROM table_name_66 WHERE opponent = "leonardo castello branco"
10,651
<question>: Who won in mixed doubles in 2008? <context>: CREATE TABLE table_name_53 (mixed_doubles VARCHAR, year VARCHAR)
SELECT mixed_doubles FROM table_name_53 WHERE year = "2008"
10,652
<question>: Who was the opponent in Belgrade and had a result of 5:2? <context>: CREATE TABLE table_name_8 (opponent VARCHAR, city VARCHAR, results¹ VARCHAR)
SELECT opponent FROM table_name_8 WHERE city = "belgrade" AND results¹ = "5:2"
10,653
<question>: On what date was there a friendly game against Wales? <context>: CREATE TABLE table_name_61 (date VARCHAR, type_of_game VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_61 WHERE type_of_game = "friendly" AND opponent = "wales"
10,654
<question>: What were the results against the game against Egypt? <context>: CREATE TABLE table_name_84 (results¹ VARCHAR, opponent VARCHAR)
SELECT results¹ FROM table_name_84 WHERE opponent = "egypt"
10,655
<question>: What were the results against the game against Skoplje? <context>: CREATE TABLE table_name_61 (results¹ VARCHAR, city VARCHAR)
SELECT results¹ FROM table_name_61 WHERE city = "skoplje"
10,656
<question>: What type of game was held against France with the results of 3:1? <context>: CREATE TABLE table_name_20 (type_of_game VARCHAR, results¹ VARCHAR, opponent VARCHAR)
SELECT type_of_game FROM table_name_20 WHERE results¹ = "3:1" AND opponent = "france"
10,657
<question>: Name the 2012 for us open <context>: CREATE TABLE table_name_55 (tournament VARCHAR)
SELECT 2012 FROM table_name_55 WHERE tournament = "us open"
10,658
<question>: Name the 2012 for 2009 of a and 2010 of a and 2011 of a <context>: CREATE TABLE table_name_89 (Id VARCHAR)
SELECT 2012 FROM table_name_89 WHERE 2009 = "a" AND 2010 = "a" AND 2011 = "a"
10,659
<question>: Name the 2012 for us open <context>: CREATE TABLE table_name_36 (tournament VARCHAR)
SELECT 2012 FROM table_name_36 WHERE tournament = "us open"
10,660
<question>: Name the tournament for 2010 of grand slam tournaments <context>: CREATE TABLE table_name_93 (tournament VARCHAR)
SELECT tournament FROM table_name_93 WHERE 2010 = "grand slam tournaments"
10,661
<question>: What is the attendance number for the record of 17-22? <context>: CREATE TABLE table_name_52 (attendance VARCHAR, record VARCHAR)
SELECT attendance FROM table_name_52 WHERE record = "17-22"
10,662
<question>: What is the record when the loss is westbrook (1-6)? <context>: CREATE TABLE table_name_76 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_76 WHERE loss = "westbrook (1-6)"
10,663
<question>: What is the final score of the 1st round game of club Union Luxembourg? <context>: CREATE TABLE table_name_17 (score VARCHAR, round VARCHAR, club VARCHAR)
SELECT score FROM table_name_17 WHERE round = "1st round" AND club = "union luxembourg"
10,664
<question>: Which competition features the 1st round of Club Union Luxembourg? <context>: CREATE TABLE table_name_58 (competition VARCHAR, round VARCHAR, club VARCHAR)
SELECT competition FROM table_name_58 WHERE round = "1st round" AND club = "union luxembourg"
10,665
<question>: Which Competition has a 2nd round score of 1:0, 0:1 (4:3 a.p.)? <context>: CREATE TABLE table_name_71 (competition VARCHAR, round VARCHAR, score VARCHAR)
SELECT competition FROM table_name_71 WHERE round = "2nd round" AND score = "1:0, 0:1 (4:3 a.p.)"
10,666
<question>: What's the final score of the competition that features the club of fk Austria wien? <context>: CREATE TABLE table_name_58 (score VARCHAR, club VARCHAR)
SELECT score FROM table_name_58 WHERE club = "fk austria wien"
10,667
<question>: Which club has a 2nd round score of 1:0, 3:0? <context>: CREATE TABLE table_name_39 (club VARCHAR, round VARCHAR, score VARCHAR)
SELECT club FROM table_name_39 WHERE round = "2nd round" AND score = "1:0, 3:0"
10,668
<question>: What is the mission for switzerland as a resident County? <context>: CREATE TABLE table_name_16 (mission VARCHAR, resident_country VARCHAR)
SELECT mission FROM table_name_16 WHERE resident_country = "switzerland"
10,669
<question>: What is the local mission that has kingstown as a local location? <context>: CREATE TABLE table_name_18 (Local VARCHAR, local_location VARCHAR)
SELECT Local AS mission FROM table_name_18 WHERE local_location = "kingstown"
10,670
<question>: What is the local mission that has ambassador as the local position, and a mission of suriname? <context>: CREATE TABLE table_name_13 (Local VARCHAR, local_position VARCHAR, mission VARCHAR)
SELECT Local AS mission FROM table_name_13 WHERE local_position = "ambassador" AND mission = "suriname"
10,671
<question>: What is the local location that has senegal as the resident county, and a mission of mali? <context>: CREATE TABLE table_name_47 (local_location VARCHAR, resident_country VARCHAR, mission VARCHAR)
SELECT local_location FROM table_name_47 WHERE resident_country = "senegal" AND mission = "mali"
10,672
<question>: What is the local mission that has none as a local location, high commissioner as a local position, fiji as a resident county, and a mission of tonga? <context>: CREATE TABLE table_name_41 (Local VARCHAR, mission VARCHAR, resident_country VARCHAR, local_location VARCHAR, local_position VARCHAR)
SELECT Local AS mission FROM table_name_41 WHERE local_location = "none" AND local_position = "high commissioner" AND resident_country = "fiji" AND mission = "tonga"
10,673
<question>: What is the mission that has ambassador of local position, and a resident country of democratic republic of congo? <context>: CREATE TABLE table_name_35 (mission VARCHAR, local_position VARCHAR, resident_country VARCHAR)
SELECT mission FROM table_name_35 WHERE local_position = "ambassador" AND resident_country = "democratic republic of congo"
10,674
<question>: What position did the player play in the european cross country championships in 2008? <context>: CREATE TABLE table_name_90 (position VARCHAR, competition VARCHAR, year VARCHAR)
SELECT position FROM table_name_90 WHERE competition = "european cross country championships" AND year = 2008
10,675
<question>: What venue hsoted the european cross country championships with a notes of junior men individual 6.595km? <context>: CREATE TABLE table_name_20 (venue VARCHAR, competition VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_20 WHERE competition = "european cross country championships" AND notes = "junior men individual 6.595km"
10,676
<question>: What position did the person finish in with a notes of junior men individual 5.64km? <context>: CREATE TABLE table_name_95 (position VARCHAR, notes VARCHAR)
SELECT position FROM table_name_95 WHERE notes = "junior men individual 5.64km"
10,677
<question>: What venue hosted in 2005 and had a Notes of men individual 9.84km? <context>: CREATE TABLE table_name_83 (venue VARCHAR, year VARCHAR, notes VARCHAR)
SELECT venue FROM table_name_83 WHERE year = 2005 AND notes = "men individual 9.84km"
10,678
<question>: Who was the opponent at the game with a result of w 20-17? <context>: CREATE TABLE table_name_69 (opponent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_69 WHERE result = "w 20-17"
10,679
<question>: What is the total number of weeks with a game at the Milwaukee County Stadium attended by 47,897? <context>: CREATE TABLE table_name_79 (week VARCHAR, venue VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_79 WHERE venue = "milwaukee county stadium" AND attendance = 47 OFFSET 897
10,680
<question>: What is the highest round that had a pick lower than 8? <context>: CREATE TABLE table_name_58 (round INTEGER, pick__number INTEGER)
SELECT MAX(round) FROM table_name_58 WHERE pick__number < 8
10,681
<question>: What title does Overkill have before 1984? <context>: CREATE TABLE table_name_65 (title VARCHAR, artist VARCHAR, year VARCHAR)
SELECT title FROM table_name_65 WHERE artist = "overkill" AND year < 1984
10,682
<question>: What is the Departure time at Kanpur Central Station? <context>: CREATE TABLE table_name_67 (departure VARCHAR, station_name VARCHAR)
SELECT departure FROM table_name_67 WHERE station_name = "kanpur central"
10,683
<question>: What is the Station Name of Platform 5? <context>: CREATE TABLE table_name_32 (station_name VARCHAR, platform VARCHAR)
SELECT station_name FROM table_name_32 WHERE platform = "5"
10,684
<question>: What is the average pick # of the player from round 11? <context>: CREATE TABLE table_name_21 (pick__number INTEGER, round VARCHAR)
SELECT AVG(pick__number) FROM table_name_21 WHERE round = 11
10,685
<question>: What is the overall of the player with a pick # higher than 13? <context>: CREATE TABLE table_name_47 (overall VARCHAR, pick__number INTEGER)
SELECT overall FROM table_name_47 WHERE pick__number < 13
10,686
<question>: what year did naga bonar take place <context>: CREATE TABLE table_name_82 (year__ceremony_ VARCHAR, original_title VARCHAR)
SELECT year__ceremony_ FROM table_name_82 WHERE original_title = "naga bonar"
10,687
<question>: Natural change of 42 689 has which lowest Crude birth rate (per 1000)? <context>: CREATE TABLE table_name_49 (crude_birth_rate__per_1000_ INTEGER, natural_change VARCHAR)
SELECT MIN(crude_birth_rate__per_1000_) FROM table_name_49 WHERE natural_change = "42 689"
10,688
<question>: What is the sum of votes for the green party? <context>: CREATE TABLE table_name_38 (votes__gib_ INTEGER, party VARCHAR)
SELECT SUM(votes__gib_) FROM table_name_38 WHERE party = "green"
10,689
<question>: What is the sum of votes of the party with a % of 0.53 and more than 0 seats? <context>: CREATE TABLE table_name_99 (votes__gib_ INTEGER, _percentage__gib_ VARCHAR, seats VARCHAR)
SELECT SUM(votes__gib_) FROM table_name_99 WHERE _percentage__gib_ = 0.53 AND seats > 0
10,690
<question>: What was the time of the game on April 5? <context>: CREATE TABLE table_name_87 (time VARCHAR, date VARCHAR)
SELECT time FROM table_name_87 WHERE date = "april 5"
10,691
<question>: Which 2011 has a 2010 of 1r, and a 2009 of 1r? <context>: CREATE TABLE table_name_99 (Id VARCHAR)
SELECT 2011 FROM table_name_99 WHERE 2010 = "1r" AND 2009 = "1r"
10,692
<question>: Which Tournament has a 2009 of q1, and a 2008 of 1r? <context>: CREATE TABLE table_name_28 (tournament VARCHAR)
SELECT tournament FROM table_name_28 WHERE 2009 = "q1" AND 2008 = "1r"
10,693
<question>: Which 2008 has a 2009 of A, and a 2010 of A, and a 2012 of 1r, and a Tournament of cincinnati masters? <context>: CREATE TABLE table_name_2 (tournament VARCHAR)
SELECT 2008 FROM table_name_2 WHERE 2009 = "a" AND 2010 = "a" AND 2012 = "1r" AND tournament = "cincinnati masters"
10,694
<question>: Which 2009 has a 2008 of A, and a Tournament of canada masters? <context>: CREATE TABLE table_name_65 (tournament VARCHAR)
SELECT 2009 FROM table_name_65 WHERE 2008 = "a" AND tournament = "canada masters"
10,695
<question>: Which 2008 has a 2009 of A, and a Tournament of cincinnati masters? <context>: CREATE TABLE table_name_39 (tournament VARCHAR)
SELECT 2008 FROM table_name_39 WHERE 2009 = "a" AND tournament = "cincinnati masters"
10,696
<question>: Which 2012 has a 2010 of 0–0? <context>: CREATE TABLE table_name_46 (Id VARCHAR)
SELECT 2012 FROM table_name_46 WHERE 2010 = "0–0"
10,697
<question>: What Date had a Partner of urszula radwańska? <context>: CREATE TABLE table_name_87 (date VARCHAR, partner VARCHAR)
SELECT date FROM table_name_87 WHERE partner = "urszula radwańska"
10,698
<question>: Which Opponent had a Surface of hard, and a Partner of maria elena camerin? <context>: CREATE TABLE table_name_26 (opponent VARCHAR, surface VARCHAR, partner VARCHAR)
SELECT opponent FROM table_name_26 WHERE surface = "hard" AND partner = "maria elena camerin"
10,699
<question>: Which Partner had an Opponent of darija jurak carmen klaschka? <context>: CREATE TABLE table_name_74 (partner VARCHAR, opponent VARCHAR)
SELECT partner FROM table_name_74 WHERE opponent = "darija jurak carmen klaschka"