answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT team FROM table_name_26 WHERE venue = "spartak, mogilev"
What team plays at Spartak, Mogilev?
CREATE TABLE table_name_26 (team VARCHAR, venue VARCHAR)
SELECT MAX(car__number) FROM table_name_40 WHERE sponsor = "post-it / national guard"
What is the highest car number sponsored by Post-It / National Guard?
CREATE TABLE table_name_40 (car__number INTEGER, sponsor VARCHAR)
SELECT 2013 FROM table_name_11 WHERE 2001 = "qf" AND 2011 = "4r"
what is 2013 when 2001 is qf and 2011 is 4r?
CREATE TABLE table_name_11 (Id VARCHAR)
SELECT high_points FROM table_11961582_10 WHERE high_assists = "J. Johnson (7)"
How had the high points when the high assists were from J. Johnson (7)?
CREATE TABLE table_11961582_10 (high_points VARCHAR, high_assists VARCHAR)
SELECT record FROM table_name_60 WHERE date = "april 8"
Which record is dated April 8?
CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR)
SELECT MIN(week) FROM table_name_6 WHERE record = "2-9"
Which Week has a Record of 2-9?
CREATE TABLE table_name_6 (week INTEGER, record VARCHAR)
SELECT MIN(height__m_) FROM table_22705586_1 WHERE date_of_birth = "17/08/75"
Name the height for date of birth being 17/08/75
CREATE TABLE table_22705586_1 (height__m_ INTEGER, date_of_birth VARCHAR)
SELECT country FROM table_name_84 WHERE edition = "20th"
What was the nationality of the winner for the 20th Edition?
CREATE TABLE table_name_84 (country VARCHAR, edition VARCHAR)
SELECT obese_children_and_adolescents FROM table_name_1 WHERE obesity_rank = 48
What's the count for obese children and adolescents ranked 48?
CREATE TABLE table_name_1 (obese_children_and_adolescents VARCHAR, obesity_rank VARCHAR)
SELECT round FROM table_name_37 WHERE position = "pf" AND year = 1996 AND college_high_school_club = "mississippi state"
What is the round of the pf position player from 1996 and the college/high school/club mississippi state?
CREATE TABLE table_name_37 (round VARCHAR, college_high_school_club VARCHAR, position VARCHAR, year VARCHAR)
SELECT COUNT(laps) FROM table_name_45 WHERE rider = "massimo roccoli" AND grid < 4
What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4?
CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR)
SELECT tries_for FROM table_13758945_1 WHERE points = "77"
How many tries where points is 77?
CREATE TABLE table_13758945_1 (tries_for VARCHAR, points VARCHAR)
SELECT parish__prestegjeld_ FROM table_178398_1 WHERE sub_parish__sogn_ = "Fortun"
In what parish is the sub-parish fortun?
CREATE TABLE table_178398_1 (parish__prestegjeld_ VARCHAR, sub_parish__sogn_ VARCHAR)
SELECT freq_currently FROM table_name_86 WHERE frequency = "0 657"
Which freq currently has 0 657?
CREATE TABLE table_name_86 (freq_currently VARCHAR, frequency VARCHAR)
SELECT MAX(drawn) FROM table_name_80 WHERE games < 6
What are the highest number of games drawn for games numbered under 6?
CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER)
SELECT team FROM table_name_74 WHERE drivers = "christian fittipaldi"
Christian Fittipaldi drove in what team?
CREATE TABLE table_name_74 (team VARCHAR, drivers VARCHAR)
SELECT team__number1 FROM table_name_45 WHERE round = "group h"
What is team 1 in group h?
CREATE TABLE table_name_45 (team__number1 VARCHAR, round VARCHAR)
SELECT high_assists FROM table_17355408_5 WHERE game = 29
Name the high assists for 29 game
CREATE TABLE table_17355408_5 (high_assists VARCHAR, game VARCHAR)
SELECT leader_at_the_summit FROM table_name_82 WHERE year < 1956 AND finish = "carcassonne"
Who was the leader at the summit earlier than 1956, when Carcassonne shows for finish?
CREATE TABLE table_name_82 (leader_at_the_summit VARCHAR, year VARCHAR, finish VARCHAR)
SELECT MAX(area_1996_km²) FROM table_name_91 WHERE pop_1999 = "17,510" AND area_2006_km² > 30
Which area 1996 km² has a pop 1999 of 17,510, and an area 2006 km² larger than 30?
CREATE TABLE table_name_91 (area_1996_km² INTEGER, pop_1999 VARCHAR, area_2006_km² VARCHAR)
SELECT COUNT(residence_city) FROM table_198175_2 WHERE english_name = "Province of Viborg and Nyslott"
How many residence cities have an English name of Province of Viborg and Nyslott?
CREATE TABLE table_198175_2 (residence_city VARCHAR, english_name VARCHAR)
SELECT start_source FROM table_name_42 WHERE loan_club = "fulham"
What is the loan start source when the loan club is fulham?
CREATE TABLE table_name_42 (start_source VARCHAR, loan_club VARCHAR)
SELECT name AS origin FROM table_16799784_7 WHERE diameter__km_ = "2,155.0"
what's the name origin of feature of diameter (km) 2,155.0
CREATE TABLE table_16799784_7 (name VARCHAR, diameter__km_ VARCHAR)
SELECT COUNT(crowd) FROM table_name_76 WHERE away_team = "fitzroy"
What was the attendance when Fitzroy played as the away team?
CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_44 WHERE attendance = "bye"
On what date was the attendance a bye?
CREATE TABLE table_name_44 (date VARCHAR, attendance VARCHAR)
SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport"
Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport?
CREATE TABLE table_name_66 (total_cargo__metric_tonnes_ INTEGER, rank VARCHAR, airport VARCHAR)
SELECT opponent FROM table_name_82 WHERE score = "6–5 13"
Who is the opponent with a score of 6–5 13?
CREATE TABLE table_name_82 (opponent VARCHAR, score VARCHAR)
SELECT length FROM table_name_54 WHERE release = 3.6
What was the length of release 3.6?
CREATE TABLE table_name_54 (length VARCHAR, release VARCHAR)
SELECT COUNT(branding) FROM table_14623167_1 WHERE physical = 31
Name the number of branding for 31 physical
CREATE TABLE table_14623167_1 (branding VARCHAR, physical VARCHAR)
SELECT cyrillic_name_other_names FROM table_2562572_9 WHERE population__2011_ = 5414
What is the cyrillic name for the settlement with the population of 5414?
CREATE TABLE table_2562572_9 (cyrillic_name_other_names VARCHAR, population__2011_ VARCHAR)
SELECT position FROM table_name_90 WHERE mls_team = "los angeles galaxy"
Which position is the MLS team, Los Angeles Galaxy in?
CREATE TABLE table_name_90 (position VARCHAR, mls_team VARCHAR)
SELECT away_team FROM table_name_34 WHERE venue = "glenferrie oval"
What away team played at Glenferrie Oval?
CREATE TABLE table_name_34 (away_team VARCHAR, venue VARCHAR)
SELECT SUM(played) FROM table_name_72 WHERE position = 7 AND drawn < 7
How much Played has a Position of 7, and a Drawn smaller than 7?
CREATE TABLE table_name_72 (played INTEGER, position VARCHAR, drawn VARCHAR)
SELECT original_air_date FROM table_10953197_3 WHERE production_code = "2394087"
what are the original air dates with a production code of 2394087
CREATE TABLE table_10953197_3 (original_air_date VARCHAR, production_code VARCHAR)
SELECT name FROM table_name_65 WHERE channel___bkk__ = "29 (uhf)"
What's the name of Channel 29 (UHF)?
CREATE TABLE table_name_65 (name VARCHAR, channel___bkk__ VARCHAR)
SELECT language FROM table_name_55 WHERE content = "tematico" AND package_option = "sky tv" AND television_service = "fox crime"
What language is the Tematico content with a sky tv package, and Fox Crime television service?
CREATE TABLE table_name_55 (language VARCHAR, television_service VARCHAR, content VARCHAR, package_option VARCHAR)
SELECT place FROM table_name_50 WHERE silver = "valeri postoianov ( urs )" AND year > 1969 AND bronze = "alexander gazov ( urs )"
In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?
CREATE TABLE table_name_50 (place VARCHAR, bronze VARCHAR, silver VARCHAR, year VARCHAR)
SELECT start FROM table_name_54 WHERE conv = "0" AND pens = "0" AND tries = "8"
Which Start has a 0 Conv, 0 Pens and 8 Tries?
CREATE TABLE table_name_54 (start VARCHAR, tries VARCHAR, conv VARCHAR, pens VARCHAR)
SELECT artist FROM table_name_50 WHERE place < 3 AND percentage = "38.60%"
What Artist has a Place of 3 or less with a Percentage of 38.60%?
CREATE TABLE table_name_50 (artist VARCHAR, place VARCHAR, percentage VARCHAR)
SELECT original_broadway_performer FROM table_1901751_1 WHERE character = "Colin Craven"
Who is the original broadway performer for the character Colin Craven?
CREATE TABLE table_1901751_1 (original_broadway_performer VARCHAR, character VARCHAR)
SELECT 2 AS nd_round FROM table_name_63 WHERE team_1 = "rc strasbourg (d1)"
What shows for 2nd round when the team 1 was Rc Strasbourg (d1)?
CREATE TABLE table_name_63 (team_1 VARCHAR)
SELECT COUNT(termini) FROM table_11336756_6 WHERE direction = "East West" AND junctions = "none" AND route_name = "SH 202"
How many termini are there that have "east west" listed in their direction section, "none" listed in their junction section, and have a route name of "sh 202"?
CREATE TABLE table_11336756_6 (termini VARCHAR, route_name VARCHAR, direction VARCHAR, junctions VARCHAR)
SELECT title FROM table_27832075_2 WHERE episode__number = "9-10"
What is the title of episode number 9-10?
CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR)
SELECT result FROM table_name_11 WHERE score = "0–0" AND date = "02-jan-64"
Score of 0–0, and a Date of 02-jan-64 had what result?
CREATE TABLE table_name_11 (result VARCHAR, score VARCHAR, date VARCHAR)
SELECT depth FROM table_24518475_1 WHERE time__utc_ = "18:00:22"
What is the depth of the aftershock at 18:00:22?
CREATE TABLE table_24518475_1 (depth VARCHAR, time__utc_ VARCHAR)
SELECT player FROM table_name_62 WHERE country = "ireland"
Which play is from Ireland?
CREATE TABLE table_name_62 (player VARCHAR, country VARCHAR)
SELECT three FROM table_name_83 WHERE date = "16 december 1676"
Name the three for 16 december 1676
CREATE TABLE table_name_83 (three VARCHAR, date VARCHAR)
SELECT language FROM table_19249824_1 WHERE english_translation = "Hello girl"
If the English translation is hello girl, what was the language?
CREATE TABLE table_19249824_1 (language VARCHAR, english_translation VARCHAR)
SELECT name FROM event ORDER BY YEAR DESC LIMIT 1
What is the name of the event that happened in the most recent year?
CREATE TABLE event (name VARCHAR, YEAR VARCHAR)
SELECT most_spoken_language FROM table_name_91 WHERE code > 70403 AND area__km_2__ > 3.79 AND population > 73 OFFSET 283
What is the Most Spoken language in the Place with Code 70403 with an Area (km 2) larger than 3.79 and a Population larger than 73,283?
CREATE TABLE table_name_91 (most_spoken_language VARCHAR, population VARCHAR, code VARCHAR, area__km_2__ VARCHAR)
SELECT COUNT(pick__number) FROM table_name_67 WHERE college = "usc"
How many picks did the College of USC wind up getting?
CREATE TABLE table_name_67 (pick__number VARCHAR, college VARCHAR)
SELECT winning_driver FROM table_name_76 WHERE winning_team = "tpc team qi-meritus" AND round > 8
Who is the driver that one for the winning tpc team qi-meritus that has a round more than 8?
CREATE TABLE table_name_76 (winning_driver VARCHAR, winning_team VARCHAR, round VARCHAR)
SELECT nationality FROM table_name_2 WHERE player = "alexandre jacques"
What is the Nationality for alexandre jacques?
CREATE TABLE table_name_2 (nationality VARCHAR, player VARCHAR)
SELECT MIN(no) FROM table_23014685_1 WHERE area_damaged = "Islamic University campus"
What number missile led to damage to the Islamic University campus?
CREATE TABLE table_23014685_1 (no INTEGER, area_damaged VARCHAR)
SELECT MIN(laps) FROM table_name_34 WHERE qual = "142.744"
What is the lowest laps with a 142.744 qual?
CREATE TABLE table_name_34 (laps INTEGER, qual VARCHAR)
SELECT entered FROM table_14345690_2 WHERE celebrity = "Darren Day"
When did Darren Day enter?
CREATE TABLE table_14345690_2 (entered VARCHAR, celebrity VARCHAR)
SELECT week_5 FROM table_name_65 WHERE week_2 = "brianne bailey"
Who was the girl of the week 3 weeks after brianne bailey in the same month?
CREATE TABLE table_name_65 (week_5 VARCHAR, week_2 VARCHAR)
SELECT domestic_tournament FROM table_name_42 WHERE team = "chennai super kings"
What is the Domestic Tournament with Chennai Super Kings Team?
CREATE TABLE table_name_42 (domestic_tournament VARCHAR, team VARCHAR)
SELECT MIN(draws) FROM table_name_38 WHERE byes < 1
For the teams that had fewer than 1 Byes, what was the lowest number of Draws?
CREATE TABLE table_name_38 (draws INTEGER, byes INTEGER)
SELECT COUNT(votes) FROM table_name_23 WHERE party = "labour"
What is the total number of votes from the Labour Party?
CREATE TABLE table_name_23 (votes VARCHAR, party VARCHAR)
SELECT time_retired FROM table_name_88 WHERE laps > 34 AND grid < 15 AND driver = "damon hill"
What is the Time/Retired with more Laps than 34, a Grid smaller than 15, and Driver Damon Hill?
CREATE TABLE table_name_88 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT departure FROM table_18332845_2 WHERE going_to = "Peterborough East" AND arrival = "12.40"
What is the departure for Peterborough East whose arrival time is 12.40?
CREATE TABLE table_18332845_2 (departure VARCHAR, going_to VARCHAR, arrival VARCHAR)
SELECT COUNT(canadian_viewers__millions_) FROM table_25640730_7 WHERE directed_by = "Yannick Bisson"
If the director is Yannick Bisson, what was the Canadian amount of viewers?
CREATE TABLE table_25640730_7 (canadian_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT COUNT(pop_density___km²_) FROM table_221398_1 WHERE number_in_map = "16"
How many prefectures have a population density of 16 people/kilometers squared?
CREATE TABLE table_221398_1 (pop_density___km²_ VARCHAR, number_in_map VARCHAR)
SELECT AVG(goals_for) FROM table_name_81 WHERE points > 9 AND goals_against < 14 AND goal_difference < 17
What is the average number of goals with more than 9 points, less than 14 goals against, and a goal difference less than 17?
CREATE TABLE table_name_81 (goals_for INTEGER, goal_difference VARCHAR, points VARCHAR, goals_against VARCHAR)
SELECT original_air_date FROM table_14035132_3 WHERE no_in_season = "10b"
When did the episode with season number 10b air for the first time?
CREATE TABLE table_14035132_3 (original_air_date VARCHAR, no_in_season VARCHAR)
SELECT phone_number, email_address FROM Customers WHERE amount_outstanding > 2000
List phone number and email address of customer with more than 2000 outstanding balance.
CREATE TABLE Customers (phone_number VARCHAR, email_address VARCHAR, amount_outstanding INTEGER)
SELECT COUNT(total) FROM table_name_70 WHERE silver < 2 AND bronze < 0
What is the total number of Total when the Silver is less than 2, and a Bronze is less than 0?
CREATE TABLE table_name_70 (total VARCHAR, silver VARCHAR, bronze VARCHAR)
SELECT player_name FROM table_name_75 WHERE pick = "15" AND year_[a_] = 2000
who is the player when the pick is 15 and the year [A] is 2000?
CREATE TABLE table_name_75 (player_name VARCHAR, pick VARCHAR, year_ VARCHAR, a_ VARCHAR)
SELECT AVG(bronze) FROM table_name_29 WHERE nation = "uganda" AND total > 2
What is the average bronze medals of Uganda's swimmers when they earned over 2 medals?
CREATE TABLE table_name_29 (bronze INTEGER, nation VARCHAR, total VARCHAR)
SELECT COUNT(DISTINCT loser_name) FROM matches
Find the number of distinct name of losers.
CREATE TABLE matches (loser_name VARCHAR)
SELECT COUNT(*) FROM Students WHERE NOT student_id IN (SELECT student_id FROM Student_Course_Enrolment)
How many students did not have any course enrollment?
CREATE TABLE Students (student_id VARCHAR); CREATE TABLE Student_Course_Enrolment (student_id VARCHAR)
SELECT MAX(gold) FROM table_name_30 WHERE nation = "canada" AND silver < 7
With less than 7 Silver medals, how many Gold medals did Canada receive?
CREATE TABLE table_name_30 (gold INTEGER, nation VARCHAR, silver VARCHAR)
SELECT original_air_date FROM table_28967275_3 WHERE episode__number = 69
when 69 is the episode number what is the air date?
CREATE TABLE table_28967275_3 (original_air_date VARCHAR, episode__number VARCHAR)
SELECT entrant FROM table_name_41 WHERE year < 1988
Who was the entrant before 1988?
CREATE TABLE table_name_41 (entrant VARCHAR, year INTEGER)
SELECT purse___us$__ FROM table_name_37 WHERE track = "sunland park"
What is the Purse in Sunland Park Track?
CREATE TABLE table_name_37 (purse___us$__ VARCHAR, track VARCHAR)
SELECT COUNT(nasl_years) FROM table_237757_9 WHERE accolades__pre_nasl_ = "Captained England to victory at the 1966 World Cup"
How many years of nasl years did the accolades read "captained england to victory at the 1966 world cup"?
CREATE TABLE table_237757_9 (nasl_years VARCHAR, accolades__pre_nasl_ VARCHAR)
SELECT team_s_ FROM table_26609690_1 WHERE winnings = "$15,785"
Which team had $15,785 in winnings?
CREATE TABLE table_26609690_1 (team_s_ VARCHAR, winnings VARCHAR)
SELECT injured FROM table_name_21 WHERE country = "afghanistan"
What is Injured, when Country is "Afghanistan"?
CREATE TABLE table_name_21 (injured VARCHAR, country VARCHAR)
SELECT position FROM table_name_96 WHERE pick > 94 AND team = "boston patriots"
What was the position of the player picked after 94, by the Boston Patriots?
CREATE TABLE table_name_96 (position VARCHAR, pick VARCHAR, team VARCHAR)
SELECT application_sharing FROM table_name_40 WHERE web_conferencing = "web conferencing"
What is Application Sharing, when Web Conferencing is "Web Conferencing"?
CREATE TABLE table_name_40 (application_sharing VARCHAR, web_conferencing VARCHAR)
SELECT player FROM table_name_68 WHERE hometown = "tampa, florida"
Which player is from Tampa, Florida?
CREATE TABLE table_name_68 (player VARCHAR, hometown VARCHAR)
SELECT score_in_the_final FROM table_26202788_7 WHERE championship = "Miami , United States"
In the championship Miami , United States, what is the score in the final?
CREATE TABLE table_26202788_7 (score_in_the_final VARCHAR, championship VARCHAR)
SELECT label FROM table_name_25 WHERE date = "september 19, 2008" AND region = "germany"
What is the Label of the September 19, 2008 release in Germany?
CREATE TABLE table_name_25 (label VARCHAR, date VARCHAR, region VARCHAR)
SELECT d_48 FROM table_name_27 WHERE d_43 = "plurality ↑"
What is the D48 when D 43 is plurality ↑??
CREATE TABLE table_name_27 (d_48 VARCHAR, d_43 VARCHAR)
SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.reported_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Christop" AND T2.staff_last_name = "Berge" INTERSECT SELECT product_id FROM problems AS T1 JOIN staff AS T2 ON T1.closure_authorised_by_staff_id = T2.staff_id WHERE T2.staff_first_name = "Ashley" AND T2.staff_last_name = "Medhurst"
What are the product ids for the problems reported by Christop Berge with closure authorised by Ashley Medhurst?
CREATE TABLE problems (reported_by_staff_id VARCHAR, closure_authorised_by_staff_id VARCHAR); CREATE TABLE staff (staff_id VARCHAR, staff_first_name VARCHAR, staff_last_name VARCHAR)
SELECT provider FROM table_1773908_3 WHERE up__up_to_kbit_s_ = 1024 AND resale = "yes"
Who are all of the telecom providers for which the upload rate is 1024 kbits and the resale category is yes?
CREATE TABLE table_1773908_3 (provider VARCHAR, up__up_to_kbit_s_ VARCHAR, resale VARCHAR)
SELECT nation FROM table_name_66 WHERE rank > 2 AND total > 1 AND bronze < 3
What is Nation, when Rank is greater than 2, when Total is greater than 1, and when Bronze is less than 3?
CREATE TABLE table_name_66 (nation VARCHAR, bronze VARCHAR, rank VARCHAR, total VARCHAR)
SELECT incumbent FROM table_2668254_22 WHERE candidates = "William Drayton (J)"
Who was the incumbent when the candidate was william drayton (j)?
CREATE TABLE table_2668254_22 (incumbent VARCHAR, candidates VARCHAR)
SELECT Headquarters FROM company WHERE Industry = "Banking" INTERSECT SELECT Headquarters FROM company WHERE Industry = "Oil and gas"
Show the headquarters that have both companies in banking industry and companies in oil and gas industry.
CREATE TABLE company (Headquarters VARCHAR, Industry VARCHAR)
SELECT Birth AS name FROM table_name_34 WHERE end_of_reign = "current"
What is the Birth Name of the Archbishop with a Current End of Reign?
CREATE TABLE table_name_34 (Birth VARCHAR, end_of_reign VARCHAR)
SELECT close_ranged_weapons FROM table_27704991_1 WHERE armor = "Bronze cuirass , Linothorax"
If the armor is bronze cuirass , linothorax, what are the close ranged weapons?
CREATE TABLE table_27704991_1 (close_ranged_weapons VARCHAR, armor VARCHAR)
SELECT template_type_description FROM Ref_template_types WHERE template_type_code = "AD"
What is the template type descriptions for template type code "AD".
CREATE TABLE Ref_template_types (template_type_description VARCHAR, template_type_code VARCHAR)
SELECT distance FROM table_name_3 WHERE course = "vittorio veneto to marina romea"
Name the distance for Course of vittorio veneto to marina romea
CREATE TABLE table_name_3 (distance VARCHAR, course VARCHAR)
SELECT country FROM table_name_6 WHERE to_par < 13 AND player = "wayne grady"
What country has a to par less than 13, with wayne grady as the player?
CREATE TABLE table_name_6 (country VARCHAR, to_par VARCHAR, player VARCHAR)
SELECT date_of_election FROM table_1329532_2 WHERE elected_successor = "Arthur Hodges"
What was the election date for Arthur Hodges?
CREATE TABLE table_1329532_2 (date_of_election VARCHAR, elected_successor VARCHAR)
SELECT broadcast_date FROM table_name_39 WHERE viewership__millions_ = 9.65
What is the broadcast date of the episode with 9.65 million viewers?
CREATE TABLE table_name_39 (broadcast_date VARCHAR, viewership__millions_ VARCHAR)
SELECT opponent FROM table_name_73 WHERE time = "3:00"
Who is the opponent of the 3:00 time?
CREATE TABLE table_name_73 (opponent VARCHAR, time VARCHAR)
SELECT opponent FROM table_22853654_9 WHERE result = "3–6, 4–6, 6–1, 6–7 (7–9)"
Name the opponent for 3–6, 4–6, 6–1, 6–7 (7–9)
CREATE TABLE table_22853654_9 (opponent VARCHAR, result VARCHAR)
SELECT name FROM table_name_3 WHERE stage = "ss11"
What is the Name of the SS11 Stage?
CREATE TABLE table_name_3 (name VARCHAR, stage VARCHAR)