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