question
stringlengths 12
243
| answer
stringlengths 18
557
| context
stringlengths 27
489
|
---|---|---|
What is the smallest number of gold medals corresponding to the total rank with more than 4 bronze medals? | SELECT MIN(gold) FROM table_name_7 WHERE rank = "total" AND bronze > 4 | CREATE TABLE table_name_7 (gold INTEGER, rank VARCHAR, bronze VARCHAR) |
How tall is the player from Chicago, IL? | SELECT height FROM table_name_48 WHERE hometown = "chicago, il" | CREATE TABLE table_name_48 (height VARCHAR, hometown VARCHAR) |
For which production company did Sam Mccarthy produce? | SELECT production_company FROM table_name_61 WHERE producer_s_ = "sam mccarthy" | CREATE TABLE table_name_61 (production_company VARCHAR, producer_s_ VARCHAR) |
What is the # of candidates of liberal majority with 51 wins and larger number of 2008 in general elections? | SELECT AVG(_number_of_candidates) FROM table_name_81 WHERE result = "liberal majority" AND _number_of_seats_won = 51 AND general_election > 2008 | CREATE TABLE table_name_81 (_number_of_candidates INTEGER, general_election VARCHAR, result VARCHAR, _number_of_seats_won VARCHAR) |
What was the total number for the PIW Class' The Adventures Of... and had a score bigger than 94.6? | SELECT COUNT(year) FROM table_name_56 WHERE class = "piw" AND program_title = "the adventures of..." AND score > 94.6 | CREATE TABLE table_name_56 (year VARCHAR, score VARCHAR, class VARCHAR, program_title VARCHAR) |
What is the lowest production code | SELECT MIN(production_code) FROM table_20098479_1 | CREATE TABLE table_20098479_1 (production_code INTEGER) |
The competition that took place on 4 Apr 1997 ended with what as the score? | SELECT score FROM table_name_42 WHERE date = "4 apr 1997" | CREATE TABLE table_name_42 (score VARCHAR, date VARCHAR) |
Name the country for 6-month loan and moving from of lens | SELECT country FROM table_name_90 WHERE type = "6-month loan" AND moving_from = "lens" | CREATE TABLE table_name_90 (country VARCHAR, type VARCHAR, moving_from VARCHAR) |
Name the minumim first elected for alvin bush | SELECT MIN(first_elected) FROM table_1342013_37 WHERE incumbent = "Alvin Bush" | CREATE TABLE table_1342013_37 (first_elected INTEGER, incumbent VARCHAR) |
What is the end address for the Class E (Reserved)? | SELECT end_address FROM table_name_61 WHERE class = "class e (reserved)" | CREATE TABLE table_name_61 (end_address VARCHAR, class VARCHAR) |
How many games are associated with over 0 golds and a first year before 2008? | SELECT SUM(games) FROM table_name_61 WHERE gold > 0 AND first < 2008 | CREATE TABLE table_name_61 (games INTEGER, gold VARCHAR, first VARCHAR) |
What party is the member that has an electorate of Lindsay? | SELECT party FROM table_name_34 WHERE electorate = "lindsay" | CREATE TABLE table_name_34 (party VARCHAR, electorate VARCHAR) |
When Spencer is the county what is total of the population (2010) (rank)? | SELECT COUNT(population__2010___rank_) FROM table_14253123_1 WHERE county_name = "Spencer" | CREATE TABLE table_14253123_1 (population__2010___rank_ VARCHAR, county_name VARCHAR) |
how many airports are there in each country? | SELECT COUNT(*), country FROM airport GROUP BY country | CREATE TABLE airport (country VARCHAR) |
What even was Jerry Lynn the inductee? | SELECT event FROM table_name_16 WHERE inductee_s_ = "jerry lynn" | CREATE TABLE table_name_16 (event VARCHAR, inductee_s_ VARCHAR) |
Which Total has a Finish of t64, and a Year won larger than 2006? | SELECT MAX(total) FROM table_name_64 WHERE finish = "t64" AND year_won > 2006 | CREATE TABLE table_name_64 (total INTEGER, finish VARCHAR, year_won VARCHAR) |
Find the names of all directors whose movies are rated by Sarah Martinez. | SELECT DISTINCT T2.director FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID JOIN Reviewer AS T3 ON T1.rID = T3.rID WHERE T3.name = 'Sarah Martinez' | CREATE TABLE Reviewer (rID VARCHAR, name VARCHAR); CREATE TABLE Movie (director VARCHAR, mID VARCHAR); CREATE TABLE Rating (mID VARCHAR, rID VARCHAR) |
What is the total number of rounds at 5:36? | SELECT COUNT(round) FROM table_name_29 WHERE time = "5:36" | CREATE TABLE table_name_29 (round VARCHAR, time VARCHAR) |
What is the 2012 value with 1r in 2011, 2007 of A, 2010 of 1r, and 2009 of A? | SELECT 2012 FROM table_name_16 WHERE 2011 = "1r" AND 2007 = "a" AND 2010 = "1r" AND 2009 = "a" | CREATE TABLE table_name_16 (Id VARCHAR) |
Which Catalog has a Region of Canada and a Format of cd/dvd? | SELECT catalog FROM table_name_61 WHERE region = "canada" AND format = "cd/dvd" | CREATE TABLE table_name_61 (catalog VARCHAR, region VARCHAR, format VARCHAR) |
what's the league where regular season is 2nd, northwest | SELECT league FROM table_1046454_1 WHERE regular_season = "2nd, Northwest" | CREATE TABLE table_1046454_1 (league VARCHAR, regular_season VARCHAR) |
What is the average Enrollment of Dickinson College? | SELECT AVG(enrollment) FROM table_name_41 WHERE institution = "dickinson college" | CREATE TABLE table_name_41 (enrollment INTEGER, institution VARCHAR) |
How many titles are there for the original air date April 3, 2012? | SELECT COUNT(title) FROM table_26150013_1 WHERE original_air_date = "April 3, 2012" | CREATE TABLE table_26150013_1 (title VARCHAR, original_air_date VARCHAR) |
Show the minimum, average, maximum order quantity of all invoices. | SELECT MIN(Order_Quantity), AVG(Order_Quantity), MAX(Order_Quantity) FROM INVOICES | CREATE TABLE INVOICES (Order_Quantity INTEGER) |
Which Final has a Team of liechtenstein (lie) liechtenstein i? | SELECT final FROM table_name_55 WHERE team = "liechtenstein (lie) liechtenstein i" | CREATE TABLE table_name_55 (final VARCHAR, team VARCHAR) |
Name the highest silver for table tennis and bronze more than 0 | SELECT MAX(silver) FROM table_name_18 WHERE sport = "table tennis" AND bronze > 0 | CREATE TABLE table_name_18 (silver INTEGER, sport VARCHAR, bronze VARCHAR) |
What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland? | SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1 | CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR, bronze VARCHAR, nation VARCHAR) |
Louisville International Airport had how many tonnes of cargo in 2011? | SELECT tonnes FROM table_18047346_5 WHERE airport_name = "Louisville International Airport" | CREATE TABLE table_18047346_5 (tonnes VARCHAR, airport_name VARCHAR) |
What date was the participant/recipient takakazu watanabe? | SELECT date_of_ceremony FROM table_26282750_1 WHERE participants_recipients = "Takakazu Watanabe" | CREATE TABLE table_26282750_1 (date_of_ceremony VARCHAR, participants_recipients VARCHAR) |
Which classroom has the most students? | SELECT classroom FROM list GROUP BY classroom ORDER BY COUNT(*) DESC LIMIT 1 | CREATE TABLE list (classroom VARCHAR) |
What is the area of Austria's territory in square kilometers? | SELECT area_km_2 FROM table_24066938_1 WHERE member_state = "Austria" | CREATE TABLE table_24066938_1 (area_km_2 VARCHAR, member_state VARCHAR) |
What's listed for the Registered Voters with a Ngilu of 3,429? | SELECT registered_voters FROM table_name_68 WHERE ngilu = "3,429" | CREATE TABLE table_name_68 (registered_voters VARCHAR, ngilu VARCHAR) |
What date was the score 3–3, and away team was Barnet? | SELECT date FROM table_name_96 WHERE score = "3–3" AND away_team = "barnet" | CREATE TABLE table_name_96 (date VARCHAR, score VARCHAR, away_team VARCHAR) |
What region has 57 vehicles? | SELECT region FROM table_name_35 WHERE vehicles__1209_ = 57 | CREATE TABLE table_name_35 (region VARCHAR, vehicles__1209_ VARCHAR) |
What is the highest attendance for December 14, 1958 for after week 12 | SELECT MAX(attendance) FROM table_name_40 WHERE date = "december 14, 1958" AND week > 12 | CREATE TABLE table_name_40 (attendance INTEGER, date VARCHAR, week VARCHAR) |
What were the number of voters McCain had when Obama had 895? | SELECT mccain_number FROM table_20693870_1 WHERE obama_number = 895 | CREATE TABLE table_20693870_1 (mccain_number VARCHAR, obama_number VARCHAR) |
Which integrated has an allied-related of some shared? | SELECT integrated FROM table_name_40 WHERE allied_related = "some shared" | CREATE TABLE table_name_40 (integrated VARCHAR, allied_related VARCHAR) |
What is the highest Top-5 that has 18 or more events with a Top-25 of 23? | SELECT MAX(top_5) FROM table_name_61 WHERE events > 18 AND top_25 = 23 | CREATE TABLE table_name_61 (top_5 INTEGER, events VARCHAR, top_25 VARCHAR) |
What construction has a Listed 09/08/1983, and a Deleted of –, and a Name of mid-south wood products? | SELECT construction_completed FROM table_name_48 WHERE listed = "09/08/1983" AND deleted = "–" AND name = "mid-south wood products" | CREATE TABLE table_name_48 (construction_completed VARCHAR, name VARCHAR, listed VARCHAR, deleted VARCHAR) |
when it published in english is n/a and published in russian is 1986, what is the type of work? | SELECT type_of_work FROM table_207795_1 WHERE published_in_english = "N/A" AND published_in_russian = "1986" | CREATE TABLE table_207795_1 (type_of_work VARCHAR, published_in_english VARCHAR, published_in_russian VARCHAR) |
What is Date, when H/A/N is "H", and when Score is 112-118? | SELECT date FROM table_name_77 WHERE h_a_n = "h" AND score = "112-118" | CREATE TABLE table_name_77 (date VARCHAR, h_a_n VARCHAR, score VARCHAR) |
what is the country for the 1972 winter olympics? | SELECT country FROM table_name_7 WHERE winter_olympics = 1972 | CREATE TABLE table_name_7 (country VARCHAR, winter_olympics VARCHAR) |
What was the 1st round result that had US Valenciennes (d1) as Team 2? | SELECT 1 AS st_round FROM table_name_6 WHERE team_2 = "us valenciennes (d1)" | CREATE TABLE table_name_6 (team_2 VARCHAR) |
What is the lowest number of bronze a short track athlete with 0 gold medals has? | SELECT MIN(bronze) FROM table_name_47 WHERE sport = "short track" AND gold = 0 | CREATE TABLE table_name_47 (bronze INTEGER, sport VARCHAR, gold VARCHAR) |
What shows for House 1950 when the Governors 1950 show governors 1995? | SELECT house_1950 FROM table_name_39 WHERE governors_1950 = "governors 1995" | CREATE TABLE table_name_39 (house_1950 VARCHAR, governors_1950 VARCHAR) |
What is the hometown of the player which has a height of 6-0? | SELECT hometown FROM table_name_31 WHERE height = "6-0" | CREATE TABLE table_name_31 (hometown VARCHAR, height VARCHAR) |
Which Representative has a Termination of Mission as May 24, 1905? | SELECT representative FROM table_name_10 WHERE termination_of_mission = "may 24, 1905" | CREATE TABLE table_name_10 (representative VARCHAR, termination_of_mission VARCHAR) |
What date was the bronze label in vinyl format? | SELECT date FROM table_name_52 WHERE label = "bronze" AND format = "vinyl" | CREATE TABLE table_name_52 (date VARCHAR, label VARCHAR, format VARCHAR) |
Show all video games with type Collectible card game. | SELECT gname FROM Video_games WHERE gtype = "Collectible card game" | CREATE TABLE Video_games (gname VARCHAR, gtype VARCHAR) |
What was Laurel's division record? | SELECT division_record FROM table_name_63 WHERE school = "laurel" | CREATE TABLE table_name_63 (division_record VARCHAR, school VARCHAR) |
Which home team had an away team of Reading? | SELECT home_team FROM table_name_37 WHERE away_team = "reading" | CREATE TABLE table_name_37 (home_team VARCHAR, away_team VARCHAR) |
What is Nelspruit's population? | SELECT COUNT(population__2013_) FROM table_name_74 WHERE largest_city = "nelspruit" | CREATE TABLE table_name_74 (population__2013_ VARCHAR, largest_city VARCHAR) |
Which Year has a cause of firedamp and a Death toll larger than 11? | SELECT SUM(year) FROM table_name_87 WHERE cause = "firedamp" AND death_toll > 11 | CREATE TABLE table_name_87 (year INTEGER, cause VARCHAR, death_toll VARCHAR) |
which round has a margin of 178? | SELECT round FROM table_name_24 WHERE margin = "178" | CREATE TABLE table_name_24 (round VARCHAR, margin VARCHAR) |
What are the notes for the athlete from Spain? | SELECT notes FROM table_name_29 WHERE country = "spain" | CREATE TABLE table_name_29 (notes VARCHAR, country VARCHAR) |
Which Season has an Agg of 4–1, and an Opponent of rapid wien? | SELECT season FROM table_name_18 WHERE agg = "4–1" AND opponent = "rapid wien" | CREATE TABLE table_name_18 (season VARCHAR, agg VARCHAR, opponent VARCHAR) |
Name the record for score of w 76-67 | SELECT record FROM table_17104539_9 WHERE score = "W 76-67" | CREATE TABLE table_17104539_9 (record VARCHAR, score VARCHAR) |
What is the name of the customer that made the order with the largest quantity? | SELECT t1.customer_name FROM customers AS t1 JOIN customer_orders AS t2 ON t1.customer_id = t2.customer_id JOIN order_items AS t3 ON t2.order_id = t3.order_id WHERE t3.order_quantity = (SELECT MAX(order_quantity) FROM order_items) | CREATE TABLE order_items (order_id VARCHAR, order_quantity INTEGER); CREATE TABLE customers (customer_name VARCHAR, customer_id VARCHAR); CREATE TABLE order_items (order_quantity INTEGER); CREATE TABLE customer_orders (customer_id VARCHAR, order_id VARCHAR) |
Which Males have a percentage of 0.42? | SELECT males FROM table_name_76 WHERE percentage___percentage_ = "0.42" | CREATE TABLE table_name_76 (males VARCHAR, percentage___percentage_ VARCHAR) |
How many results are there for the 0-4 record? | SELECT COUNT(result) FROM table_10646790_2 WHERE record = "0-4" | CREATE TABLE table_10646790_2 (result VARCHAR, record VARCHAR) |
What place did Jack McGrath start in when he received a qual score of 141.033? | SELECT start FROM table_name_72 WHERE qual = "141.033" | CREATE TABLE table_name_72 (start VARCHAR, qual VARCHAR) |
What is player Alexis Bwenge's pick number? | SELECT pick__number FROM table_10960039_1 WHERE player = "Alexis Bwenge" | CREATE TABLE table_10960039_1 (pick__number VARCHAR, player VARCHAR) |
What is Bids, when Champions is "1"? | SELECT bids FROM table_name_34 WHERE champions = "1" | CREATE TABLE table_name_34 (bids VARCHAR, champions VARCHAR) |
What name has a qual 2 of 1:46.025? | SELECT name FROM table_name_33 WHERE qual_2 = "1:46.025" | CREATE TABLE table_name_33 (name VARCHAR, qual_2 VARCHAR) |
What is the cost per capita in the Courtenay municipality? | SELECT cost_per_capita FROM table_12340907_1 WHERE municipality = "Courtenay" | CREATE TABLE table_12340907_1 (cost_per_capita VARCHAR, municipality VARCHAR) |
What visiting team has a record of 4-3? | SELECT visitor FROM table_name_49 WHERE record = "4-3" | CREATE TABLE table_name_49 (visitor VARCHAR, record VARCHAR) |
What is the 2012 population for the state whose capital is Santa Fe? | SELECT population_est__2012_ FROM table_name_61 WHERE capital = "santa fe" | CREATE TABLE table_name_61 (population_est__2012_ VARCHAR, capital VARCHAR) |
What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4? | SELECT COUNT(laps) FROM table_name_45 WHERE rider = "massimo roccoli" AND grid < 4 | CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR) |
What is the team 1 in the match with a team 2 of Karabakh? | SELECT team_1 FROM table_name_20 WHERE team_2 = "karabakh" | CREATE TABLE table_name_20 (team_1 VARCHAR, team_2 VARCHAR) |
What is the rank of the time of 6:30.53? | SELECT COUNT(rank) FROM table_name_89 WHERE time = "6:30.53" | CREATE TABLE table_name_89 (rank VARCHAR, time VARCHAR) |
what is the title when the rank is less than 17 and the worldwide gross is $299,288,605? | SELECT title FROM table_name_11 WHERE rank < 17 AND worldwide_gross = "$299,288,605" | CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, worldwide_gross VARCHAR) |
Who wrote the episodes watched by 1.816 million people in Canada? | SELECT written_by FROM table_18424435_3 WHERE canadian_viewers__million_ = "1.816" | CREATE TABLE table_18424435_3 (written_by VARCHAR, canadian_viewers__million_ VARCHAR) |
If the POS is 3, what is the 08 points? | SELECT 08 AS _pts FROM table_22011138_7 WHERE pos = 3 | CREATE TABLE table_22011138_7 (pos VARCHAR) |
What year was the game at Bad Neuenahr Eppelborn? | SELECT year FROM table_name_30 WHERE venue = "bad neuenahr eppelborn" | CREATE TABLE table_name_30 (year VARCHAR, venue VARCHAR) |
What is the total number played with 8 points and a position more than 6? | SELECT COUNT(played) FROM table_name_90 WHERE points = 8 AND position > 6 | CREATE TABLE table_name_90 (played VARCHAR, points VARCHAR, position VARCHAR) |
What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph? | SELECT sat_27_aug FROM table_30058355_7 WHERE thurs_25_aug = "23' 56.90 94.528mph" | CREATE TABLE table_30058355_7 (sat_27_aug VARCHAR, thurs_25_aug VARCHAR) |
Name the lowest Quay cranes for Berths of 1 and operator of mtl with terminal of terminal 5 (ct5) | SELECT MIN(quay_cranes) FROM table_name_72 WHERE berths = 1 AND operator = "mtl" AND terminal = "terminal 5 (ct5)" | CREATE TABLE table_name_72 (quay_cranes INTEGER, terminal VARCHAR, berths VARCHAR, operator VARCHAR) |
What is the score of the game with 1,125 people in attendance? | SELECT score FROM table_name_37 WHERE attendance = "1,125" | CREATE TABLE table_name_37 (score VARCHAR, attendance VARCHAR) |
WHAT IS THE 2009 PERFORMANCE FOR TOURNAMENTS PLAYED? | SELECT 2009 FROM table_name_68 WHERE tournament = "tournaments played" | CREATE TABLE table_name_68 (tournament VARCHAR) |
Santa Clara was played how many times? | SELECT opponents FROM table_21058836_1 WHERE opponent = "Santa Clara" | CREATE TABLE table_21058836_1 (opponents VARCHAR, opponent VARCHAR) |
Name the city of license when founded was may 1995 | SELECT city_of_license FROM table_name_92 WHERE founded = "may 1995" | CREATE TABLE table_name_92 (city_of_license VARCHAR, founded VARCHAR) |
Name the most rebounds for larry smith | SELECT MAX(rebounds) FROM table_22824319_3 WHERE player = "Larry Smith" | CREATE TABLE table_22824319_3 (rebounds INTEGER, player VARCHAR) |
What player was the champion in the match where E.A. Lassen was the runner-up? | SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen" | CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR) |
What's the Highest Goal Ratio with a League of 88 and an FA Cup less than 7? | SELECT MAX(goal_ratio) FROM table_name_68 WHERE league = 88 AND fa_cup < 7 | CREATE TABLE table_name_68 (goal_ratio INTEGER, league VARCHAR, fa_cup VARCHAR) |
What is the average capacity of stadiums in the City of London that belong to schools with an enrollment less than 30,000? | SELECT AVG(capacity) FROM table_name_40 WHERE city = "london" AND enrollment < 30 OFFSET 000 | CREATE TABLE table_name_40 (capacity INTEGER, city VARCHAR, enrollment VARCHAR) |
What was team one name for the Team 2 of Toulouse Fc (d1)>? | SELECT team_1 FROM table_name_34 WHERE team_2 = "toulouse fc (d1)" | CREATE TABLE table_name_34 (team_1 VARCHAR, team_2 VARCHAR) |
Who did the cowboys play when 65,537 attended? | SELECT opponent FROM table_name_54 WHERE attendance = "65,537" | CREATE TABLE table_name_54 (opponent VARCHAR, attendance VARCHAR) |
What is the lowest geohash length when the lat bits are less than 7, and the km error of ±2500? | SELECT MIN(geohash_length) FROM table_name_94 WHERE lat_bits < 7 AND km_error = "±2500" | CREATE TABLE table_name_94 (geohash_length INTEGER, lat_bits VARCHAR, km_error VARCHAR) |
What is the Date for the City/State of Sydney, New South Wales? | SELECT date FROM table_name_61 WHERE city___state = "sydney, new south wales" | CREATE TABLE table_name_61 (date VARCHAR, city___state VARCHAR) |
How many authors are present when the original was Carry On? | SELECT COUNT(authors) FROM table_19523708_1 WHERE original = "Carry On" | CREATE TABLE table_19523708_1 (authors VARCHAR, original VARCHAR) |
Which Time has an Opponent of shamil abdurahimov? | SELECT time FROM table_name_39 WHERE opponent = "shamil abdurahimov" | CREATE TABLE table_name_39 (time VARCHAR, opponent VARCHAR) |
When dxcc-tv is the call sign how many station types are there? | SELECT COUNT(station_type) FROM table_23394920_1 WHERE callsign = "DXCC-TV" | CREATE TABLE table_23394920_1 (station_type VARCHAR, callsign VARCHAR) |
When james brooks (d) is the vacator what is the date the successor was seated? | SELECT date_successor_seated FROM table_2147588_4 WHERE vacator = "James Brooks (D)" | CREATE TABLE table_2147588_4 (date_successor_seated VARCHAR, vacator VARCHAR) |
which episode did sarah millican and grayson perry appear in | SELECT MIN(episode) FROM table_29135051_3 WHERE guest_s_ = "Sarah Millican and Grayson Perry" | CREATE TABLE table_29135051_3 (episode INTEGER, guest_s_ VARCHAR) |
What school joined the conference in 1996-97 and left it in 2011-12? | SELECT institution FROM table_262560_2 WHERE joined = "1996-97" AND left = "2011-12" | CREATE TABLE table_262560_2 (institution VARCHAR, joined VARCHAR, left VARCHAR) |
What did Phil Rodgers score? | SELECT score FROM table_name_6 WHERE player = "phil rodgers" | CREATE TABLE table_name_6 (score VARCHAR, player VARCHAR) |
What position did Calvin Mccarty play? | SELECT position FROM table_10812403_4 WHERE player = "Calvin McCarty" | CREATE TABLE table_10812403_4 (position VARCHAR, player VARCHAR) |
When within the walls is larger than 56174.0 what is the lowest amount without the walls? | SELECT MIN(without_the_walls) FROM table_16677738_1 WHERE within_the_walls > 56174.0 | CREATE TABLE table_16677738_1 (without_the_walls INTEGER, within_the_walls INTEGER) |
What is the Opponent of the match played on a Clay Surface with a Score of 6–0, 6–2? | SELECT opponent_in_the_final FROM table_name_4 WHERE surface = "clay" AND score = "6–0, 6–2" | CREATE TABLE table_name_4 (opponent_in_the_final VARCHAR, surface VARCHAR, score 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_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) |
Subsets and Splits