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