question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the most apps that a has a total season and 3 goals?
columns: - name: apps type: INTEGER - name: season type: VARCHAR - name: goals type: VARCHAR table: table_name_22
SELECT MAX(apps) FROM table_name_22 WHERE season = "total" AND goals > 3
How many instances are there of party in the situation where Robert Bauman is the incumbent politician?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_1341690_20
SELECT COUNT(party) FROM table_1341690_20 WHERE incumbent = "Robert Bauman"
Which opponent led to a record of 10-6?
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_94
SELECT opponent FROM table_name_94 WHERE record = "10-6"
What game had the date was it with the final score of 7-23
columns: - name: date type: VARCHAR - name: final_score type: VARCHAR table: table_name_35
SELECT date FROM table_name_35 WHERE final_score = "7-23"
Which Position has a Round larger than 14, and an Overall smaller than 419?
columns: - name: position type: VARCHAR - name: round type: VARCHAR - name: overall type: VARCHAR table: table_name_70
SELECT position FROM table_name_70 WHERE round > 14 AND overall < 419
What was the location when the stolen ends is 12 and shot pct is 77%?
columns: - name: locale type: VARCHAR - name: stolen_ends type: VARCHAR - name: shot_pct type: VARCHAR table: table_1543845_63
SELECT locale FROM table_1543845_63 WHERE stolen_ends = 12 AND shot_pct = "77%"
What was the away team's score at Western Oval?
columns: - name: away_team type: VARCHAR - name: venue type: VARCHAR table: table_name_75
SELECT away_team AS score FROM table_name_75 WHERE venue = "western oval"
Which Game has a November of 29?
columns: - name: game type: INTEGER - name: november type: VARCHAR table: table_name_63
SELECT SUM(game) FROM table_name_63 WHERE november = 29
What was the original title of the Hindi film?
columns: - name: original_title type: VARCHAR - name: language type: VARCHAR table: table_name_88
SELECT original_title FROM table_name_88 WHERE language = "hindi"
What is the winners name at the western open?
columns: - name: winner type: VARCHAR - name: tournament type: VARCHAR table: table_name_23
SELECT winner FROM table_name_23 WHERE tournament = "western open"
Who is the pärnu manager?
columns: - name: manager type: VARCHAR - name: club type: VARCHAR table: table_27409644_1
SELECT manager FROM table_27409644_1 WHERE club = "Pärnu"
What was the result of the Australian Championships?
columns: - name: outcome type: VARCHAR - name: championship type: VARCHAR table: table_2139023_2
SELECT outcome FROM table_2139023_2 WHERE championship = "Australian championships"
What day is south melbourne the away side?
columns: - name: date type: VARCHAR - name: away_team type: VARCHAR table: table_name_21
SELECT date FROM table_name_21 WHERE away_team = "south melbourne"
What is the Date with an Opponent that is flavia pennetta?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_53
SELECT date FROM table_name_53 WHERE opponent = "flavia pennetta"
where cfl team is winnipeg (3) via hamilton what are all the player
columns: - name: player type: VARCHAR - name: cfl_team type: VARCHAR table: table_26996293_2
SELECT player FROM table_26996293_2 WHERE cfl_team = "Winnipeg (3) via Hamilton"
What field is an opponent of cannons and resulted with w 16-11?
columns: - name: field type: VARCHAR - name: opponent type: VARCHAR - name: result type: VARCHAR table: table_name_88
SELECT field FROM table_name_88 WHERE opponent = "cannons" AND result = "w 16-11"
How many ties occurred with a score of 2–2?
columns: - name: tie_no type: VARCHAR - name: score type: VARCHAR table: table_name_83
SELECT tie_no FROM table_name_83 WHERE score = "2–2"
When the final position/round is group stage, when is the last match?
columns: - name: last_match type: VARCHAR - name: final_position___round type: VARCHAR table: table_name_60
SELECT last_match FROM table_name_60 WHERE final_position___round = "group stage"
Name the mountains classification which has a young rider classification of francesco casagrande and integiro classification of not awarded with stage of 2
columns: - name: mountains_classification type: VARCHAR - name: stage type: VARCHAR - name: young_rider_classification type: VARCHAR - name: intergiro_classification type: VARCHAR table: table_name_82
SELECT mountains_classification FROM table_name_82 WHERE young_rider_classification = "francesco casagrande" AND intergiro_classification = "not awarded" AND stage = "2"
What's the record during 1925?
columns: - name: record type: VARCHAR - name: year type: VARCHAR table: table_name_99
SELECT record FROM table_name_99 WHERE year = 1925
What is the team when the high assists was stephen curry (7) and the high points was monta ellis (27)?
columns: - name: team type: VARCHAR - name: high_assists type: VARCHAR - name: high_points type: VARCHAR table: table_27755784_10
SELECT team FROM table_27755784_10 WHERE high_assists = "Stephen Curry (7)" AND high_points = "Monta Ellis (27)"
What competition did they have 1 lost, 3 draws, and played 9 games?
columns: - name: competition type: VARCHAR - name: played type: VARCHAR - name: lost type: VARCHAR - name: drew type: VARCHAR table: table_name_17
SELECT competition FROM table_name_17 WHERE lost = "1" AND drew = "3" AND played = "9"
Competition of u.s championships, and a Event of all around has what average year?
columns: - name: year type: INTEGER - name: competition type: VARCHAR - name: event type: VARCHAR table: table_name_61
SELECT AVG(year) FROM table_name_61 WHERE competition = "u.s championships" AND event = "all around"
What is the smallest total number of medals for rank 11 and more than 0 silver medals?
columns: - name: total type: INTEGER - name: rank type: VARCHAR - name: silver type: VARCHAR table: table_name_25
SELECT MIN(total) FROM table_name_25 WHERE rank = "11" AND silver > 0
Which country has an IATA of gzt?
columns: - name: country type: VARCHAR - name: iata type: VARCHAR table: table_name_70
SELECT country FROM table_name_70 WHERE iata = "gzt"
What was the Maple Leafs' record on game 52?
columns: - name: record type: VARCHAR - name: game type: VARCHAR table: table_name_51
SELECT record FROM table_name_51 WHERE game = 52
What is the 0–100km/h,s for the output of ps (kw; hp) @4000 rpm?
columns: - name: s type: VARCHAR - name: output type: VARCHAR table: table_name_19
SELECT COUNT(0 AS _100km_h), s FROM table_name_19 WHERE output = "ps (kw; hp) @4000 rpm"
Who was the Prato Elector with a faction of Italian?
columns: - name: elector type: VARCHAR - name: faction type: VARCHAR - name: nationality type: VARCHAR table: table_name_51
SELECT elector FROM table_name_51 WHERE faction = "italian" AND nationality = "prato"
What is Melaine Walker's Rank?
columns: - name: rank type: INTEGER - name: name type: VARCHAR table: table_name_78
SELECT SUM(rank) FROM table_name_78 WHERE name = "melaine walker"
When divisional semifinals are the playoffs what is the year?
columns: - name: year type: VARCHAR - name: playoffs type: VARCHAR table: table_1986692_1
SELECT year FROM table_1986692_1 WHERE playoffs = "divisional Semifinals"
What is the Week number on October 5, 2003?
columns: - name: week type: INTEGER - name: date type: VARCHAR table: table_name_93
SELECT MIN(week) FROM table_name_93 WHERE date = "october 5, 2003"
Can you tell me the Score that has the Country of united states, and the To par of 8?
columns: - name: score type: VARCHAR - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_45
SELECT score FROM table_name_45 WHERE country = "united states" AND to_par = 8
How many tries for were there while having 479 points against?
columns: - name: tries_for type: VARCHAR - name: points_against type: VARCHAR table: table_name_38
SELECT tries_for FROM table_name_38 WHERE points_against = "479"
For teams with 22 matches played, a losing bonus of 3, and 45 tries against, what was the number of points against?
columns: - name: points_against type: VARCHAR - name: tries_against type: VARCHAR - name: played type: VARCHAR - name: losing_bonus type: VARCHAR table: table_name_10
SELECT points_against FROM table_name_10 WHERE played = "22" AND losing_bonus = "3" AND tries_against = "45"
Who is the director of the film with the title лепа села лепо горе?
columns: - name: director type: VARCHAR - name: original_title type: VARCHAR table: table_22265716_1
SELECT director FROM table_22265716_1 WHERE original_title = "Лепа села лепо горе"
What is the total number of losses against 1412, and Byes less than 2?
columns: - name: losses type: VARCHAR - name: against type: VARCHAR - name: byes type: VARCHAR table: table_name_4
SELECT COUNT(losses) FROM table_name_4 WHERE against = 1412 AND byes < 2
What is the torque when engine code is N46B20 and power is ps (kw; hp)@6400?
columns: - name: torque type: VARCHAR - name: engine_code type: VARCHAR - name: power type: VARCHAR table: table_name_97
SELECT torque FROM table_name_97 WHERE engine_code = "n46b20" AND power = "ps (kw; hp)@6400"
Which Fighting Spirit has a Name of tsurugamine, and a Technique smaller than 10?
columns: - name: fighting_spirit type: INTEGER - name: name type: VARCHAR - name: technique type: VARCHAR table: table_name_55
SELECT AVG(fighting_spirit) FROM table_name_55 WHERE name = "tsurugamine" AND technique < 10
What is the high grid that has a Time/Retired of +6 laps, and under 69 laps?
columns: - name: grid type: INTEGER - name: time_retired type: VARCHAR - name: laps type: VARCHAR table: table_name_4
SELECT MAX(grid) FROM table_name_4 WHERE time_retired = "+6 laps" AND laps < 69
Who directed what was written by Michael G. Moye & Ron Leavitt & J. Stanford Parker?
columns: - name: directed_by type: VARCHAR - name: written_by type: VARCHAR table: table_2226817_3
SELECT directed_by FROM table_2226817_3 WHERE written_by = "Michael G. Moye & Ron Leavitt & J. Stanford Parker"
What was the outcome on May 18, 2008?
columns: - name: outcome type: VARCHAR - name: date type: VARCHAR table: table_name_55
SELECT outcome FROM table_name_55 WHERE date = "may 18, 2008"
Who was the sponsor for the bill introduced February 28, 2005 with cosponsors less than 200?
columns: - name: sponsor_s_ type: VARCHAR - name: _number_of_cosponsors type: VARCHAR - name: date_introduced type: VARCHAR table: table_name_18
SELECT sponsor_s_ FROM table_name_18 WHERE _number_of_cosponsors < 200 AND date_introduced = "february 28, 2005"
What is the number of years that the event was foil team and took place in Los Angeles?
columns: - name: year type: VARCHAR - name: venue type: VARCHAR - name: event type: VARCHAR table: table_name_77
SELECT COUNT(year) FROM table_name_77 WHERE venue = "los angeles" AND event = "foil team"
What person was played against when the playing surface was hard?
columns: - name: opponent type: VARCHAR - name: surface type: VARCHAR table: table_name_42
SELECT opponent FROM table_name_42 WHERE surface = "hard"
What is the date of the game with a w 105-88 score?
columns: - name: date type: VARCHAR - name: score type: VARCHAR table: table_name_78
SELECT date FROM table_name_78 WHERE score = "w 105-88"
what is а а [a] when гь гь [ɡʲ] is л л [l]?
columns: - name: "\u0430_\u0430_" type: VARCHAR - name: a type: VARCHAR - name: "\u0433\u044C_\u0433\u044C_" type: VARCHAR - name: "\u0261\u02B2" type: VARCHAR table: table_202365_2
SELECT а_а_[a] FROM table_202365_2 WHERE гь_гь_[ɡʲ] = "Л л [l]"
What is the LMS class of trains with numbers 14510-5?
columns: - name: LMS type: VARCHAR - name: lms_nos type: VARCHAR table: table_15412381_5
SELECT LMS AS class FROM table_15412381_5 WHERE lms_nos = "14510-5"
Name the total number of african record
columns: - name: paula_radcliffe___gbr__ type: VARCHAR - name: world_record type: VARCHAR table: table_23619492_3
SELECT COUNT(paula_radcliffe___gbr__) FROM table_23619492_3 WHERE world_record = "African record"
What is the event name with the number 8M?
columns: - name: event type: VARCHAR - name: event__number type: VARCHAR table: table_22050544_4
SELECT event FROM table_22050544_4 WHERE event__number = "8M"
Name the vote for thiago
columns: - name: vote type: VARCHAR - name: eliminated type: VARCHAR table: table_24233848_2
SELECT vote FROM table_24233848_2 WHERE eliminated = "Thiago"
What is the average where the swimsuit is larger than 9.437?
columns: - name: average type: INTEGER - name: swimsuit type: INTEGER table: table_name_24
SELECT MAX(average) FROM table_name_24 WHERE swimsuit > 9.437
What is Draws, when Losses is "Did Not Qualify"?
columns: - name: draws type: VARCHAR - name: losses type: VARCHAR table: table_name_76
SELECT draws FROM table_name_76 WHERE losses = "did not qualify"
Which team is Team 1 with a Team 2 being Sporting CP?
columns: - name: team_1 type: VARCHAR - name: team_2 type: VARCHAR table: table_name_81
SELECT team_1 FROM table_name_81 WHERE team_2 = "sporting cp"
What is the year of the Lotus 25 chassis?
columns: - name: year type: INTEGER - name: chassis type: VARCHAR table: table_name_19
SELECT AVG(year) FROM table_name_19 WHERE chassis = "lotus 25"
Name the rally base for rallye de france alsace
columns: - name: rally_base type: VARCHAR - name: rally_name type: VARCHAR table: table_23385853_1
SELECT rally_base FROM table_23385853_1 WHERE rally_name = "Rallye de France Alsace"
Tell me the class for admiral and hms frobisher
columns: - name: class type: VARCHAR - name: rank type: VARCHAR - name: ship type: VARCHAR table: table_name_35
SELECT class FROM table_name_35 WHERE rank = "admiral" AND ship = "hms frobisher"
When did the manager take over for the manager that left on August 20, 2008?
columns: - name: date_of_replacement type: VARCHAR - name: date_outgoing type: VARCHAR table: table_name_98
SELECT date_of_replacement FROM table_name_98 WHERE date_outgoing = "august 20, 2008"
Which Drew has a Lost larger than 14?
columns: - name: drew type: INTEGER - name: lost type: INTEGER table: table_name_17
SELECT SUM(drew) FROM table_name_17 WHERE lost > 14
What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers?
columns: - name: share type: INTEGER - name: viewers__millions_ type: VARCHAR - name: rating type: VARCHAR - name: rank__timeslot_ type: VARCHAR table: table_name_42
SELECT SUM(share) FROM table_name_42 WHERE rating > 1.2 AND rank__timeslot_ = 3 AND viewers__millions_ = 6.07
What is High Assists, when Date is "March 10"?
columns: - name: high_assists type: VARCHAR - name: date type: VARCHAR table: table_name_93
SELECT high_assists FROM table_name_93 WHERE date = "march 10"
What game number had an attendance of 2813?
columns: - name: _number type: VARCHAR - name: attendance type: VARCHAR table: table_20745754_1
SELECT _number FROM table_20745754_1 WHERE attendance = 2813
What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?
columns: - name: country type: VARCHAR table: table_name_88
SELECT AVG(2002) FROM table_name_88 WHERE country = "peru" AND 2007 > 1 OFFSET 200
Who was awarded mountains classifications when Mikel Nieve was the winner?
columns: - name: mountains_classification type: VARCHAR - name: winner type: VARCHAR table: table_25551880_2
SELECT mountains_classification FROM table_25551880_2 WHERE winner = "Mikel Nieve"
What is the number that is the lowest overall for Round 6?
columns: - name: overall type: INTEGER - name: round type: VARCHAR table: table_name_85
SELECT MIN(overall) FROM table_name_85 WHERE round = 6
What engine was used after 1984?
columns: - name: engine type: VARCHAR - name: year type: INTEGER table: table_name_87
SELECT engine FROM table_name_87 WHERE year > 1984
What is the HDI for 2011 in Tunisia?
columns: - name: hdi__2011_ type: VARCHAR - name: country type: VARCHAR table: table_2155836_1
SELECT hdi__2011_ FROM table_2155836_1 WHERE country = "Tunisia"
What player is 24 years old?
columns: - name: name type: VARCHAR - name: age type: VARCHAR table: table_22810095_9
SELECT name FROM table_22810095_9 WHERE age = 24
What opponent did the Broncos play on November 16?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_93
SELECT opponent FROM table_name_93 WHERE date = "november 16"
Name the last title for club of quilmes
columns: - name: last_title type: VARCHAR - name: club type: VARCHAR table: table_name_36
SELECT last_title FROM table_name_36 WHERE club = "quilmes"
What was the polling percentage in Nov 2008 when it was 1.7% in Aug 2008?
columns: - name: nov_2008 type: VARCHAR - name: aug_2008 type: VARCHAR table: table_23680576_2
SELECT nov_2008 FROM table_23680576_2 WHERE aug_2008 = "1.7%"
What is the Notes of the Frequency with a Format of soft adult contemporary?
columns: - name: notes type: VARCHAR - name: format type: VARCHAR table: table_name_46
SELECT notes FROM table_name_46 WHERE format = "soft adult contemporary"
what is the gp-gs when the receptions is more than 4, long is 55 and avg/g is 151?
columns: - name: gp_gs type: VARCHAR - name: avg_g type: VARCHAR - name: receptions type: VARCHAR - name: long type: VARCHAR table: table_name_44
SELECT gp_gs FROM table_name_44 WHERE receptions > 4 AND long = 55 AND avg_g = 151
What year was Patricia Mcgourty nominated for a Tony award?
columns: - name: year type: VARCHAR - name: nominee type: VARCHAR - name: award type: VARCHAR table: table_name_41
SELECT year FROM table_name_41 WHERE nominee = "patricia mcgourty" AND award = "tony award"
How many Drawn have a Position of 7, and Points larger than 18?
columns: - name: drawn type: VARCHAR - name: position type: VARCHAR - name: points type: VARCHAR table: table_name_70
SELECT COUNT(drawn) FROM table_name_70 WHERE position = 7 AND points > 18
Which characters after 2003 won?
columns: - name: character type: VARCHAR - name: result type: VARCHAR - name: year type: VARCHAR table: table_name_1
SELECT character FROM table_name_1 WHERE result = "won" AND year > 2003
What is the average total of the 0-8 tally?
columns: - name: total type: INTEGER - name: tally type: VARCHAR table: table_name_16
SELECT AVG(total) FROM table_name_16 WHERE tally = "0-8"
What is the most current year signed for separation of † and a separation year of 1997?
columns: - name: year_signed type: INTEGER - name: reason_for_separation type: VARCHAR - name: year_separated type: VARCHAR table: table_name_79
SELECT MAX(year_signed) FROM table_name_79 WHERE reason_for_separation = "†" AND year_separated = "1997"
What is the unit for a submarine type ship from Norway?
columns: - name: unit type: VARCHAR - name: type type: VARCHAR - name: origin type: VARCHAR table: table_name_74
SELECT unit FROM table_name_74 WHERE type = "submarine" AND origin = "norway"
How many bronzes were won by the country with a total higher than 5?
columns: - name: bronze type: INTEGER - name: total type: INTEGER table: table_name_25
SELECT SUM(bronze) FROM table_name_25 WHERE total > 5
What is 1998, when 1992 is "A", and when Tournament is "Hamburg Masters"?
columns: - name: tournament type: VARCHAR table: table_name_7
SELECT 1998 FROM table_name_7 WHERE 1992 = "a" AND tournament = "hamburg masters"
What is the home team's score at brunswick street oval?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_82
SELECT home_team AS score FROM table_name_82 WHERE venue = "brunswick street oval"
What is the Date when Russia was the nation and the venue was madrid , spain?
columns: - name: date type: VARCHAR - name: nation type: VARCHAR - name: venue type: VARCHAR table: table_name_47
SELECT date FROM table_name_47 WHERE nation = "russia" AND venue = "madrid , spain"
What is the 1938 that has N/A for 1948?
columns: - name: Id type: VARCHAR table: table_name_49
SELECT 1938 FROM table_name_49 WHERE 1948 = "n/a"
Which population has a GDP (nominal) of $6.4 billion?
columns: - name: population type: VARCHAR - name: gdp__nominal_ type: VARCHAR table: table_name_63
SELECT population FROM table_name_63 WHERE gdp__nominal_ = "$6.4 billion"
Which Round has a Player of todd fedoruk?
columns: - name: round type: INTEGER - name: player type: VARCHAR table: table_name_28
SELECT SUM(round) FROM table_name_28 WHERE player = "todd fedoruk"
What is the smallest number of losses for a position greater than 2 with 4 points and more than 2 draws?
columns: - name: lost type: INTEGER - name: drawn type: VARCHAR - name: position type: VARCHAR - name: points type: VARCHAR table: table_name_4
SELECT MIN(lost) FROM table_name_4 WHERE position > 2 AND points = 4 AND drawn > 2
What are all the production codes of episodes written by Michael G. Moye?
columns: - name: production_code type: VARCHAR - name: written_by type: VARCHAR table: table_2226817_8
SELECT production_code FROM table_2226817_8 WHERE written_by = "Michael G. Moye"
What is the lowest amount of money a player from South Africa with a to par less than 8 has?
columns: - name: money___ type: INTEGER - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_13
SELECT MIN(money___) AS $__ FROM table_name_13 WHERE country = "south africa" AND to_par < 8
How many people have an Altitude (mslm) larger than 302, and an Area (km 2) of 29.2?
columns: - name: population type: VARCHAR - name: altitude__mslm_ type: VARCHAR - name: area__km_2__ type: VARCHAR table: table_name_41
SELECT COUNT(population) FROM table_name_41 WHERE altitude__mslm_ > 302 AND area__km_2__ = 29.2
Which episode was watched by 7.2 million viewers?
columns: - name: episode type: VARCHAR - name: viewers__in_millions_ type: VARCHAR table: table_2101431_1
SELECT episode FROM table_2101431_1 WHERE viewers__in_millions_ = "7.2"
On which week was the attendance 74303?
columns: - name: week type: INTEGER - name: attendance type: VARCHAR table: table_14958620_1
SELECT MAX(week) FROM table_14958620_1 WHERE attendance = 74303
What is the highest market value in billions of the company with profits of 20.96 billions and 166.99 billions in assets?
columns: - name: market_value__billion_ type: INTEGER - name: profits__billion_$_ type: VARCHAR - name: assets__billion_$_ type: VARCHAR table: table_name_79
SELECT MAX(market_value__billion_) AS $_ FROM table_name_79 WHERE profits__billion_$_ = 20.96 AND assets__billion_$_ > 166.99
What numbered episode had 11.96 million US viewers?
columns: - name: 'no' type: INTEGER - name: us_viewers__million_ type: VARCHAR table: table_26199130_1
SELECT MAX(no) FROM table_26199130_1 WHERE us_viewers__million_ = "11.96"
Which team has a home field at Glenferrie Oval?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_48
SELECT home_team FROM table_name_48 WHERE venue = "glenferrie oval"
What position does Bobby Micho, who was picked later than 186 others, play on the Broncos team?
columns: - name: position type: VARCHAR - name: pick__number type: VARCHAR - name: player type: VARCHAR table: table_name_30
SELECT position FROM table_name_30 WHERE pick__number > 186 AND player = "bobby micho"
Which Tournament has a Date of 22 january 1979?
columns: - name: tournament type: VARCHAR - name: date type: VARCHAR table: table_name_6
SELECT tournament FROM table_name_6 WHERE date = "22 january 1979"
What was the first year that South Korea won gold and Malaysia won bronze?
columns: - name: year type: INTEGER - name: gold type: VARCHAR - name: bronze type: VARCHAR table: table_name_74
SELECT MIN(year) FROM table_name_74 WHERE gold = "south korea" AND bronze = "malaysia"
What general classification has levi leipheimer as points classification?
columns: - name: general_classification type: VARCHAR - name: points_classification type: VARCHAR table: table_name_26
SELECT general_classification FROM table_name_26 WHERE points_classification = "levi leipheimer"
Name the 2009 for wta premier mandatory tournaments
columns: - name: tournament type: VARCHAR table: table_name_99
SELECT 2009 FROM table_name_99 WHERE tournament = "wta premier mandatory tournaments"
Who's the Winning team with a Pole position of robby gordon, and a Date of june 11?
columns: - name: winning_team type: VARCHAR - name: pole_position type: VARCHAR - name: date type: VARCHAR table: table_name_81
SELECT winning_team FROM table_name_81 WHERE pole_position = "robby gordon" AND date = "june 11"