answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT SUM(rank) FROM table_name_94 WHERE matches = 367 AND goals > 216 | CREATE TABLE table_name_94 (rank INTEGER, matches VARCHAR, goals VARCHAR) | How many ranks had 367 matches and more than 216 goals? |
SELECT AVG(rank) FROM table_name_86 WHERE goals = 230 AND matches > 535 | CREATE TABLE table_name_86 (rank INTEGER, goals VARCHAR, matches VARCHAR) | What is the mean rank number when goals are 230 and there are more than 535? |
SELECT original_airing FROM table_name_60 WHERE audience_share__average_ = "8%" | CREATE TABLE table_name_60 (original_airing VARCHAR, audience_share__average_ VARCHAR) | Where the audience share is 8%, what is the original airing? |
SELECT COUNT(episode_number) FROM table_name_80 WHERE audience_share__average_ = "10%" | CREATE TABLE table_name_80 (episode_number VARCHAR, audience_share__average_ VARCHAR) | What episode number has an audience share of 10%? |
SELECT class FROM table_name_97 WHERE wheels = 137 | CREATE TABLE table_name_97 (class VARCHAR, wheels VARCHAR) | What is the value for the item "Class" when the value of the item "Wheels" is 137? |
SELECT MIN(games) FROM table_name_84 WHERE team = "fenerbahçe" | CREATE TABLE table_name_84 (games INTEGER, team VARCHAR) | What's the smallest number of games for the fenerbahçe team? |
SELECT AVG(games) FROM table_name_75 WHERE team = "olympiacos" AND rebounds < 17 | CREATE TABLE table_name_75 (games INTEGER, team VARCHAR, rebounds VARCHAR) | What's the mean game number for the olympiacos team when there's less than 17 rebounds? |
SELECT COUNT(games) FROM table_name_57 WHERE name = "novica veličković" AND rebounds > 24 | CREATE TABLE table_name_57 (games VARCHAR, name VARCHAR, rebounds VARCHAR) | How many games does novica veličković have when there's more than 24 rebounds? |
SELECT league FROM table_name_64 WHERE year = "1990/91" | CREATE TABLE table_name_64 (league VARCHAR, year VARCHAR) | What is the League with a Year that is 1990/91? |
SELECT icao FROM table_name_75 WHERE airport = "simferopol international airport" | CREATE TABLE table_name_75 (icao VARCHAR, airport VARCHAR) | What is the ICAO for simferopol international airport? |
SELECT country FROM table_name_70 WHERE iata = "gzt" | CREATE TABLE table_name_70 (country VARCHAR, iata VARCHAR) | Which country has an IATA of gzt? |
SELECT country FROM table_name_21 WHERE city = "yerevan" | CREATE TABLE table_name_21 (country VARCHAR, city VARCHAR) | What country is Yerevan located in? |
SELECT icao FROM table_name_19 WHERE iata = "ika" | CREATE TABLE table_name_19 (icao VARCHAR, iata VARCHAR) | What is the ICAO when the IATA is ika? |
SELECT icao FROM table_name_34 WHERE iata = "ist" | CREATE TABLE table_name_34 (icao VARCHAR, iata VARCHAR) | What is the ICAO when the IATA is ist? |
SELECT team FROM table_name_33 WHERE lost = 10 | CREATE TABLE table_name_33 (team VARCHAR, lost VARCHAR) | Which team has 10 losses? |
SELECT annual_change FROM table_name_31 WHERE rank < 3 AND capacity_in_use = "78.4%" | CREATE TABLE table_name_31 (annual_change VARCHAR, rank VARCHAR, capacity_in_use VARCHAR) | In which yearly change was there a capacity of 78.4% and a rank smaller than 3? |
SELECT rank FROM table_name_85 WHERE location = "porto alegre" | CREATE TABLE table_name_85 (rank VARCHAR, location VARCHAR) | In Which rank was there a location of porto alegre? |
SELECT SUM(total_passengers) FROM table_name_88 WHERE capacity_in_use = "81.2%" | CREATE TABLE table_name_88 (total_passengers INTEGER, capacity_in_use VARCHAR) | what is the number of passengers when the capacity is 81.2%? |
SELECT MAX(total_passengers) FROM table_name_94 WHERE rank = 1 | CREATE TABLE table_name_94 (total_passengers INTEGER, rank VARCHAR) | what is the highest amount of passengers when there is a rank of 1? |
SELECT MAX(week) FROM table_name_95 WHERE result = "l 17–0" | CREATE TABLE table_name_95 (week INTEGER, result VARCHAR) | What was the latest Week on which the Result was l 17–0? |
SELECT AVG(cuts_made) FROM table_name_65 WHERE top_25 < 10 AND top_10 > 3 | CREATE TABLE table_name_65 (cuts_made INTEGER, top_25 VARCHAR, top_10 VARCHAR) | What is the average cuts made at the top 25, less than 10, and at the Top 10 more than 3? |
SELECT AVG(top_10) FROM table_name_93 WHERE wins < 0 | CREATE TABLE table_name_93 (top_10 INTEGER, wins INTEGER) | What is average Top 10 with 0 wins? |
SELECT AVG(events) FROM table_name_18 WHERE tournament = "the open championship" AND top_5 < 1 | CREATE TABLE table_name_18 (events INTEGER, tournament VARCHAR, top_5 VARCHAR) | What is the average event for the Open Championship Tournament, and a Top-5 less than 1? |
SELECT AVG(wins) FROM table_name_66 WHERE top_25 < 0 | CREATE TABLE table_name_66 (wins INTEGER, top_25 INTEGER) | What is the average wins has Top-25 less than 0? |
SELECT MAX(against) FROM table_name_40 WHERE byes > 0 | CREATE TABLE table_name_40 (against INTEGER, byes INTEGER) | What is the largest Against with a Byes larger than 0? |
SELECT MAX(wins) FROM table_name_61 WHERE against = 1940 AND byes > 0 | CREATE TABLE table_name_61 (wins INTEGER, against VARCHAR, byes VARCHAR) | Which Wins has an Against of 1940, and a Byes larger than 0? |
SELECT AVG(draws) FROM table_name_28 WHERE wins = 10 AND peel = "south mandurah" AND byes > 0 | CREATE TABLE table_name_28 (draws INTEGER, byes VARCHAR, wins VARCHAR, peel VARCHAR) | Which Draws has a Wins of 10, and a Peel of south mandurah, and a Byes larger than 0? |
SELECT MAX(against) FROM table_name_50 WHERE draws > 0 AND losses < 16 AND wins < 4 | CREATE TABLE table_name_50 (against INTEGER, wins VARCHAR, draws VARCHAR, losses VARCHAR) | Which Against has a Draws larger than 0, a Losses smaller than 16, and a Wins smaller than 4? |
SELECT COUNT(losses) FROM table_name_52 WHERE against = 1101 AND byes < 0 | CREATE TABLE table_name_52 (losses VARCHAR, against VARCHAR, byes VARCHAR) | Which Losses has an Against of 1101, and a Byes smaller than 0? |
SELECT MAX(byes) FROM table_name_5 WHERE losses < 1 | CREATE TABLE table_name_5 (byes INTEGER, losses INTEGER) | Which Byes has a Losses smaller than 1? |
SELECT AVG(games) FROM table_name_55 WHERE rank < 1 | CREATE TABLE table_name_55 (games INTEGER, rank INTEGER) | What is the average number of games of the player with a rank less than 1? |
SELECT MAX(rank) FROM table_name_24 WHERE points < 32 | CREATE TABLE table_name_24 (rank INTEGER, points INTEGER) | What is the highest rank of the player with less than 32 points? |
SELECT SUM(rank) FROM table_name_95 WHERE points < 34 | CREATE TABLE table_name_95 (rank INTEGER, points INTEGER) | What is the rank of the player with less than 34 points? |
SELECT fourth_district FROM table_name_72 WHERE second_district = "bob springstead" | CREATE TABLE table_name_72 (fourth_district VARCHAR, second_district VARCHAR) | Who's Fourth District has a Second District of bob springstead? |
SELECT first_district FROM table_name_9 WHERE fifth_district = "prudy adam" | CREATE TABLE table_name_9 (first_district VARCHAR, fifth_district VARCHAR) | Who's the First District with a Fifth District of prudy adam? |
SELECT fourth_district FROM table_name_98 WHERE first_district = "beverly bodem" | CREATE TABLE table_name_98 (fourth_district VARCHAR, first_district VARCHAR) | Who's the Fourth District with a First District of beverly bodem? |
SELECT fourth_district FROM table_name_41 WHERE second_district = "kurt van koevering" | CREATE TABLE table_name_41 (fourth_district VARCHAR, second_district VARCHAR) | Who's the Fourth District with a Second District of kurt van koevering? |
SELECT fifth_district FROM table_name_23 WHERE second_district = "paul leidig" | CREATE TABLE table_name_23 (fifth_district VARCHAR, second_district VARCHAR) | Who's the Fifth District with a Second District of paul leidig? |
SELECT fourth_district FROM table_name_82 WHERE third_district = "sharon yentsch" | CREATE TABLE table_name_82 (fourth_district VARCHAR, third_district VARCHAR) | Who's the Fourth District with a Third District of sharon yentsch? |
SELECT COUNT(sets) FROM table_name_21 WHERE player = "gary muller" | CREATE TABLE table_name_21 (sets VARCHAR, player VARCHAR) | How many Sets did Gary Muller have? |
SELECT player FROM table_name_12 WHERE sets < 5 AND event = "2005 wimbledon" | CREATE TABLE table_name_12 (player VARCHAR, sets VARCHAR, event VARCHAR) | What Player in 2005 Wimbledon had less than 5 Sets? |
SELECT opponent FROM table_name_93 WHERE aces < 50 AND event = "2001 davis cup" | CREATE TABLE table_name_93 (opponent VARCHAR, aces VARCHAR, event VARCHAR) | At the 2001 Davis Cup, what Opponent had less than 50 Aces? |
SELECT time_of_airing_on_channel_4 FROM table_name_74 WHERE episode_number > 106 AND title = "marry me a little" | CREATE TABLE table_name_74 (time_of_airing_on_channel_4 VARCHAR, episode_number VARCHAR, title VARCHAR) | What time did Channel 4 air an episode number larger than 106 with the title of Marry Me A Little? |
SELECT COUNT(sunk_by_u_boat) FROM table_name_4 WHERE german_submarines_lost < 2 AND sunk_by_aircraft = 56328 AND sunk_by_mines > 8269 | CREATE TABLE table_name_4 (sunk_by_u_boat VARCHAR, sunk_by_mines VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) | What is the total number of sunk by U-boats with less than 2 German submarines lost, 56328 sunk by aircrafts, and more than 8269 sunk by mines? |
SELECT COUNT(sunk_by_warship_or_raider) FROM table_name_30 WHERE german_submarines_lost = 20 AND sunk_by_aircraft > 21616 | CREATE TABLE table_name_30 (sunk_by_warship_or_raider VARCHAR, german_submarines_lost VARCHAR, sunk_by_aircraft VARCHAR) | What is the total number sunk by warship or raider with 20 German submarines lost and more than 21616 sunk by aircraft? |
SELECT COUNT(german_submarines_lost) FROM table_name_46 WHERE sunk_by_mines > 120958 | CREATE TABLE table_name_46 (german_submarines_lost VARCHAR, sunk_by_mines INTEGER) | What is the total number of German submarines lost with more than 120958 sunk by mines? |
SELECT month, _year FROM table_name_24 WHERE german_submarines_lost < 5 AND sunk_by_warship_or_raider < 6893 AND sunk_by_aircraft < 133746 AND sunk_by_u_boat > 111263 | CREATE TABLE table_name_24 (month VARCHAR, _year VARCHAR, sunk_by_u_boat VARCHAR, sunk_by_aircraft VARCHAR, german_submarines_lost VARCHAR, sunk_by_warship_or_raider VARCHAR) | What is the month and year less than 5 German submarines were lost, less than 6893 were sunk by warship or raider, less than 133746 were sunk by aircraft, and more than 111263 were sunk by U-boat? |
SELECT month, _year FROM table_name_73 WHERE sunk_by_aircraft < 106005 AND sunk_by_warship_or_raider = 61857 | CREATE TABLE table_name_73 (month VARCHAR, _year VARCHAR, sunk_by_aircraft VARCHAR, sunk_by_warship_or_raider VARCHAR) | What is the month and year less than 106005 were sunk by aircraft and 61857 were sunk by warship or raider? |
SELECT post_1896_provinces FROM table_name_52 WHERE hanja = "全羅道" | CREATE TABLE table_name_52 (post_1896_provinces VARCHAR, hanja VARCHAR) | What is the post-1986 provinces with a 全羅道 Hanja? |
SELECT korean_dialect FROM table_name_71 WHERE capital = "daegu" | CREATE TABLE table_name_71 (korean_dialect VARCHAR, capital VARCHAR) | What is the Korean dialect in the daegu capital? |
SELECT korean_dialect FROM table_name_18 WHERE rr_romaja = "jeolla" | CREATE TABLE table_name_18 (korean_dialect VARCHAR, rr_romaja VARCHAR) | What is the Korean dialect with a jeolla RR Romaja? |
SELECT hanja FROM table_name_4 WHERE rr_romaja = "hamgyeong" | CREATE TABLE table_name_4 (hanja VARCHAR, rr_romaja VARCHAR) | What is the Hanja for the hamgyeong RR Romaja? |
SELECT AVG(example_code__huc_) FROM table_name_35 WHERE example_name = "lower snake" AND digits = 6 AND level < 3 | CREATE TABLE table_name_35 (example_code__huc_ INTEGER, level VARCHAR, example_name VARCHAR, digits VARCHAR) | What is the mean huc example code when the example name's lower snake, there are 6 digits, and less than 3 levels? |
SELECT COUNT(number_of_hus__approximate_) FROM table_name_66 WHERE digits > 2 AND level = 6 | CREATE TABLE table_name_66 (number_of_hus__approximate_ VARCHAR, digits VARCHAR, level VARCHAR) | What's the approximate number of HUs when there are more than 2 digits, and 6 levels? |
SELECT COUNT(example_code__huc_) FROM table_name_48 WHERE level = 1 | CREATE TABLE table_name_48 (example_code__huc_ VARCHAR, level VARCHAR) | How many HUC example codes have 1 level? |
SELECT AVG(level) FROM table_name_42 WHERE example_name = "lower snake" AND number_of_hus__approximate_ < 370 | CREATE TABLE table_name_42 (level INTEGER, example_name VARCHAR, number_of_hus__approximate_ VARCHAR) | What is the mean level number when the example name is lower snake and the approximate number is hus is less than 370? |
SELECT AVG(losses) FROM table_name_43 WHERE against > 1255 AND wins = 0 AND draws < 0 | CREATE TABLE table_name_43 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR) | What is the losses average when the against is greater than 1255 and wins is 0 and the draws less than 0? |
SELECT MIN(losses) FROM table_name_14 WHERE wins = 5 AND against < 1852 | CREATE TABLE table_name_14 (losses INTEGER, wins VARCHAR, against VARCHAR) | What is the smallest losses when the wins are 5 and the against less than 1852? |
SELECT MIN(losses) FROM table_name_9 WHERE ballarat_fl = "lake wendouree" AND wins < 9 | CREATE TABLE table_name_9 (losses INTEGER, ballarat_fl VARCHAR, wins VARCHAR) | What is the fewest losses that Ballarat FL of Lake Wendouree has when the wins are smaller than 9? |
SELECT MIN(byes) FROM table_name_49 WHERE wins = 3 | CREATE TABLE table_name_49 (byes INTEGER, wins VARCHAR) | What is the smallest byes when the wins are 3? |
SELECT MAX(attendance) FROM table_name_39 WHERE away_team = "wrexham" | CREATE TABLE table_name_39 (attendance INTEGER, away_team VARCHAR) | What is the highest Attendance when the away team was Wrexham? |
SELECT away_team FROM table_name_9 WHERE home_team = "wycombe wanderers" | CREATE TABLE table_name_9 (away_team VARCHAR, home_team VARCHAR) | What is the Away team when the home team was wycombe wanderers? |
SELECT MIN(attendance) FROM table_name_62 WHERE home_team = "slough town" | CREATE TABLE table_name_62 (attendance INTEGER, home_team VARCHAR) | What is the lowest Attendance when the home team was slough town? |
SELECT SUM(attendance) FROM table_name_22 WHERE away_team = "macclesfield town" | CREATE TABLE table_name_22 (attendance INTEGER, away_team VARCHAR) | What is the sum of Attendance when macclesfield town was the way team? |
SELECT COUNT(spins__since_1998__source) AS :_mediabase FROM table_name_61 WHERE ccm_chart = "chr" AND peak_pos < 1 | CREATE TABLE table_name_61 (spins__since_1998__source VARCHAR, ccm_chart VARCHAR, peak_pos VARCHAR) | How many Spins sources have a CCM Chart of CHR with a peak position less than 1? |
SELECT ccm_chart FROM table_name_94 WHERE total_wks = 18 | CREATE TABLE table_name_94 (ccm_chart VARCHAR, total_wks VARCHAR) | What CCM Chart had 18 total weeks? |
SELECT opponent FROM table_name_7 WHERE date = "december 18, 1988" | CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR) | What is Opponent, when Date is December 18, 1988? |
SELECT attendance FROM table_name_2 WHERE opponent = "pittsburgh steelers" | CREATE TABLE table_name_2 (attendance VARCHAR, opponent VARCHAR) | What is Attendance, when Opponent is Pittsburgh Steelers? |
SELECT AVG(week) FROM table_name_80 WHERE result = "l 37–34" | CREATE TABLE table_name_80 (week INTEGER, result VARCHAR) | What is the average Week, when Result is l 37–34? |
SELECT date FROM table_name_15 WHERE centerfold_model = "shannon long" | CREATE TABLE table_name_15 (date VARCHAR, centerfold_model VARCHAR) | When was Shannon Long the Centerfold model? |
SELECT centerfold_model FROM table_name_20 WHERE date = "5-88" | CREATE TABLE table_name_20 (centerfold_model VARCHAR, date VARCHAR) | Who was the Centerfold model on 5-88? |
SELECT centerfold_model FROM table_name_60 WHERE interview_subject = "bruce willis" | CREATE TABLE table_name_60 (centerfold_model VARCHAR, interview_subject VARCHAR) | Who was the Centerfild model that used Bruce Willis as her Interview subject? |
SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013" | CREATE TABLE table_name_16 (series VARCHAR, launch_date VARCHAR) | What is Series, when Launch Date is 23 February 2013? |
SELECT series FROM table_name_15 WHERE days > 99 AND prize = "€50,000" | CREATE TABLE table_name_15 (series VARCHAR, days VARCHAR, prize VARCHAR) | What is Series, when Days is greater than 99, and when Prize is €50,000? |
SELECT series FROM table_name_54 WHERE winner = "jetmir salaj" | CREATE TABLE table_name_54 (series VARCHAR, winner VARCHAR) | What is Series, when Winner is Jetmir Salaj? |
SELECT MAX(days) FROM table_name_16 WHERE launch_date = "23 january 2010" | CREATE TABLE table_name_16 (days INTEGER, launch_date VARCHAR) | What is Highest Days, when Launch Date is 23 January 2010? |
SELECT MIN(rank) FROM table_name_60 WHERE name = "jeremiah massey" AND games < 20 | CREATE TABLE table_name_60 (rank INTEGER, name VARCHAR, games VARCHAR) | What is the lowest Rank, when Name is Jeremiah Massey, and when Games is less than 20? |
SELECT MIN(games) FROM table_name_91 WHERE name = "jeremiah massey" AND points < 340 | CREATE TABLE table_name_91 (games INTEGER, name VARCHAR, points VARCHAR) | What is the lowest Games, when Name is Jeremiah Massey, and when Points is less than 340? |
SELECT MIN(points) FROM table_name_30 WHERE games > 20 AND team = "partizan belgrade" | CREATE TABLE table_name_30 (points INTEGER, games VARCHAR, team VARCHAR) | What is the lowest Points, when Games is greater than 20, and when Team is Partizan Belgrade? |
SELECT games FROM table_name_89 WHERE points < 340 AND rank > 3 | CREATE TABLE table_name_89 (games VARCHAR, points VARCHAR, rank VARCHAR) | What is Games, when Points is less than 340, and when Rank is greater than 3? |
SELECT SUM(rank) FROM table_name_45 WHERE name = "will solomon" AND games > 21 | CREATE TABLE table_name_45 (rank INTEGER, name VARCHAR, games VARCHAR) | What is the sum of Rank, when Name is Will Solomon, and when Games is greater than 21? |
SELECT first_leg FROM table_name_58 WHERE opposition = "twente" | CREATE TABLE table_name_58 (first_leg VARCHAR, opposition VARCHAR) | What was the first leg score in the match against Twente? |
SELECT first_leg FROM table_name_41 WHERE round = "2nd" | CREATE TABLE table_name_41 (first_leg VARCHAR, round VARCHAR) | What was the first leg score in the 2nd round? |
SELECT SUM(bills_points) FROM table_name_54 WHERE date = "nov. 11" | CREATE TABLE table_name_54 (bills_points INTEGER, date VARCHAR) | What were the Bills points on Nov. 11? |
SELECT MIN(bills_first_downs) FROM table_name_47 WHERE date = "oct. 29" AND bills_points > 23 | CREATE TABLE table_name_47 (bills_first_downs INTEGER, date VARCHAR, bills_points VARCHAR) | What was the Bills first downs on Oct. 29 with more the 23 Bills points? |
SELECT attendance FROM table_name_86 WHERE date = "december 6" | CREATE TABLE table_name_86 (attendance VARCHAR, date VARCHAR) | What was the Bill's attendance on December 6? |
SELECT date FROM table_name_79 WHERE week < 12 AND opponent = "houston oilers" | CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR, opponent VARCHAR) | On what date did the Bills play the Houston Oilers before week 12? |
SELECT result FROM table_name_27 WHERE attendance = "42,308" | CREATE TABLE table_name_27 (result VARCHAR, attendance VARCHAR) | Which team won on the day when attendance was 42,308? |
SELECT week FROM table_name_3 WHERE date = "december 13" | CREATE TABLE table_name_3 (week VARCHAR, date VARCHAR) | What week of the season was December 13? |
SELECT MAX(points) FROM table_name_75 WHERE position = 2 AND drawn > 3 | CREATE TABLE table_name_75 (points INTEGER, position VARCHAR, drawn VARCHAR) | What is the highest Points in Position 2 with more than 3 Drawn games? |
SELECT difference FROM table_name_53 WHERE position = 5 | CREATE TABLE table_name_53 (difference VARCHAR, position VARCHAR) | What is the goal Difference at Position 5? |
SELECT AVG(played) FROM table_name_3 WHERE position > 3 AND against < 27 AND lost < 6 | CREATE TABLE table_name_3 (played INTEGER, lost VARCHAR, position VARCHAR, against VARCHAR) | What is the average games Played with positions higher than 3 that have goals Against less than 27 and a Lost games smaller than 6? |
SELECT MAX(points) FROM table_name_39 WHERE lost = 8 | CREATE TABLE table_name_39 (points INTEGER, lost VARCHAR) | What is the highest Points with a Lost total of 8? |
SELECT AVG(points) FROM table_name_78 WHERE lost > 20 | CREATE TABLE table_name_78 (points INTEGER, lost INTEGER) | Which average Points has a Lost higher than 20? |
SELECT SUM(cuts_made) FROM table_name_72 WHERE top_10 < 2 | CREATE TABLE table_name_72 (cuts_made INTEGER, top_10 INTEGER) | What are the Cuts made with a Top-10 smaller than 2? |
SELECT AVG(top_25) FROM table_name_63 WHERE top_10 = 8 AND events = 45 | CREATE TABLE table_name_63 (top_25 INTEGER, top_10 VARCHAR, events VARCHAR) | What is the Top-25 with a Top-10 of 8, and an Events of 45? |
SELECT AVG(top_25) FROM table_name_45 WHERE events = 20 AND wins > 2 | CREATE TABLE table_name_45 (top_25 INTEGER, events VARCHAR, wins VARCHAR) | What is the Top-25 with an Events of 20, and a Wins larger than 2? |
SELECT MAX(top_10) FROM table_name_57 WHERE top_25 < 18 AND top_5 = 6 AND cuts_made < 20 | CREATE TABLE table_name_57 (top_10 INTEGER, cuts_made VARCHAR, top_25 VARCHAR, top_5 VARCHAR) | Which Top-10 has a Top-25 smaller than 18, and a Top-5 of 6, and a Cuts made smaller than 20? |
SELECT to_par FROM table_name_58 WHERE score < 68 AND country = "england" | CREATE TABLE table_name_58 (to_par VARCHAR, score VARCHAR, country VARCHAR) | What is Top Par, when Score is less than 68, and when Country is England? |
SELECT SUM(score) FROM table_name_18 WHERE player = "vijay singh" | CREATE TABLE table_name_18 (score INTEGER, player VARCHAR) | What is Sum of Score, when Player is Vijay Singh? |
Subsets and Splits