answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 484 |
|---|---|---|
SELECT present_conference FROM table_name_5 WHERE location = "gainesville, florida" | Which conference does the school from Gainesville, Florida, play in? | CREATE TABLE table_name_5 (present_conference VARCHAR, location VARCHAR) |
SELECT home_team AS score FROM table_name_86 WHERE venue = "princes park" | What was the home team score when the VFL played at Princes Park? | CREATE TABLE table_name_86 (home_team VARCHAR, venue VARCHAR) |
SELECT title FROM table_name_85 WHERE label = "origianal sound entertainment" | Which title has origianal sound entertainment as its label? | CREATE TABLE table_name_85 (title VARCHAR, label VARCHAR) |
SELECT SUM(games) FROM table_name_20 WHERE name = "curtis borchardt" AND rebounds > 274 | Which game did Curtis Borchardt play with more than 274 rebounds? | CREATE TABLE table_name_20 (games INTEGER, name VARCHAR, rebounds VARCHAR) |
SELECT T2.country FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard" | Which country does customer with first name as Carole and last name as Bernhard lived in? | CREATE TABLE Addresses (country VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR) |
SELECT district FROM table_1341663_26 WHERE candidates = "Dick Gephardt (D) 81.9% Lee Buchschacher (R) 18.1%" | Which district has candidates is dick gephardt (d) 81.9% lee buchschacher (r) 18.1%? | CREATE TABLE table_1341663_26 (district VARCHAR, candidates VARCHAR) |
SELECT college FROM table_21321804_5 WHERE player = "Derik Fury" | Derik Fury plays for which college? | CREATE TABLE table_21321804_5 (college VARCHAR, player VARCHAR) |
SELECT round FROM table_name_32 WHERE home_team = "pohang steelers" | What round did the home team Pohang Steelers play? | CREATE TABLE table_name_32 (round VARCHAR, home_team VARCHAR) |
SELECT fielding_team FROM table_name_81 WHERE wicket = "8th" | Who fielded against the 8th wicket? | CREATE TABLE table_name_81 (fielding_team VARCHAR, wicket VARCHAR) |
SELECT name FROM table_name_55 WHERE acquisition_via = "import" AND number > 22 | What is the name of the player acquired via import and larger than 22? | CREATE TABLE table_name_55 (name VARCHAR, acquisition_via VARCHAR, number VARCHAR) |
SELECT nickname FROM table_name_4 WHERE institution = "post university" | Post University has what nickname? | CREATE TABLE table_name_4 (nickname VARCHAR, institution VARCHAR) |
SELECT Memory_in_G, Carrier FROM phone | What are the memories and carriers of phones? | CREATE TABLE phone (Memory_in_G VARCHAR, Carrier VARCHAR) |
SELECT arena FROM table_name_79 WHERE opponent = "@ oilers" AND date = "may 25" | Which Arena has an Opponent of @ oilers, and a Date of may 25? | CREATE TABLE table_name_79 (arena VARCHAR, opponent VARCHAR, date VARCHAR) |
SELECT COUNT(pick__number) FROM table_name_30 WHERE college = "calgary" | What is the total number of picks for Calgary College? | CREATE TABLE table_name_30 (pick__number VARCHAR, college VARCHAR) |
SELECT title FROM Movie WHERE YEAR = (SELECT MAX(YEAR) FROM Movie) | What is the name of the most recent movie? | CREATE TABLE Movie (title VARCHAR, YEAR INTEGER) |
SELECT amount_of_trees, _that_require_replacement FROM table_10342194_3 WHERE district = "Leninsky" | What is the amount of trees, that require replacement when district is leninsky? | CREATE TABLE table_10342194_3 (amount_of_trees VARCHAR, _that_require_replacement VARCHAR, district VARCHAR) |
SELECT points AS won FROM table_20855452_4 WHERE player = "Shahar Pe'er" | How many points did shahar pe'er score? | CREATE TABLE table_20855452_4 (points VARCHAR, player VARCHAR) |
SELECT player FROM table_name_5 WHERE cfl_team = "saskatchewan roughriders" | Which player was drafted by the Saskatchewan Roughriders? | CREATE TABLE table_name_5 (player VARCHAR, cfl_team VARCHAR) |
SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14 | What is the average attendance of the game with 38 opponent and less than 14 Falcons points? | CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR) |
SELECT original_airing FROM table_name_74 WHERE rating < 10.1 AND episode_number_production_number = "96 5-09" | What was the date of airing for episodes with ratings under 10.1 and production number of 96 5-09? | CREATE TABLE table_name_74 (original_airing VARCHAR, rating VARCHAR, episode_number_production_number VARCHAR) |
SELECT title FROM table_2468961_3 WHERE written_by = "Bob Rosenfarb" AND directed_by = "Richard Correll" | What was the title of the episode written by Bob Rosenfarb and directed by Richard Correll? | CREATE TABLE table_2468961_3 (title VARCHAR, written_by VARCHAR, directed_by VARCHAR) |
SELECT MAX(goals_for) FROM table_name_28 WHERE lost = 12 AND played > 34 | Which Goals For has a Lost of 12, and a Played larger than 34? | CREATE TABLE table_name_28 (goals_for INTEGER, lost VARCHAR, played VARCHAR) |
SELECT COUNT(DISTINCT Country) FROM climber | How many distinct countries are the climbers from? | CREATE TABLE climber (Country VARCHAR) |
SELECT AVG(year) FROM table_name_67 WHERE final_position___tour = 54 AND final_position___vuelta > 55 | What is the average year that has a final Tour position of 54 and a final Vuelta position over 55? | CREATE TABLE table_name_67 (year INTEGER, final_position___tour VARCHAR, final_position___vuelta VARCHAR) |
SELECT COUNT(dates) FROM table_1628792_1 WHERE margin_of_victory = "5 strokes" | Name the dates for margin of victory being 5 strokes | CREATE TABLE table_1628792_1 (dates VARCHAR, margin_of_victory VARCHAR) |
SELECT captain FROM table_18461635_1 WHERE county = "Essex" | Who is the captain of the team in Essex county? | CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR) |
SELECT SUM(order) FROM table_name_89 WHERE built = "5/69-6/69" | with build 5/69-6/69 what's the order? | CREATE TABLE table_name_89 (order INTEGER, built VARCHAR) |
SELECT MIN(field_goals__4_points_) FROM table_25711913_14 | What is the least number of field goals scored by a player? | CREATE TABLE table_25711913_14 (field_goals__4_points_ INTEGER) |
SELECT result FROM table_name_78 WHERE date = "december 9, 1962" | What was the result of the match on December 9, 1962? | CREATE TABLE table_name_78 (result VARCHAR, date VARCHAR) |
SELECT home FROM table_name_38 WHERE date = "november 16, 1946" | What is the Home team on November 16, 1946? | CREATE TABLE table_name_38 (home VARCHAR, date VARCHAR) |
SELECT label FROM table_name_26 WHERE album = "cover version vi" | What is the Label when the album shows cover version vi? | CREATE TABLE table_name_26 (label VARCHAR, album VARCHAR) |
SELECT MAX(mintage) FROM table_name_42 WHERE year > 2006 AND theme = "ruby-throated hummingbird" | What is the MIntage after 2006 of the Ruby-Throated Hummingbird Theme coin? | CREATE TABLE table_name_42 (mintage INTEGER, year VARCHAR, theme VARCHAR) |
SELECT Price FROM WINE WHERE YEAR < 2010 | What are the prices of wines produced before the year of 2010? | CREATE TABLE WINE (Price VARCHAR, YEAR INTEGER) |
SELECT MIN(bronze) FROM table_name_35 WHERE silver = 2 AND total = 8 | What is the lowest bronze number when silver shows 2, and the total is 8? | CREATE TABLE table_name_35 (bronze INTEGER, silver VARCHAR, total VARCHAR) |
SELECT venue FROM table_name_72 WHERE year < 2009 AND event = "3000 m" AND competition = "world youth championships" | Which Venue has a Year smaller than 2009, and an Event of 3000 m, and a Competition of world youth championships? | CREATE TABLE table_name_72 (venue VARCHAR, competition VARCHAR, year VARCHAR, event VARCHAR) |
SELECT goals FROM table_name_14 WHERE ends = "30 june 2010" AND since > 2007 | Which Goals have Ends of 30 june 2010, and Since larger than 2007? | CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR) |
SELECT m939_series FROM table_name_95 WHERE wheelbase = "short" AND m809_series = "m817" | Name the M939 series for short wheelbase and M809 series of m817 | CREATE TABLE table_name_95 (m939_series VARCHAR, wheelbase VARCHAR, m809_series VARCHAR) |
SELECT result FROM table_20746062_1 WHERE record = "2-1" | What was the result of the game when they were 2-1? | CREATE TABLE table_20746062_1 (result VARCHAR, record VARCHAR) |
SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966 | Where was the 1966 final played? | CREATE TABLE table_name_12 (finals_venue__surface_ VARCHAR, year VARCHAR) |
SELECT MIN(body_width_mm) FROM table_name_63 WHERE lead_pitch_mm < 0.55 AND part_number = "tsop48" | Which Body Width/mm has a Lead Pitch/mm smaller than 0.55, and a Part Number of tsop48? | CREATE TABLE table_name_63 (body_width_mm INTEGER, lead_pitch_mm VARCHAR, part_number VARCHAR) |
SELECT away_captain FROM table_name_72 WHERE result = "draw" AND venue = "lord's" | What is the Away captain when the Result was draw, and a Venue of lord's? | CREATE TABLE table_name_72 (away_captain VARCHAR, result VARCHAR, venue VARCHAR) |
SELECT T1.FlightNo FROM FLIGHTS AS T1 JOIN AIRLINES AS T2 ON T2.uid = T1.Airline WHERE T2.Airline = "United Airlines" | What are flight numbers of Airline "United Airlines"? | CREATE TABLE AIRLINES (uid VARCHAR, Airline VARCHAR); CREATE TABLE FLIGHTS (FlightNo VARCHAR, Airline VARCHAR) |
SELECT postposition FROM table_name_75 WHERE noun_root__meaning_ = "mshobl- (parent)" | What is Postposition, when Noun Root (Meaning) is "mshobl- (parent)"? | CREATE TABLE table_name_75 (postposition VARCHAR, noun_root__meaning_ VARCHAR) |
SELECT date_premiered__2009_ FROM table_name_40 WHERE contestant_name = "kareena kapoor" | What date premiered (2009) has kareena kapoor as the contestant name? | CREATE TABLE table_name_40 (date_premiered__2009_ VARCHAR, contestant_name VARCHAR) |
SELECT total_poll___percentage_ FROM table_1289762_1 WHERE for___percentage_ = "59,532 (54)" | List all total poll percentages when the for percentage is 59,532 (54). | CREATE TABLE table_1289762_1 (total_poll___percentage_ VARCHAR, for___percentage_ VARCHAR) |
SELECT score FROM table_name_37 WHERE date = "11 february 1996" | Which score happened on 11 february 1996? | CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR) |
SELECT stadium FROM table_name_66 WHERE club = "f.c. igea virtus barcellona" | What's the name of the stadium when the club was F.C. Igea Virtus Barcellona? | CREATE TABLE table_name_66 (stadium VARCHAR, club VARCHAR) |
SELECT MAX(fai_space_flights) FROM table_221315_3 WHERE max_mach = "5.65" | What is the highest number of fai space flights when max mach is 5.65? | CREATE TABLE table_221315_3 (fai_space_flights INTEGER, max_mach VARCHAR) |
SELECT final FROM table_name_66 WHERE team = "united states (usa) usa i" | What is Final, when Team is United States (USA) USA I? | CREATE TABLE table_name_66 (final VARCHAR, team VARCHAR) |
SELECT date FROM table_name_54 WHERE result = "w 26–20" | On what date was the result w 26–20? | CREATE TABLE table_name_54 (date VARCHAR, result 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 MIN(fall_06) FROM table_15055594_6 | What is the lowest number of students from a state during the Fall 06 semester? | CREATE TABLE table_15055594_6 (fall_06 INTEGER) |
SELECT country_territory FROM table_name_15 WHERE imed_avicenna_listed = "both" AND established = 1969 | What country has a medical school established in 1969 with both an IMED and avicenna? | CREATE TABLE table_name_15 (country_territory VARCHAR, imed_avicenna_listed VARCHAR, established VARCHAR) |
SELECT MIN(attendance) FROM table_name_44 WHERE record = "39-44" | What game that had a record of 39-44 had the lowest attendance? | CREATE TABLE table_name_44 (attendance INTEGER, record VARCHAR) |
SELECT name FROM table_name_91 WHERE floors > 31 AND year < 1964 | What is the name of the building that has more than 31 floors and built prior to 1964? | CREATE TABLE table_name_91 (name VARCHAR, floors VARCHAR, year VARCHAR) |
SELECT event FROM table_name_24 WHERE res = "win" AND round = "n/a" AND opponent = "nicolas smith" | Which event is a win by an opponent of Nicolas Smith, with the round marked n/a? | CREATE TABLE table_name_24 (event VARCHAR, opponent VARCHAR, res VARCHAR, round VARCHAR) |
SELECT other FROM table_25200461_9 WHERE city = "Los Gatos" | What is the other is the city is Los Gatos? | CREATE TABLE table_25200461_9 (other VARCHAR, city VARCHAR) |
SELECT years FROM table_name_1 WHERE authority = "state" AND name = "redhill school" | What were the years for Redhill school, authority of state? | CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR) |
SELECT COUNT(district) FROM table_1341423_22 WHERE incumbent = "Bart Stupak" | How many districts have Bart Stupak as the incumbent? | CREATE TABLE table_1341423_22 (district VARCHAR, incumbent VARCHAR) |
SELECT catalogue FROM table_name_86 WHERE song_title = "it's now or never" | What catalogue is the song It's Now or Never? | CREATE TABLE table_name_86 (catalogue VARCHAR, song_title VARCHAR) |
SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23 | What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points? | CREATE TABLE table_name_77 (conceded INTEGER, points VARCHAR, wins VARCHAR, scored VARCHAR) |
SELECT state FROM table_name_53 WHERE region = "mideast" AND city = "seattle" | Which mideast regional state contains the city of Seattle? | CREATE TABLE table_name_53 (state VARCHAR, region VARCHAR, city VARCHAR) |
SELECT total FROM table_name_15 WHERE name = "carl robinson category:articles with hcards" | What is the total when the name is Carl Robinson Category:Articles with hcards? | CREATE TABLE table_name_15 (total VARCHAR, name VARCHAR) |
SELECT streak FROM table_30047613_13 WHERE date = "May 9" | How many games had they won or lost in a row on May 9? | CREATE TABLE table_30047613_13 (streak VARCHAR, date VARCHAR) |
SELECT MIN(stolen_ends) FROM table_29565541_2 WHERE l = 5 | When 5 is the l what is the lowest amount of stolen ends? | CREATE TABLE table_29565541_2 (stolen_ends INTEGER, l VARCHAR) |
SELECT year FROM table_name_31 WHERE winner__female_ = "kim gevaert" AND talent__male_ = "xavier de baerdemaeker" | What year had Kim Gevaert as the female winner and Xavier de Baerdemaeker as the male talent? | CREATE TABLE table_name_31 (year VARCHAR, winner__female_ VARCHAR, talent__male_ VARCHAR) |
SELECT country FROM table_name_39 WHERE player = "adam scott" | Which country does Adam Scott play for? | CREATE TABLE table_name_39 (country VARCHAR, player VARCHAR) |
SELECT oxford_united_career_[b_] FROM table_name_40 WHERE position_[a_] = "forward" AND appearances = 56 | Which OU career [b] had Position [A] as a forward when there were 56 appearances? | CREATE TABLE table_name_40 (oxford_united_career_ VARCHAR, b_ VARCHAR, appearances VARCHAR, position_ VARCHAR, a_ VARCHAR) |
SELECT runner_s__up FROM table_1590652_4 WHERE tournament = "WGC-Accenture Match Play Championship" | Name the runners up for when tournament is wgc-accenture match play championship | CREATE TABLE table_1590652_4 (runner_s__up VARCHAR, tournament VARCHAR) |
SELECT qual FROM table_name_5 WHERE rank = "20" | What is the qual for rank 20? | CREATE TABLE table_name_5 (qual VARCHAR, rank VARCHAR) |
SELECT SUM(silver) FROM table_name_70 WHERE gold < 1 AND rank = "9" AND total < 1 | How many Silvers that has a Gold smaller than 1, and a Rank of 9, and a Total smaller than 1? | CREATE TABLE table_name_70 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR) |
SELECT COUNT(result) FROM table_1341598_22 WHERE incumbent = "James Shannon" | What is the number of results for james shannon? | CREATE TABLE table_1341598_22 (result VARCHAR, incumbent VARCHAR) |
SELECT venue FROM table_name_60 WHERE result = "2-0" AND score = "1 goal" AND competition = "1980 afc asian cup" | What is the venue when the result is 2-0, and the score is 1 goal, and the competition is 1980 afc asian cup? | CREATE TABLE table_name_60 (venue VARCHAR, competition VARCHAR, result VARCHAR, score VARCHAR) |
SELECT school FROM table_name_43 WHERE size < 674 AND county = "19 dubois" AND mascot = "rangers" | What school has a size less than 674, has a county of 19 dubois, and has the rangers as their mascot? | CREATE TABLE table_name_43 (school VARCHAR, mascot VARCHAR, size VARCHAR, county VARCHAR) |
SELECT record FROM table_27756314_7 WHERE date = "December 11" | what is the record for date december 11? | CREATE TABLE table_27756314_7 (record VARCHAR, date VARCHAR) |
SELECT gnu_linux FROM table_name_60 WHERE haiku = "no" AND client = "airdc++" | Which GNU/Linux had no haiku and a client of airdc++? | CREATE TABLE table_name_60 (gnu_linux VARCHAR, haiku VARCHAR, client VARCHAR) |
SELECT date FROM table_name_20 WHERE home_team = "footscray" | What day did Footscray play as the home team? | CREATE TABLE table_name_20 (date VARCHAR, home_team VARCHAR) |
SELECT results FROM table_name_78 WHERE runner_up = "michael demichele" | What were the overall event results when Michael Demichele was runner-up? | CREATE TABLE table_name_78 (results VARCHAR, runner_up VARCHAR) |
SELECT score FROM table_name_84 WHERE opponent = "yuliya ustyuzhanina" | Name the score for yuliya ustyuzhanina | CREATE TABLE table_name_84 (score VARCHAR, opponent VARCHAR) |
SELECT outgoing_manager FROM table_name_16 WHERE replaced_by = "pablo centrone" | Who is the outgoing manager when they were replaced by pablo centrone? | CREATE TABLE table_name_16 (outgoing_manager VARCHAR, replaced_by VARCHAR) |
SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = "5,125,693" | What is the GDP (nominal) with Population of 5,125,693? | CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR) |
SELECT results FROM table_1341423_9 WHERE district = "Florida 14" | How did the election in the Florida 14 district end? | CREATE TABLE table_1341423_9 (results VARCHAR, district VARCHAR) |
SELECT original_air_date FROM table_27720737_1 WHERE us_viewers__million_ = "5.39" | What is the original air date when the u.s. viewers in millions was 5.39? | CREATE TABLE table_27720737_1 (original_air_date VARCHAR, us_viewers__million_ VARCHAR) |
SELECT COUNT(pommel_horse) FROM table_name_16 WHERE rings = 37.461 AND total < 229.507 | How many pommel Horses have Rings of 37.461, and a Total smaller than 229.507? | CREATE TABLE table_name_16 (pommel_horse VARCHAR, rings VARCHAR, total VARCHAR) |
SELECT college_junior_club_team FROM table_name_19 WHERE pick__number = "12" | To which college/junior/club team did the player that was Pick 12 belong? | CREATE TABLE table_name_19 (college_junior_club_team VARCHAR, pick__number VARCHAR) |
SELECT AVG(points) FROM table_name_40 WHERE record = "12–2–4–1" AND november > 22 | Which Points have a Record of 12–2–4–1, and a November larger than 22? | CREATE TABLE table_name_40 (points INTEGER, record VARCHAR, november VARCHAR) |
SELECT sonnet FROM table_3002894_4 WHERE nupowr_117 = "0,4, or 8 MB" | When 0,4, or 8 mb is the nupowr 117 what is the sonnet? | CREATE TABLE table_3002894_4 (sonnet VARCHAR, nupowr_117 VARCHAR) |
SELECT title, director FROM movie WHERE YEAR <= 2000 ORDER BY gross_worldwide DESC LIMIT 1 | What is the title and director for the movie with highest worldwide gross in the year 2000 or before? | CREATE TABLE movie (title VARCHAR, director VARCHAR, YEAR VARCHAR, gross_worldwide VARCHAR) |
SELECT notes FROM table_name_96 WHERE year = 2010 | What is Notes, when Year is "2010"? | CREATE TABLE table_name_96 (notes VARCHAR, year VARCHAR) |
SELECT MAX(year_left) FROM table_name_81 WHERE school = "danville" | What's the highest Year Left for the School of Danville? | CREATE TABLE table_name_81 (year_left INTEGER, school VARCHAR) |
SELECT COUNT(longitude) FROM table_16768245_2 WHERE latitude = "9.9N" | How many longitudes have a latitude of 9.9n? | CREATE TABLE table_16768245_2 (longitude VARCHAR, latitude VARCHAR) |
SELECT COUNT(february) FROM table_name_40 WHERE points = 63 AND score = "1–2" | How many February days have Points of 63 and a Score of 1–2? | CREATE TABLE table_name_40 (february VARCHAR, points VARCHAR, score VARCHAR) |
SELECT time FROM table_name_93 WHERE bike = "ducati 999 f06" AND grid = 15 | What time was there when the bike was Ducati 999 F06 and the grid number was 15? | CREATE TABLE table_name_93 (time VARCHAR, bike VARCHAR, grid VARCHAR) |
SELECT athlete FROM table_name_91 WHERE run_1 > 54.95 AND run_2 = 56.19 | Who is the athlete with a run 1 larger than 54.95 and a 56.19 run 2? | CREATE TABLE table_name_91 (athlete VARCHAR, run_1 VARCHAR, run_2 VARCHAR) |
SELECT time FROM table_name_15 WHERE set_2 = "20–25" AND date = "05 jun" | Which Time has a Set 2 of 20–25, and a Date of 05 jun? | CREATE TABLE table_name_15 (time VARCHAR, set_2 VARCHAR, date VARCHAR) |
SELECT reason_for_change FROM table_2417345_4 WHERE successor = "William Milnes, Jr. (C)" | What was the reason for change when the successor was William Milnes, Jr. (C)? | CREATE TABLE table_2417345_4 (reason_for_change VARCHAR, successor VARCHAR) |
SELECT home_team FROM table_name_39 WHERE venue = "lake oval" | Which team plays at Lake Oval? | CREATE TABLE table_name_39 (home_team VARCHAR, venue VARCHAR) |
SELECT MIN(total) FROM table_name_37 WHERE bronze = 5 AND silver < 1 | Which Total has a Bronze of 5, and a Silver smaller than 1? | CREATE TABLE table_name_37 (total INTEGER, bronze VARCHAR, silver VARCHAR) |
SELECT MIN(attendance) FROM table_14102379_4 WHERE record = "4–6" | what is the minimum attendance with record being 4–6 | CREATE TABLE table_14102379_4 (attendance INTEGER, record VARCHAR) |
SELECT tournament FROM table_name_54 WHERE score = "4–6, 6–3, 7–6(10)" | what game had a score of 4–6, 6–3, 7–6(10)? | CREATE TABLE table_name_54 (tournament VARCHAR, score VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.