answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT COUNT(fa_trophy) FROM table_name_27 WHERE player = "ceri williams" AND total < 19 | CREATE TABLE table_name_27 (fa_trophy VARCHAR, player VARCHAR, total VARCHAR) | How many FA trophies did Ceri Williams get with a smaller total than 19? |
SELECT city FROM table_name_27 WHERE average = 6.85 | CREATE TABLE table_name_27 (city VARCHAR, average VARCHAR) | Which City has an Average of 6.85? |
SELECT MIN(average) FROM table_name_81 WHERE city = "bergen, norway" | CREATE TABLE table_name_81 (average INTEGER, city VARCHAR) | What is the Average of bergen, norway? |
SELECT comprehension_of_danish FROM table_name_48 WHERE average < 6.85 AND comprehension_of_norwegian = "4.13" | CREATE TABLE table_name_48 (comprehension_of_danish VARCHAR, average VARCHAR, comprehension_of_norwegian VARCHAR) | Which Comprehension of Danish has an Average smaller than 6.85, and a Comprehension of Norwegian of 4.13? |
SELECT attendance FROM table_name_38 WHERE date = "november 18, 1990" | CREATE TABLE table_name_38 (attendance VARCHAR, date VARCHAR) | What are the Attendance numbers for november 18, 1990? |
SELECT date FROM table_name_68 WHERE week > 7 AND record = "9–1" | CREATE TABLE table_name_68 (date VARCHAR, week VARCHAR, record VARCHAR) | What is the Date for a week higher than 7 with a record of 9–1? |
SELECT AVG(week) FROM table_name_26 WHERE date = "november 12, 1989" | CREATE TABLE table_name_26 (week INTEGER, date VARCHAR) | What is the average week of a game on November 12, 1989? |
SELECT set_5 FROM table_name_15 WHERE set_3 = "25-23" AND set_4 = "23-25" | CREATE TABLE table_name_15 (set_5 VARCHAR, set_3 VARCHAR, set_4 VARCHAR) | What is the Set 5 with a Set 3 that is 25-23 and a Set 4 that is 23-25? |
SELECT SUM(game) FROM table_name_24 WHERE set_4 = "25-21" AND set_3 = "25-23" | CREATE TABLE table_name_24 (game INTEGER, set_4 VARCHAR, set_3 VARCHAR) | What is the sum of the Game with a Set 4 of 25-21 and a Set 3 of 25-23? |
SELECT set_5 FROM table_name_9 WHERE game = 59 | CREATE TABLE table_name_9 (set_5 VARCHAR, game VARCHAR) | What is the Set 5 with a Game that is 59? |
SELECT nation FROM table_name_37 WHERE competition = "preseason" AND year < 2011 AND club = "chivas de guadalajara" | CREATE TABLE table_name_37 (nation VARCHAR, club VARCHAR, competition VARCHAR, year VARCHAR) | What shows for nation when the Competition is preseason, Year less than 2011, and a Club of chivas de guadalajara? |
SELECT result FROM table_name_11 WHERE club = "club universidad de guadalajara" | CREATE TABLE table_name_11 (result VARCHAR, club VARCHAR) | What was the Result for the club universidad de guadalajara? |
SELECT nation FROM table_name_48 WHERE year = 2012 AND competition = "preseason" AND result = "w 0–3" | CREATE TABLE table_name_48 (nation VARCHAR, result VARCHAR, year VARCHAR, competition VARCHAR) | What is the Nation with 2012 as the year, and a Competition of preseason, and a Result of w 0–3? |
SELECT AVG(year) FROM table_name_28 WHERE competition = "friendly" AND club = "everton" | CREATE TABLE table_name_28 (year INTEGER, competition VARCHAR, club VARCHAR) | What is the average Year when the Competition was friendly, and a Club of everton? |
SELECT competition FROM table_name_94 WHERE club = "costa rica u-20" | CREATE TABLE table_name_94 (competition VARCHAR, club VARCHAR) | What is the Competition when the Club was costa rica u-20? |
SELECT club FROM table_name_8 WHERE nation = "mexico" AND year = 2010 AND competition = "preseason" AND result = "w 0–1" | CREATE TABLE table_name_8 (club VARCHAR, result VARCHAR, competition VARCHAR, nation VARCHAR, year VARCHAR) | What is the Club of mexico, Year of 2010, and a Competition of preseason, and a Result of w 0–1? |
SELECT MIN(total) FROM table_name_23 WHERE nation = "sweden" | CREATE TABLE table_name_23 (total INTEGER, nation VARCHAR) | What is the lowest total when the nation is Sweden? |
SELECT AVG(total) FROM table_name_12 WHERE silver < 1 AND rank = "15" | CREATE TABLE table_name_12 (total INTEGER, silver VARCHAR, rank VARCHAR) | What is the average Total when silver is less than 1, and the rank is 15? |
SELECT COUNT(bronze) FROM table_name_8 WHERE rank = "11" AND total < 1 | CREATE TABLE table_name_8 (bronze VARCHAR, rank VARCHAR, total VARCHAR) | What is the total number of Bronze when rank is 11, and the total is less than 1? |
SELECT MAX(year) FROM table_name_18 WHERE director = "no" | CREATE TABLE table_name_18 (year INTEGER, director VARCHAR) | What year is the latest year that has no under director? |
SELECT director FROM table_name_77 WHERE year = 2014 AND writer = "yes" | CREATE TABLE table_name_77 (director VARCHAR, year VARCHAR, writer VARCHAR) | With yes under writer and in 2014, what is the director? |
SELECT writer FROM table_name_14 WHERE film = "run" | CREATE TABLE table_name_14 (writer VARCHAR, film VARCHAR) | Who is the writer of the film Run? |
SELECT MAX(goals) FROM table_name_94 WHERE matches < 208 AND rank > 12 | CREATE TABLE table_name_94 (goals INTEGER, matches VARCHAR, rank VARCHAR) | What is the most goals made for a person with less than 208 matches and ranked lower than 12? |
SELECT years FROM table_name_63 WHERE matches > 158 AND rank > 9 AND goals < 84 | CREATE TABLE table_name_63 (years VARCHAR, goals VARCHAR, matches VARCHAR, rank VARCHAR) | In what years was there a rank lower than 9, under 84 goals, and more than 158 matches? |
SELECT hdtv FROM table_name_12 WHERE television_service = "r-light" | CREATE TABLE table_name_12 (hdtv VARCHAR, television_service VARCHAR) | What is the HDTV status of the r-light television service? |
SELECT television_service FROM table_name_41 WHERE content = "programmi per adulti 24h/24" AND hdtv = "no" | CREATE TABLE table_name_41 (television_service VARCHAR, content VARCHAR, hdtv VARCHAR) | Which television service has programmi per adulti 24h/24 content and no HDTV? |
SELECT television_service FROM table_name_27 WHERE package_option = "qualsiasi" | CREATE TABLE table_name_27 (television_service VARCHAR, package_option VARCHAR) | Which television service has a qualsiasi package/option? |
SELECT COUNT(wins) FROM table_name_96 WHERE ballarat_fl = "darley" AND against > 1055 | CREATE TABLE table_name_96 (wins VARCHAR, ballarat_fl VARCHAR, against VARCHAR) | What is the total number of wins for Darley of Ballarat FL against larger than 1055? |
SELECT MIN(draws) FROM table_name_4 WHERE wins < 4 AND losses = 14 AND against > 1836 | CREATE TABLE table_name_4 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR) | What is the lowest draw that has less than 4 wins, 14 losses, and against more than 1836? |
SELECT AVG(byes) FROM table_name_70 WHERE ballarat_fl = "sunbury" AND against > 1167 | CREATE TABLE table_name_70 (byes INTEGER, ballarat_fl VARCHAR, against VARCHAR) | What is the average Byes that has Ballarat FL of Sunbury against more than 1167? |
SELECT AVG(draws) FROM table_name_17 WHERE wins > 1 AND losses = 14 AND against < 1836 | CREATE TABLE table_name_17 (draws INTEGER, against VARCHAR, wins VARCHAR, losses VARCHAR) | What is the average draws with more than 1 win, 14 losses, and against less than 1836? |
SELECT MIN(draws) FROM table_name_94 WHERE ballarat_fl = "sunbury" AND byes > 2 | CREATE TABLE table_name_94 (draws INTEGER, ballarat_fl VARCHAR, byes VARCHAR) | What was the lowest draw from Ballarat FL of sunbury, and byes larger than 2? |
SELECT away FROM table_name_41 WHERE club = "apoel" | CREATE TABLE table_name_41 (away VARCHAR, club VARCHAR) | Which away has apoel as the club? |
SELECT away FROM table_name_6 WHERE competition = "uefa cup" AND round = "group f" AND club = "espanyol" | CREATE TABLE table_name_6 (away VARCHAR, club VARCHAR, competition VARCHAR, round VARCHAR) | Which away has uefa cup as the competition, group f as the round, with espanyol as the club? |
SELECT location FROM table_name_12 WHERE fatalities = "unknown" AND aircraft = "ju-52" | CREATE TABLE table_name_12 (location VARCHAR, fatalities VARCHAR, aircraft VARCHAR) | In what location were the fatalities unknown for the Ju-52 aircraft? |
SELECT location FROM table_name_83 WHERE tail_number = "zs-spf" | CREATE TABLE table_name_83 (location VARCHAR, tail_number VARCHAR) | In what location was the tail number ZS-SPF? |
SELECT location FROM table_name_61 WHERE aircraft = "ju-52" | CREATE TABLE table_name_61 (location VARCHAR, aircraft VARCHAR) | What was the location of the Ju-52 aircraft? |
SELECT fatalities FROM table_name_60 WHERE tail_number = "unknown" | CREATE TABLE table_name_60 (fatalities VARCHAR, tail_number VARCHAR) | How many fatalities occurred for an unknown tail number? |
SELECT tail_number FROM table_name_32 WHERE fatalities = "3/3" | CREATE TABLE table_name_32 (tail_number VARCHAR, fatalities VARCHAR) | What was the tail number with 3/3 fatalities? |
SELECT fatalities FROM table_name_18 WHERE aircraft = "ju-52" | CREATE TABLE table_name_18 (fatalities VARCHAR, aircraft VARCHAR) | How many fatalities occurred for the Ju-52 aircraft? |
SELECT score FROM table_name_57 WHERE goal = 6 | CREATE TABLE table_name_57 (score VARCHAR, goal VARCHAR) | What was the score for a goal of 6? |
SELECT venue FROM table_name_43 WHERE date = "july 17, 1999" | CREATE TABLE table_name_43 (venue VARCHAR, date VARCHAR) | Where was the match held on July 17, 1999? |
SELECT democratic_ticket FROM table_name_70 WHERE office = "attorney general" | CREATE TABLE table_name_70 (democratic_ticket VARCHAR, office VARCHAR) | Who was on the Democratic ticket for the Office of Attorney General? |
SELECT name FROM table_name_56 WHERE novelty = "gen et sp nov" | CREATE TABLE table_name_56 (name VARCHAR, novelty VARCHAR) | What name has gen et sp nov as the novelty? |
SELECT authors FROM table_name_55 WHERE unit = "clarno formation" AND name = "actinidia oregonensis" | CREATE TABLE table_name_55 (authors VARCHAR, unit VARCHAR, name VARCHAR) | What authors have clarno formation as the unit, actinidia oregonensis as the name? |
SELECT novelty FROM table_name_70 WHERE location = "usa" AND name = "coryloides" | CREATE TABLE table_name_70 (novelty VARCHAR, location VARCHAR, name VARCHAR) | What novelty has USA as the location, and coryloides as the name? |
SELECT status FROM table_name_78 WHERE name = "paleopanax" | CREATE TABLE table_name_78 (status VARCHAR, name VARCHAR) | What status has paleopanax as the name? |
SELECT unit FROM table_name_51 WHERE novelty = "gen et sp nov" | CREATE TABLE table_name_51 (unit VARCHAR, novelty VARCHAR) | What unit has gen et sp nov as the novelty? |
SELECT date FROM table_name_40 WHERE tournament = "memorial tournament" AND runner_s__up = "payne stewart" | CREATE TABLE table_name_40 (date VARCHAR, tournament VARCHAR, runner_s__up VARCHAR) | Which date was the Memorial Tournament held on, when Payne Stewart was runner-up? |
SELECT 2007 AS _08 FROM table_name_74 WHERE event = "colonial square" | CREATE TABLE table_name_74 (event VARCHAR) | What is the 2007-08 result when the event was Colonial Square? |
SELECT 2008 AS _09 FROM table_name_58 WHERE event = "masters" | CREATE TABLE table_name_58 (event VARCHAR) | What is the 2008-09 result has Masters as the event? |
SELECT COUNT(year) FROM table_name_66 WHERE result = "nominated" AND series = "room 222" | CREATE TABLE table_name_66 (year VARCHAR, result VARCHAR, series VARCHAR) | What year gave a nominated result for the room 222 series? |
SELECT series FROM table_name_82 WHERE year < 1993 AND actor = "teresa graves" | CREATE TABLE table_name_82 (series VARCHAR, year VARCHAR, actor VARCHAR) | What was actor Teresa Graves's series before the year 1993? |
SELECT motor FROM table_name_57 WHERE quantity > 8 AND class = "bs 1915" | CREATE TABLE table_name_57 (motor VARCHAR, quantity VARCHAR, class VARCHAR) | Which motor's quantity was more than 8, and a class of bs 1915? |
SELECT motor FROM table_name_84 WHERE class = "bs 1910" | CREATE TABLE table_name_84 (motor VARCHAR, class VARCHAR) | Which motor's class was bs 1910? |
SELECT quantity FROM table_name_67 WHERE seats = 16 AND class = "kss 1913" | CREATE TABLE table_name_67 (quantity VARCHAR, seats VARCHAR, class VARCHAR) | What is the quantity when the seats number was 16 and the class was kss 1913? |
SELECT root_of_all_evil FROM table_name_33 WHERE original_air_date = "september 3, 2008" | CREATE TABLE table_name_33 (root_of_all_evil VARCHAR, original_air_date VARCHAR) | What is the Root of All Evil with an Original air date that is september 3, 2008? |
SELECT MAX(goals_conceded__gc_) FROM table_name_33 WHERE draw__pe_ > 2 AND goals_scored__gf_ > 19 | CREATE TABLE table_name_33 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR) | Goals Conceded (GC) that has a Draw (PE) larger than 2, and a Goals Scored (GF) larger than 19? |
SELECT COUNT(university_of_dublin) FROM table_name_46 WHERE cultural_and_educational_panel = 5 AND industrial_and_commercial_panel < 9 | CREATE TABLE table_name_46 (university_of_dublin VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR) | What is the number for the University of Dublin with their Cultural and Educational Panel of 5, and an Industrial and Commercial Panel with less than 9? |
SELECT rank FROM table_name_79 WHERE losing_semi__finalist > 1 AND winner < 5 | CREATE TABLE table_name_79 (rank VARCHAR, losing_semi__finalist VARCHAR, winner VARCHAR) | Which Rank has a Losing Semi- finalist larger than 1, and a Winner smaller than 5? |
SELECT AVG(rank) FROM table_name_78 WHERE country = "costa rica" AND losing_semi__finalist > 1 | CREATE TABLE table_name_78 (rank INTEGER, country VARCHAR, losing_semi__finalist VARCHAR) | Which Rank has a Country of costa rica, and a Losing Semi- finalist larger than 1? |
SELECT MAX(rank) FROM table_name_31 WHERE runner__up < 0 | CREATE TABLE table_name_31 (rank INTEGER, runner__up INTEGER) | Which Rank has a Runner -up smaller than 0? |
SELECT year FROM table_name_64 WHERE country = "united states" AND dates = "aug 3–5" | CREATE TABLE table_name_64 (year VARCHAR, country VARCHAR, dates VARCHAR) | What Year was the United States the country for aug 3–5? |
SELECT MAX(purse__) AS $_ FROM table_name_80 WHERE dates = "aug 3–5" | CREATE TABLE table_name_80 (purse__ INTEGER, dates VARCHAR) | What is the highest Purse for aug 3–5? |
SELECT country FROM table_name_21 WHERE package_option = "qualsiasi tranne sky hd" | CREATE TABLE table_name_21 (country VARCHAR, package_option VARCHAR) | Which country has a qualsiasi tranne sky hd package/option? |
SELECT package_option FROM table_name_99 WHERE television_service = "sky wwe 24/7" | CREATE TABLE table_name_99 (package_option VARCHAR, television_service VARCHAR) | Which package/option has sky wwe 24/7 television service? |
SELECT package_option FROM table_name_53 WHERE content = "calcio" | CREATE TABLE table_name_53 (package_option VARCHAR, content VARCHAR) | What is the package/option for the calcio content? |
SELECT language FROM table_name_50 WHERE television_service = "cartello promozionale sky hd" | CREATE TABLE table_name_50 (language VARCHAR, television_service VARCHAR) | What is the language of the television service cartello promozionale sky hd? |
SELECT bike FROM table_name_7 WHERE grid < 23 AND time = "accident" AND rider = "graeme gowland" | CREATE TABLE table_name_7 (bike VARCHAR, rider VARCHAR, grid VARCHAR, time VARCHAR) | What kind of bike had a grid less than 23, an accident under time, and Graeme Gowland as a rider? |
SELECT rider FROM table_name_88 WHERE laps > 5 AND grid > 29 AND bike = "honda cbr600rr" AND time = "+1:27.385" | CREATE TABLE table_name_88 (rider VARCHAR, time VARCHAR, bike VARCHAR, laps VARCHAR, grid VARCHAR) | Who was the rider with more than 5 laps on a grid bigger than 29 on a Honda CBR600RR and time at +1:27.385? |
SELECT rider FROM table_name_39 WHERE grid = 36 | CREATE TABLE table_name_39 (rider VARCHAR, grid VARCHAR) | Who was the rider with a grid of 36? |
SELECT bike FROM table_name_13 WHERE grid < 35 AND time = "37:58.607" | CREATE TABLE table_name_13 (bike VARCHAR, grid VARCHAR, time VARCHAR) | Which bike had a grid less than 35 and time at 37:58.607? |
SELECT result FROM table_name_46 WHERE director = "veljko bulajić category:articles with hcards" AND original_title = "sarajevski atentat" | CREATE TABLE table_name_46 (result VARCHAR, director VARCHAR, original_title VARCHAR) | What is Result, when Director is Veljko Bulajić category:articles with hcards, and when Original title is Sarajevski Atentat? |
SELECT result FROM table_name_78 WHERE director = "mirza idrizović category:articles with hcards" | CREATE TABLE table_name_78 (result VARCHAR, director VARCHAR) | What is Result, when Director is Mirza Idrizović category:articles with hcards? |
SELECT original_title FROM table_name_35 WHERE film_title_used_in_nomination = "train without a timetable" | CREATE TABLE table_name_35 (original_title VARCHAR, film_title_used_in_nomination VARCHAR) | What is Original title, when Film title used in nomination is Train Without A Timetable? |
SELECT original_title FROM table_name_35 WHERE director = "veljko bulajić category:articles with hcards" AND film_title_used_in_nomination = "train without a timetable" | CREATE TABLE table_name_35 (original_title VARCHAR, director VARCHAR, film_title_used_in_nomination VARCHAR) | What is Original title, when Director is Veljko Bulajić category:articles with hcards, and when Film title used in nomination is Train Without A Timetable? |
SELECT film_title_used_in_nomination FROM table_name_47 WHERE year__ceremony_ = "1968 (41st)" | CREATE TABLE table_name_47 (film_title_used_in_nomination VARCHAR, year__ceremony_ VARCHAR) | What is Film title used in nomination, when Year (Ceremony) is 1968 (41st)? |
SELECT director FROM table_name_65 WHERE result = "nominee" AND year__ceremony_ = "1969 (42nd)" | CREATE TABLE table_name_65 (director VARCHAR, result VARCHAR, year__ceremony_ VARCHAR) | What is Director, when Result is nominee, and when Year (Ceremony) is 1969 (42nd)? |
SELECT name FROM table_name_24 WHERE height__cm_ = 178 AND weight__kg_ < 91 | CREATE TABLE table_name_24 (name VARCHAR, height__cm_ VARCHAR, weight__kg_ VARCHAR) | Which name's height in centimeters is 178 when its weight in kilograms is less than 91? |
SELECT high_points FROM table_name_66 WHERE record = "31–48" | CREATE TABLE table_name_66 (high_points VARCHAR, record VARCHAR) | What is the name of the player with the High points when there was a Record of 31–48? |
SELECT high_rebounds FROM table_name_25 WHERE score = "l 108–114 (ot)" | CREATE TABLE table_name_25 (high_rebounds VARCHAR, score VARCHAR) | What is the name of the player with the High rebounds when there was a Score of l 108–114 (ot)? |
SELECT lead FROM table_name_87 WHERE season = "1999–00" | CREATE TABLE table_name_87 (lead VARCHAR, season VARCHAR) | What is the Lead for the 1999–00 season? |
SELECT second FROM table_name_91 WHERE third = "don walchuk" | CREATE TABLE table_name_91 (second VARCHAR, third VARCHAR) | What is the Second when the third is don walchuk? |
SELECT season FROM table_name_63 WHERE lead = "don bartlett" AND third = "don walchuk" AND second = "carter rycroft" | CREATE TABLE table_name_63 (season VARCHAR, second VARCHAR, lead VARCHAR, third VARCHAR) | What is the Season when the Lead was don bartlett, and the third was don walchuk, and a Second of carter rycroft? |
SELECT skip FROM table_name_61 WHERE third = "john morris" | CREATE TABLE table_name_61 (skip VARCHAR, third VARCHAR) | What is the Skip when the Third was john morris? |
SELECT third FROM table_name_23 WHERE lead = "don bartlett" AND second = "carter rycroft" AND season = "2003–04" | CREATE TABLE table_name_23 (third VARCHAR, season VARCHAR, lead VARCHAR, second VARCHAR) | What is the Third when the Lead was don bartlett, the Second was carter rycroft, and a Season of 2003–04? |
SELECT lead FROM table_name_66 WHERE second = "marc kennedy" AND season = "2012–13" | CREATE TABLE table_name_66 (lead VARCHAR, second VARCHAR, season VARCHAR) | What is the Lead when the Second was marc kennedy, in the 2012–13 season? |
SELECT city FROM table_name_97 WHERE capacity = "41,311" | CREATE TABLE table_name_97 (city VARCHAR, capacity VARCHAR) | What is the name of the city with a capacity of 41,311? |
SELECT state FROM table_name_37 WHERE city = "suwon" | CREATE TABLE table_name_37 (state VARCHAR, city VARCHAR) | What is the State with Suwon as the city |
SELECT state FROM table_name_43 WHERE home_venue = "suwon sports complex" | CREATE TABLE table_name_43 (state VARCHAR, home_venue VARCHAR) | What is the State with a home venue of suwon sports complex? |
SELECT team FROM table_name_11 WHERE city = "chungju" | CREATE TABLE table_name_11 (team VARCHAR, city VARCHAR) | What is the team name for Chungju? |
SELECT team FROM table_name_96 WHERE home_venue = "anyang stadium" | CREATE TABLE table_name_96 (team VARCHAR, home_venue VARCHAR) | What is the Team with a venue of Anyang Stadium? |
SELECT state FROM table_name_10 WHERE team = "gwangju fc" | CREATE TABLE table_name_10 (state VARCHAR, team VARCHAR) | What is the State with Gwangju Fc as the team? |
SELECT to_par FROM table_name_72 WHERE player = "loren roberts" | CREATE TABLE table_name_72 (to_par VARCHAR, player VARCHAR) | What is the To par, when the Player is Loren Roberts? |
SELECT to_par FROM table_name_1 WHERE score = 68 - 71 - 69 = 208 | CREATE TABLE table_name_1 (to_par VARCHAR, score VARCHAR) | What is the To par, when the Score is 68-71-69=208? |
SELECT place FROM table_name_19 WHERE score = 68 - 70 - 71 = 209 | CREATE TABLE table_name_19 (place VARCHAR, score VARCHAR) | What is the Place, when the Score is 68-70-71=209? |
SELECT place FROM table_name_8 WHERE player = "chris dimarco" | CREATE TABLE table_name_8 (place VARCHAR, player VARCHAR) | What is the Place, when the Player is Chris Dimarco? |
SELECT score FROM table_name_38 WHERE country = "united states" AND place = "t3" AND player = "chris riley" | CREATE TABLE table_name_38 (score VARCHAR, player VARCHAR, country VARCHAR, place VARCHAR) | What is the Score, when the Country is United States, when the Place is T3, and when the Player is Chris Riley? |
SELECT score FROM table_name_68 WHERE opponent = "mardy fish" | CREATE TABLE table_name_68 (score VARCHAR, opponent VARCHAR) | What is the score where the opponent was Mardy Fish? |
SELECT surface FROM table_name_36 WHERE score = "6–4, 6–3" AND date = "4 may 1992" | CREATE TABLE table_name_36 (surface VARCHAR, score VARCHAR, date VARCHAR) | What surface was played on with a score of 6–4, 6–3 and on 4 May 1992? |
Subsets and Splits