answer stringlengths 18 557 | question stringlengths 12 244 | context stringlengths 27 489 |
|---|---|---|
SELECT year FROM table_name_72 WHERE status = "won" | In what year is the status of won? | CREATE TABLE table_name_72 (year VARCHAR, status VARCHAR) |
SELECT date FROM table_name_89 WHERE week = 1 | When has a Week of 1? | CREATE TABLE table_name_89 (date VARCHAR, week VARCHAR) |
SELECT result FROM table_name_33 WHERE alternate = "sun yue" AND event = "2007 wcc" | What was the result for the 2007 WCC when Sun Yue was the alternate? | CREATE TABLE table_name_33 (result VARCHAR, alternate VARCHAR, event VARCHAR) |
SELECT number_of_episodes FROM table_name_74 WHERE notes = "moved to run a farm with boyfriend jake." | What is Number Of Episodes, when Notes is "Moved to run a farm with boyfriend Jake."? | CREATE TABLE table_name_74 (number_of_episodes VARCHAR, notes VARCHAR) |
SELECT central FROM table_26614365_1 WHERE english = "robbers" | What is the central word for "robbers"? | CREATE TABLE table_26614365_1 (central VARCHAR, english VARCHAR) |
SELECT title FROM table_27832075_2 WHERE episode__number = "12" | What is the name of episode number 12 of the season? | CREATE TABLE table_27832075_2 (title VARCHAR, episode__number VARCHAR) |
SELECT COUNT(area_km_2) FROM table_name_60 WHERE census_ranking = "3,129 of 5,008" AND population < 460 | What is the total area with the census ranking of 3,129 of 5,008, and a Population smaller than 460? | CREATE TABLE table_name_60 (area_km_2 VARCHAR, census_ranking VARCHAR, population VARCHAR) |
SELECT class FROM table_name_10 WHERE call_sign = "w298ak" | What class does the w298ak sign belong to? | CREATE TABLE table_name_10 (class VARCHAR, call_sign VARCHAR) |
SELECT player FROM table_10960039_1 WHERE pick__number = 2 | What player is pick #2? | CREATE TABLE table_10960039_1 (player VARCHAR, pick__number VARCHAR) |
SELECT COUNT(scored) FROM table_name_48 WHERE position > 4 AND points = 19 | What is the total number scored for the team that had 19 points and a position larger than 4? | CREATE TABLE table_name_48 (scored VARCHAR, position VARCHAR, points VARCHAR) |
SELECT successor FROM table_2147588_4 WHERE district = "New York 8th" | When new york 8th is teh district who is the successor? | CREATE TABLE table_2147588_4 (successor VARCHAR, district VARCHAR) |
SELECT bask FROM table_name_69 WHERE indoor_track = "yes" AND school = "valparaiso" | What is the basketball status for Valparaiso who has an indoor track status of yes? | CREATE TABLE table_name_69 (bask VARCHAR, indoor_track VARCHAR, school VARCHAR) |
SELECT height FROM table_name_56 WHERE position = "guard" AND year = "freshman" AND name = "cetera degraffenreid" | How tall is the freshman guard Cetera Degraffenreid? | CREATE TABLE table_name_56 (height VARCHAR, name VARCHAR, position VARCHAR, year VARCHAR) |
SELECT rank FROM table_name_75 WHERE points > 123 AND chassis = "audi r8" AND class = "lmp900" | What is the rank with more than 123 points, an audi r8 chassis, and a lmp900 class? | CREATE TABLE table_name_75 (rank VARCHAR, class VARCHAR, points VARCHAR, chassis VARCHAR) |
SELECT council_area FROM table_name_51 WHERE urban_sub_area = "larkhall" | What is the council area for the Larkhall urban sub-area? | CREATE TABLE table_name_51 (council_area VARCHAR, urban_sub_area VARCHAR) |
SELECT name_of_lava_dome FROM table_1081235_1 WHERE last_eruption_or_growth_episode = "Holocene" | Which lava domes erupted or had a growth episode during the Holocene period? | CREATE TABLE table_1081235_1 (name_of_lava_dome VARCHAR, last_eruption_or_growth_episode VARCHAR) |
SELECT MAX(bronze) FROM table_name_4 WHERE nation = "west germany" AND gold > 0 | What is the highest number of bronze medals of west germany, which has more than 0 golds? | CREATE TABLE table_name_4 (bronze INTEGER, nation VARCHAR, gold VARCHAR) |
SELECT result FROM table_name_97 WHERE location = "boston" | What was the result for the match held in Boston? | CREATE TABLE table_name_97 (result VARCHAR, location VARCHAR) |
SELECT SUM(money___) AS $__ FROM table_name_55 WHERE country = "united states" AND player = "sam snead" | What is the sum of Money of the game that was played in the United States with Sam Snead as a player? | CREATE TABLE table_name_55 (money___ INTEGER, country VARCHAR, player VARCHAR) |
SELECT MIN(Ends) AS lost FROM table_29545993_3 WHERE stolen_ends = 6 AND l > 5.0 | What is the minimum ends lost record when the stolen ends records is 6 and the loss record is bigger than 5.0? | CREATE TABLE table_29545993_3 (Ends INTEGER, stolen_ends VARCHAR, l VARCHAR) |
SELECT brand__to_ FROM table_26397277_3 WHERE pick__number = 15 | Name the brand for pick number 15 | CREATE TABLE table_26397277_3 (brand__to_ VARCHAR, pick__number VARCHAR) |
SELECT opponent FROM table_name_25 WHERE date = "april 26, 2003" | Who was the opponent on april 26, 2003? | CREATE TABLE table_name_25 (opponent VARCHAR, date VARCHAR) |
SELECT player FROM table_1473672_9 WHERE pick__number = 132 | who is the the player with pick # being 132 | CREATE TABLE table_1473672_9 (player VARCHAR, pick__number VARCHAR) |
SELECT home_team AS score FROM table_name_39 WHERE time = "12:00 pm" AND ground = "waverley park" | What is Home Team Score, when Time is 12:00 PM, and when Ground is Waverley Park? | CREATE TABLE table_name_39 (home_team VARCHAR, time VARCHAR, ground VARCHAR) |
SELECT COUNT(liberal_candidates) FROM table_name_94 WHERE liberal_leader = "pearson" AND _percentage_of_popular_vote = "40.2%" AND seats_won < 131 | How many Liberal candidates have a Liberal leader of pearson, and a % of popular vote of 40.2%, and Seats won smaller than 131? | CREATE TABLE table_name_94 (liberal_candidates VARCHAR, seats_won VARCHAR, liberal_leader VARCHAR, _percentage_of_popular_vote VARCHAR) |
SELECT married_filing_separately FROM table_name_77 WHERE single = "$0–$8,350" | Name the married filing separately for single of $0–$8,350 | CREATE TABLE table_name_77 (married_filing_separately VARCHAR, single VARCHAR) |
SELECT player FROM table_name_97 WHERE total = 147 AND country = "spain" | What player has a 147 total from Spain? | CREATE TABLE table_name_97 (player VARCHAR, total VARCHAR, country VARCHAR) |
SELECT SUM(games_played) FROM table_name_31 WHERE losses < 7 AND wins = 6 AND goals_for > 76 | what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76? | CREATE TABLE table_name_31 (games_played INTEGER, goals_for VARCHAR, losses VARCHAR, wins VARCHAR) |
SELECT MAX(rank) FROM table_name_58 WHERE gold = 0 AND total > 1 AND silver > 0 | What is the rank when there is 0 gold, the total is more than 1, and silver is more than 0? | CREATE TABLE table_name_58 (rank INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) |
SELECT semifinalists FROM table_29302781_12 WHERE runner_up = "Peter Feigl" | Who were the semifinalists when the runner-up was Peter Feigl? | CREATE TABLE table_29302781_12 (semifinalists VARCHAR, runner_up VARCHAR) |
SELECT venue FROM table_name_96 WHERE result = "23rd" | Which venue led to a result of 23rd? | CREATE TABLE table_name_96 (venue VARCHAR, result VARCHAR) |
SELECT rating__18_49_ FROM table_28980706_4 WHERE viewers__millions_ = "10.02" | When there are 10.02 million viewers what is the rating (18-49)? | CREATE TABLE table_28980706_4 (rating__18_49_ VARCHAR, viewers__millions_ VARCHAR) |
SELECT AVG(area) FROM table_name_34 WHERE capital = "valparaíso" | What is the average area with valparaíso as the capital? | CREATE TABLE table_name_34 (area INTEGER, capital VARCHAR) |
SELECT MAX(attendance) FROM table_name_83 WHERE opponent = "oakland raiders" AND week > 9 | What is the highest attendance that has oakland raiders as the opponent, with a week greater than 9? | CREATE TABLE table_name_83 (attendance INTEGER, opponent VARCHAR, week VARCHAR) |
SELECT realization FROM table_name_71 WHERE gloss = "'to be, to do'" | Name the realization for 'to be, to do' | CREATE TABLE table_name_71 (realization VARCHAR, gloss VARCHAR) |
SELECT location FROM table_name_62 WHERE home_team = "slovakia" | What was the location of the home game for Slovakia? | CREATE TABLE table_name_62 (location VARCHAR, home_team VARCHAR) |
SELECT site FROM table_name_98 WHERE score = "0-1" | Which site has a Score of 0-1? | CREATE TABLE table_name_98 (site VARCHAR, score VARCHAR) |
SELECT position FROM table_name_52 WHERE player = "gerald carter" | What position does gerald carter play? | CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR) |
SELECT area__acres__ FROM table_30120605_1 WHERE townland = "Gortnaskehy" | What is the area in acres of gortnaskehy? | CREATE TABLE table_30120605_1 (area__acres__ VARCHAR, townland VARCHAR) |
SELECT MAX(gold_medals) FROM table_1305623_20 WHERE ensemble = "Naugatuck HS" | What is the highest number of gold medals Naugatuck HS won? | CREATE TABLE table_1305623_20 (gold_medals INTEGER, ensemble VARCHAR) |
SELECT score FROM table_name_75 WHERE team_2 = "usl dunkerque (d2)" | When Team 2 was USL Dunkerque (D2), what was the score | CREATE TABLE table_name_75 (score VARCHAR, team_2 VARCHAR) |
SELECT COUNT(wickets) FROM table_name_22 WHERE rank > 5 | What are the total number of Wickets that ranger higher than 5? | CREATE TABLE table_name_22 (wickets VARCHAR, rank INTEGER) |
SELECT san_antonio_de_lomerío_municipality___percentage_ FROM table_19998428_3 WHERE cuatro_cañadas_municipality___percentage_ = "252" | If the Cuatro Cañadas municipality percentage is 252, what are all the San Antonio de Lomerío municipality percentage? | CREATE TABLE table_19998428_3 (san_antonio_de_lomerío_municipality___percentage_ VARCHAR, cuatro_cañadas_municipality___percentage_ VARCHAR) |
SELECT title FROM table_27303975_3 WHERE catalog_number = "CAL01 / 0091037137319" | What is the title when the catalog number is cal01 / 0091037137319? | CREATE TABLE table_27303975_3 (title VARCHAR, catalog_number VARCHAR) |
SELECT venue FROM table_name_14 WHERE away_team = "south melbourne" | Which venue has an Away team of south melbourne? | CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) |
SELECT COUNT(school_club_team) FROM table_11545282_5 WHERE years_for_jazz = "2010-11" | How many schools are listed for the player who played the years for Jazz in 2010-11? | CREATE TABLE table_11545282_5 (school_club_team VARCHAR, years_for_jazz VARCHAR) |
SELECT Name FROM people WHERE Nationality <> "Russia" | Show names of people whose nationality is not "Russia". | CREATE TABLE people (Name VARCHAR, Nationality VARCHAR) |
SELECT mascot FROM table_name_80 WHERE ihsaa_class___football_class = "2a/2a" | Which mascot has an IHSAA Class and Football class of 2A/2A? | CREATE TABLE table_name_80 (mascot VARCHAR, ihsaa_class___football_class VARCHAR) |
SELECT record FROM table_name_14 WHERE date = "april 13" | What is the Record for April 13? | CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR) |
SELECT score FROM table_24638867_6 WHERE outcome = "Winner" AND opponents = "Julie Halard-Decugis Ai Sugiyama" | Name the score for winner and julie halard-decugis ai sugiyama | CREATE TABLE table_24638867_6 (score VARCHAR, outcome VARCHAR, opponents VARCHAR) |
SELECT AVG(position) FROM table_name_16 WHERE bike_no > 8 AND points < 240 | What is the average Position, when Bike No is greater than 8, and when Points is less than 240? | CREATE TABLE table_name_16 (position INTEGER, bike_no VARCHAR, points VARCHAR) |
SELECT established FROM table_name_74 WHERE institution = "north jersey phoenix" | What is the year established of North Jersey Phoenix? | CREATE TABLE table_name_74 (established VARCHAR, institution VARCHAR) |
SELECT number_of_votes FROM table_name_74 WHERE candidate = "edward mahama" AND election < 2004 AND share_of_votes = "3.0%" | What is the number of the votes of the election before 2004 with edward mahama as the candidate with 3.0% share of votes? | CREATE TABLE table_name_74 (number_of_votes VARCHAR, share_of_votes VARCHAR, candidate VARCHAR, election VARCHAR) |
SELECT COUNT(winnings) FROM table_1507423_5 WHERE team_s_ = "#07 Robby Gordon Motorsports" | How many entries are shown for winnings for team #07 robby gordon motorsports? | CREATE TABLE table_1507423_5 (winnings VARCHAR, team_s_ VARCHAR) |
SELECT date FROM table_name_19 WHERE loss = "a. benes" AND opponent = "rockies" | What was the date of A. Benes loss to the Rockies? | CREATE TABLE table_name_19 (date VARCHAR, loss VARCHAR, opponent VARCHAR) |
SELECT venue FROM table_17120964_9 WHERE attendance = "702" | where was the venue where the attendance was 702? | CREATE TABLE table_17120964_9 (venue VARCHAR, attendance VARCHAR) |
SELECT written_by FROM table_29273182_1 WHERE production_code = "IP03012" | Who wrote the episode with ip03012 as the production code? | CREATE TABLE table_29273182_1 (written_by VARCHAR, production_code VARCHAR) |
SELECT result FROM table_name_91 WHERE week = 1 | What is the result of the week 1 game? | CREATE TABLE table_name_91 (result VARCHAR, week VARCHAR) |
SELECT nationality FROM table_22402438_7 WHERE player = "John Garrett" | Which nationality is player John Garrett? | CREATE TABLE table_22402438_7 (nationality VARCHAR, player VARCHAR) |
SELECT COUNT(school_club_team) FROM table_10015132_16 WHERE player = "Jalen Rose" | how many schools or teams had jalen rose | CREATE TABLE table_10015132_16 (school_club_team VARCHAR, player VARCHAR) |
SELECT text_symbol FROM table_name_68 WHERE border = "red" AND type_of_sign = "warning" | Which sign has a red border and a warning sign? | CREATE TABLE table_name_68 (text_symbol VARCHAR, border VARCHAR, type_of_sign VARCHAR) |
SELECT player FROM table_name_10 WHERE club_team = "indiana ice (ushl)" | What Player Club Team is Indiana Ice (ushl)? | CREATE TABLE table_name_10 (player VARCHAR, club_team VARCHAR) |
SELECT T1.professional_id, T1.role_code, T1.first_name FROM Professionals AS T1 JOIN Treatments AS T2 ON T1.professional_id = T2.professional_id GROUP BY T1.professional_id HAVING COUNT(*) >= 2 | Which professionals have done at least two treatments? List the professional's id, role, and first name. | CREATE TABLE Professionals (professional_id VARCHAR, role_code VARCHAR, first_name VARCHAR); CREATE TABLE Treatments (professional_id VARCHAR) |
SELECT goals FROM table_name_78 WHERE assists = "15" AND player = "joey worthen" | How many goals did Joey Worthen have when he had 15 assists? | CREATE TABLE table_name_78 (goals VARCHAR, assists VARCHAR, player VARCHAR) |
SELECT density__pop_km²_ FROM table_14325808_1 WHERE population__2011_census_ = 5402 | What is the density in places where the 2011 census gives a population of 5402? | CREATE TABLE table_14325808_1 (density__pop_km²_ VARCHAR, population__2011_census_ VARCHAR) |
SELECT talent FROM table_name_82 WHERE hometown = "lexington, sc" | What is the talent of the contestant from Lexington, SC? | CREATE TABLE table_name_82 (talent VARCHAR, hometown VARCHAR) |
SELECT father FROM table_name_89 WHERE spouse = "ottokar ii" AND birth = "1204" | What is the name of the father who was born in 1204 and married ottokar ii? | CREATE TABLE table_name_89 (father VARCHAR, spouse VARCHAR, birth VARCHAR) |
SELECT MAX(round) FROM table_name_85 WHERE position = "(c)" | what is the round when the position is (c)? | CREATE TABLE table_name_85 (round INTEGER, position VARCHAR) |
SELECT MIN(week) FROM table_name_93 WHERE date = "october 5, 2003" | What is the Week number on October 5, 2003? | CREATE TABLE table_name_93 (week INTEGER, date VARCHAR) |
SELECT score FROM table_name_67 WHERE to_par = "+1" AND country = "sweden" | Which Score has a To par of +1 in sweden? | CREATE TABLE table_name_67 (score VARCHAR, to_par VARCHAR, country VARCHAR) |
SELECT best_supporting_actress FROM table_15301258_1 WHERE best_supporting_actor = "Sun Honglei for Mongol" | Name the best supporting actress for sun honglei for mongol | CREATE TABLE table_15301258_1 (best_supporting_actress VARCHAR, best_supporting_actor VARCHAR) |
SELECT score FROM table_name_50 WHERE date = "march 11" | What was the score on march 11? | CREATE TABLE table_name_50 (score VARCHAR, date VARCHAR) |
SELECT portfolio FROM table_name_77 WHERE minister = "carlo giovanardi" | Tell me the portfolio of minister of carlo giovanardi | CREATE TABLE table_name_77 (portfolio VARCHAR, minister VARCHAR) |
SELECT province FROM table_27592654_2 WHERE election_date = "5 Cannot handle non-empty timestamp argument! 1861" | What was the province with an election date of 5 cannot handle non-empty timestamp argument! 1861? | CREATE TABLE table_27592654_2 (province VARCHAR, election_date VARCHAR) |
SELECT affiliation FROM table_name_89 WHERE estd = "1982" AND location = "coimbatore" | Where is the coimbatore affilation that was established in 1982? | CREATE TABLE table_name_89 (affiliation VARCHAR, estd VARCHAR, location VARCHAR) |
SELECT constructor FROM table_name_49 WHERE grid > 19 AND time_retired = "suspension" | Who constructed the car with a grid over 19 that retired due to suspension? | CREATE TABLE table_name_49 (constructor VARCHAR, grid VARCHAR, time_retired VARCHAR) |
SELECT COUNT(DISTINCT President_Vote) FROM VOTING_RECORD | Find the distinct number of president votes. | CREATE TABLE VOTING_RECORD (President_Vote VARCHAR) |
SELECT position FROM table_20898602_1 WHERE pick__number = 79 | what's the position of pick # 79 | CREATE TABLE table_20898602_1 (position VARCHAR, pick__number VARCHAR) |
SELECT first_class_team FROM table_name_51 WHERE player = "sanath jayasuriya" | What first class team does sanath jayasuriya play for? | CREATE TABLE table_name_51 (first_class_team VARCHAR, player VARCHAR) |
SELECT home_team FROM table_name_40 WHERE venue = "punt road oval" | Which home team plays at Punt Road Oval? | CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR) |
SELECT season FROM table_name_19 WHERE acquisition_via = "trade" AND school_club_team = "east" | What season did School/Club Team, East have an Acquisition via of trade? | CREATE TABLE table_name_19 (season VARCHAR, acquisition_via VARCHAR, school_club_team VARCHAR) |
SELECT T1.customer_id, T1.first_name, COUNT(*) FROM Customers AS T1 JOIN bookings AS T2 ON T1.customer_id = T2.customer_id GROUP BY T1.customer_id | How many bookings did each customer make? List the customer id, first name, and the count. | CREATE TABLE bookings (customer_id VARCHAR); CREATE TABLE Customers (customer_id VARCHAR, first_name VARCHAR) |
SELECT vivek_express__15905_15906 FROM table_26745820_5 WHERE kanyakumari = "Bhavnagar" | What is the name of the only route that runs to bhavnagar? | CREATE TABLE table_26745820_5 (vivek_express__15905_15906 VARCHAR, kanyakumari VARCHAR) |
SELECT time FROM table_name_40 WHERE laps < 28 AND rider = "nicky hayden" | Which Time has Laps smaller than 28, and a Rider of nicky hayden? | CREATE TABLE table_name_40 (time VARCHAR, laps VARCHAR, rider VARCHAR) |
SELECT SUM(time) FROM table_name_15 WHERE react < 0.20400000000000001 AND rank = 1 | Which Time has a Reaction smaller than 0.20400000000000001, and a Rank of 1? | CREATE TABLE table_name_15 (time INTEGER, react VARCHAR, rank VARCHAR) |
SELECT label FROM table_name_24 WHERE format = "stereo lp" AND catalog = "scyl-934,623" | What label uses the stereo LP for catalog scyl-934,623? | CREATE TABLE table_name_24 (label VARCHAR, format VARCHAR, catalog VARCHAR) |
SELECT country FROM table_name_75 WHERE score = 68 - 72 - 67 = 207 | what is the country when the score is 68-72-67=207? | CREATE TABLE table_name_75 (country VARCHAR, score VARCHAR) |
SELECT model_number FROM table_name_57 WHERE order_part_number = "tmsmt37bqx5ld" | Which model number has an order part number of TMSMT37BQX5LD? | CREATE TABLE table_name_57 (model_number VARCHAR, order_part_number VARCHAR) |
SELECT year FROM table_name_88 WHERE qual = "totals" | What year had the qual of totals | CREATE TABLE table_name_88 (year VARCHAR, qual VARCHAR) |
SELECT party FROM table_1342379_10 WHERE incumbent = "Charles H. Brand" | what is the affiliation of charles h. brand | CREATE TABLE table_1342379_10 (party VARCHAR, incumbent VARCHAR) |
SELECT SUM(laps) FROM table_name_70 WHERE driver = "david coulthard" AND grid < 14 | How many Laps have a Driver of david coulthard, and a Grid smaller than 14? | CREATE TABLE table_name_70 (laps INTEGER, driver VARCHAR, grid VARCHAR) |
SELECT state___territory FROM table_name_85 WHERE building = "lovett tower" | What state/territory has lovett tower as the building? | CREATE TABLE table_name_85 (state___territory VARCHAR, building VARCHAR) |
SELECT year FROM table_name_52 WHERE home_town = "fayetteville, nc" | In what year of school is the player from Fayetteville, NC? | CREATE TABLE table_name_52 (year VARCHAR, home_town VARCHAR) |
SELECT player FROM table_name_29 WHERE to_par = "+1" AND country = "scotland" | WHAT IS TEH PLAYER WITH A TO PAR OF +1 FOR SCOTLAND? | CREATE TABLE table_name_29 (player VARCHAR, to_par VARCHAR, country VARCHAR) |
SELECT pinyin FROM table_1638437_2 WHERE population = 44617 | Name the pinyin for where population is 44617 | CREATE TABLE table_1638437_2 (pinyin VARCHAR, population VARCHAR) |
SELECT landesliga_nord FROM table_20181270_3 WHERE landesliga_mitte = "Freier TuS Regensburg" | Name the landesliga nord for freier tus regensburg | CREATE TABLE table_20181270_3 (landesliga_nord VARCHAR, landesliga_mitte VARCHAR) |
SELECT company FROM table_20667854_1 WHERE index_weighting___percentage = "1" AND city = "Dimitrovgrad" | What is every company with an index weighting % of 1 and the city of Dimitrovgrad? | CREATE TABLE table_20667854_1 (company VARCHAR, index_weighting___percentage VARCHAR, city VARCHAR) |
SELECT start_time FROM table_name_48 WHERE date = "december 24, 2005" | Tell me the start time for december 24, 2005 | CREATE TABLE table_name_48 (start_time VARCHAR, date VARCHAR) |
SELECT winner FROM table_name_59 WHERE runner_up = "kimberly kim" AND country = "united states" | Who was the winner from the United States the year Kimberly Kim was runner-up? | CREATE TABLE table_name_59 (winner VARCHAR, runner_up VARCHAR, country VARCHAR) |
SELECT player FROM table_name_34 WHERE total > 293 AND year_s__won = "1989" | What golfer has a greater than 293 total, and won in 1989? | CREATE TABLE table_name_34 (player VARCHAR, total VARCHAR, year_s__won VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.