question
stringlengths 12
244
| context
stringlengths 27
489
| answer
stringlengths 18
557
|
---|---|---|
What is the highest power (hp) of an OM314 engine? | CREATE TABLE table_name_5 (power__hp_ INTEGER, engine VARCHAR) | SELECT MAX(power__hp_) FROM table_name_5 WHERE engine = "om314" |
When was power (hp) less than 93 for the OM324 engine used? | CREATE TABLE table_name_4 (used VARCHAR, power__hp_ VARCHAR, engine VARCHAR) | SELECT used FROM table_name_4 WHERE power__hp_ < 93 AND engine = "om324" |
What is the name for Nagpur district, with a reserved for ( SC / ST /None) of none, and a Constituency number of 59? | CREATE TABLE table_name_56 (name VARCHAR, constituency_number VARCHAR, district VARCHAR, reserved_for___sc___st__none_ VARCHAR) | SELECT name FROM table_name_56 WHERE district = "nagpur" AND reserved_for___sc___st__none_ = "none" AND constituency_number = "59" |
What district shows reserved for (SC / ST /None) of total:? | CREATE TABLE table_name_45 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR) | SELECT district FROM table_name_45 WHERE reserved_for___sc___st__none_ = "total:" |
What is the number of electorates (2009) for Hingna? | CREATE TABLE table_name_78 (number_of_electorates__2009_ INTEGER, name VARCHAR) | SELECT AVG(number_of_electorates__2009_) FROM table_name_78 WHERE name = "hingna" |
What is the constituency number with a reserved for ( SC / ST /None) of none, for Katol? | CREATE TABLE table_name_65 (constituency_number VARCHAR, reserved_for___sc___st__none_ VARCHAR, name VARCHAR) | SELECT constituency_number FROM table_name_65 WHERE reserved_for___sc___st__none_ = "none" AND name = "katol" |
What is the total number of electorates (2009) for Katol? | CREATE TABLE table_name_57 (number_of_electorates__2009_ VARCHAR, name VARCHAR) | SELECT COUNT(number_of_electorates__2009_) FROM table_name_57 WHERE name = "katol" |
Which Year has a Category of best performance by a leading actress in a musical? | CREATE TABLE table_name_72 (year INTEGER, category VARCHAR) | SELECT MAX(year) FROM table_name_72 WHERE category = "best performance by a leading actress in a musical" |
Which Award Ceremony has a Result of nominated, and a Category of best revival of a musical? | CREATE TABLE table_name_75 (award_ceremony VARCHAR, result VARCHAR, category VARCHAR) | SELECT award_ceremony FROM table_name_75 WHERE result = "nominated" AND category = "best revival of a musical" |
What is the analogue terrestrial channel when the internet shows channel4.com? | CREATE TABLE table_name_95 (analogue_terrestrial_channel VARCHAR, internet VARCHAR) | SELECT analogue_terrestrial_channel FROM table_name_95 WHERE internet = "channel4.com" |
What is the position when the channel shows channel 4? | CREATE TABLE table_name_42 (position VARCHAR, channel VARCHAR) | SELECT position FROM table_name_42 WHERE channel = "channel 4" |
What is the channel when the analogue terrestrial channel shows n/a, and the internet is itv.com, with a position larger than 6, and digital terrestrial channel is 6 27 (+1)? | CREATE TABLE table_name_10 (channel VARCHAR, digital_terrestrial_channel VARCHAR, position VARCHAR, analogue_terrestrial_channel VARCHAR, internet VARCHAR) | SELECT channel FROM table_name_10 WHERE analogue_terrestrial_channel = "n/a" AND internet = "itv.com" AND position > 6 AND digital_terrestrial_channel = "6 27 (+1)" |
What is the internet when the position is more than 13? | CREATE TABLE table_name_12 (internet VARCHAR, position INTEGER) | SELECT internet FROM table_name_12 WHERE position > 13 |
What are the Notes when the Method is decision? | CREATE TABLE table_name_74 (notes VARCHAR, method VARCHAR) | SELECT notes FROM table_name_74 WHERE method = "decision" |
What was the result for the 2012 ibjjf world jiu-jitsu championships event when the method was points (4 x 0)? | CREATE TABLE table_name_95 (result VARCHAR, event VARCHAR, method VARCHAR) | SELECT result FROM table_name_95 WHERE event = "2012 ibjjf world jiu-jitsu championships" AND method = "points (4 x 0)" |
Who was the opponent when the method was points (4 x 0)? | CREATE TABLE table_name_55 (opponent VARCHAR, method VARCHAR) | SELECT opponent FROM table_name_55 WHERE method = "points (4 x 0)" |
What was the result against opponent Amanda Lucas? | CREATE TABLE table_name_36 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_36 WHERE opponent = "amanda lucas" |
Which event has notes of women +60kg quarterfinal? | CREATE TABLE table_name_43 (event VARCHAR, notes VARCHAR) | SELECT event FROM table_name_43 WHERE notes = "women +60kg quarterfinal" |
On what date was the attendance more than 17,652? | CREATE TABLE table_name_15 (date VARCHAR, attendance INTEGER) | SELECT date FROM table_name_15 WHERE attendance > 17 OFFSET 652 |
What is the record on January 18? | CREATE TABLE table_name_41 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_41 WHERE date = "january 18" |
What was the lowest draw when the against was larger than 2638? | CREATE TABLE table_name_50 (draws INTEGER, against INTEGER) | SELECT MIN(draws) FROM table_name_50 WHERE against > 2638 |
What was the lowest against when the draw was at least 0? | CREATE TABLE table_name_16 (against INTEGER, draws INTEGER) | SELECT MIN(against) FROM table_name_16 WHERE draws > 0 |
What were the highest losses for a byes larger than 2? | CREATE TABLE table_name_99 (losses INTEGER, byes INTEGER) | SELECT MAX(losses) FROM table_name_99 WHERE byes > 2 |
What position did the Belenenses club occupy in 1960/61? | CREATE TABLE table_name_2 (position_in_1960_1961 VARCHAR, clubs VARCHAR) | SELECT position_in_1960_1961 FROM table_name_2 WHERE clubs = "belenenses" |
Which club has played for 27 seasons at this level? | CREATE TABLE table_name_10 (clubs VARCHAR, seasons_at_this_level VARCHAR) | SELECT clubs FROM table_name_10 WHERE seasons_at_this_level = "27 seasons" |
What is the NFL team for Toledo? | CREATE TABLE table_name_23 (nfl_team VARCHAR, college VARCHAR) | SELECT nfl_team FROM table_name_23 WHERE college = "toledo" |
What is Northern Colorado's Rnd.? | CREATE TABLE table_name_18 (rnd VARCHAR, college VARCHAR) | SELECT rnd FROM table_name_18 WHERE college = "northern colorado" |
What is the lowest value for Draws, when South West DFL is "Tyrendarra", and when Byes is greater than 0? | CREATE TABLE table_name_68 (draws INTEGER, south_west_dfl VARCHAR, byes VARCHAR) | SELECT MIN(draws) FROM table_name_68 WHERE south_west_dfl = "tyrendarra" AND byes > 0 |
What is the sum of Against, when Wins is greater than 8, and when Losses is greater than 6? | CREATE TABLE table_name_19 (against INTEGER, wins VARCHAR, losses VARCHAR) | SELECT SUM(against) FROM table_name_19 WHERE wins > 8 AND losses > 6 |
What is the total number of Byes, when South West DFL is "Coleraine", and when Wins is less than 12? | CREATE TABLE table_name_80 (byes VARCHAR, south_west_dfl VARCHAR, wins VARCHAR) | SELECT COUNT(byes) FROM table_name_80 WHERE south_west_dfl = "coleraine" AND wins < 12 |
What is the average value for Wins, when South West DFL is "Coleraine", and when Byes is greater than 0? | CREATE TABLE table_name_73 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) | SELECT AVG(wins) FROM table_name_73 WHERE south_west_dfl = "coleraine" AND byes > 0 |
What is the lowest value for Wins, when South West DFL is "Cavendish", and when Byes is less than 0? | CREATE TABLE table_name_58 (wins INTEGER, south_west_dfl VARCHAR, byes VARCHAR) | SELECT MIN(wins) FROM table_name_58 WHERE south_west_dfl = "cavendish" AND byes < 0 |
What is the total number of Wins, when Losses is less than 10, when Against is less than 1253, and when Byes is less than 0? | CREATE TABLE table_name_42 (wins VARCHAR, byes VARCHAR, losses VARCHAR, against VARCHAR) | SELECT COUNT(wins) FROM table_name_42 WHERE losses < 10 AND against < 1253 AND byes < 0 |
What score has a year later than 1974, with hawthorn as the champion? | CREATE TABLE table_name_31 (score VARCHAR, year VARCHAR, champion VARCHAR) | SELECT score FROM table_name_31 WHERE year > 1974 AND champion = "hawthorn" |
What champion has north melbourne as the runner-up? | CREATE TABLE table_name_92 (champion VARCHAR, runner_up VARCHAR) | SELECT champion FROM table_name_92 WHERE runner_up = "north melbourne" |
What is the location for Egypt in 2013? | CREATE TABLE table_name_81 (location VARCHAR, year VARCHAR, country VARCHAR) | SELECT location FROM table_name_81 WHERE year = "2013" AND country = "egypt" |
What is the location for Yemen in 1994? | CREATE TABLE table_name_1 (location VARCHAR, year VARCHAR, country VARCHAR) | SELECT location FROM table_name_1 WHERE year = "1994" AND country = "yemen" |
What year is the location Ta'izz? | CREATE TABLE table_name_61 (year VARCHAR, location VARCHAR) | SELECT year FROM table_name_61 WHERE location = "ta'izz" |
Which location is in the Belgian Congo Tanganyika? | CREATE TABLE table_name_49 (location VARCHAR, country VARCHAR) | SELECT location FROM table_name_49 WHERE country = "belgian congo tanganyika" |
Who is the perpetrator in Bait Al-Aqari? | CREATE TABLE table_name_64 (perpetrator VARCHAR, location VARCHAR) | SELECT perpetrator FROM table_name_64 WHERE location = "bait al-aqari" |
Who is the perpetrator in Uganda who killed 12 in Kampala? | CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR) | SELECT perpetrator FROM table_name_54 WHERE country = "uganda" AND location = "kampala" AND killed = "12" |
Who was the home team when grimsby town was the away team? | CREATE TABLE table_name_91 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_91 WHERE away_team = "grimsby town" |
How many goals for Kenton have a transfer window of Summer? | CREATE TABLE table_name_36 (goals VARCHAR, transfer_window VARCHAR, name VARCHAR) | SELECT COUNT(goals) FROM table_name_36 WHERE transfer_window = "summer" AND name = "kenton" |
What is the branding for callsign DWFM? | CREATE TABLE table_name_53 (branding VARCHAR, callsign VARCHAR) | SELECT branding FROM table_name_53 WHERE callsign = "dwfm" |
What is the frequency where the power is 25kw? | CREATE TABLE table_name_10 (frequency VARCHAR, power__kw_ VARCHAR) | SELECT frequency FROM table_name_10 WHERE power__kw_ = "25kw" |
What is the power at Baguio where the frequency is 102.3mhz? | CREATE TABLE table_name_59 (power__kw_ VARCHAR, frequency VARCHAR, location VARCHAR) | SELECT power__kw_ FROM table_name_59 WHERE frequency = "102.3mhz" AND location = "baguio" |
What is the location where the frequency is 92.3mhz? | CREATE TABLE table_name_76 (location VARCHAR, frequency VARCHAR) | SELECT location FROM table_name_76 WHERE frequency = "92.3mhz" |
What is the brand where the location is Cagayan De Oro? | CREATE TABLE table_name_54 (branding VARCHAR, location VARCHAR) | SELECT branding FROM table_name_54 WHERE location = "cagayan de oro" |
Which Established has a League of ontario australian football league? | CREATE TABLE table_name_62 (established VARCHAR, league VARCHAR) | SELECT established FROM table_name_62 WHERE league = "ontario australian football league" |
Which Championships have a League of ontario australian football league? | CREATE TABLE table_name_70 (championships VARCHAR, league VARCHAR) | SELECT championships FROM table_name_70 WHERE league = "ontario australian football league" |
Which Established has a Club of guelph rangers? | CREATE TABLE table_name_61 (established VARCHAR, club VARCHAR) | SELECT established FROM table_name_61 WHERE club = "guelph rangers" |
What is the earliest year with colin berry as the spokesperson and ray moore as the radio commentator? | CREATE TABLE table_name_64 (year_s_ INTEGER, spokesperson VARCHAR, radio_commentator VARCHAR) | SELECT MIN(year_s_) FROM table_name_64 WHERE spokesperson = "colin berry" AND radio_commentator = "ray moore" |
Who is the spokesperson after 2012? | CREATE TABLE table_name_33 (spokesperson VARCHAR, year_s_ INTEGER) | SELECT spokesperson FROM table_name_33 WHERE year_s_ > 2012 |
Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013? | CREATE TABLE table_name_51 (semi_final_second_television_commentator VARCHAR, year_s_ VARCHAR, final_television_commentator VARCHAR, spokesperson VARCHAR) | SELECT semi_final_second_television_commentator FROM table_name_51 WHERE final_television_commentator = "graham norton" AND spokesperson = "scott mills" AND year_s_ < 2013 |
What kind of Wind has an Athlete of kerron stewart? | CREATE TABLE table_name_26 (wind VARCHAR, athlete VARCHAR) | SELECT wind FROM table_name_26 WHERE athlete = "kerron stewart" |
What kind of Wind has a Result of 21.69? | CREATE TABLE table_name_69 (wind VARCHAR, result VARCHAR) | SELECT wind FROM table_name_69 WHERE result = "21.69" |
Show the Result of inger miller? | CREATE TABLE table_name_75 (result VARCHAR, athlete VARCHAR) | SELECT result FROM table_name_75 WHERE athlete = "inger miller" |
How many byes for the team with more than 14 losses and more than 0 wins? | CREATE TABLE table_name_92 (byes INTEGER, losses VARCHAR, wins VARCHAR) | SELECT AVG(byes) FROM table_name_92 WHERE losses > 14 AND wins > 0 |
How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes? | CREATE TABLE table_name_48 (wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR) | SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl = "caramut" AND byes < 2 |
How many wins for the team with more than 1282 against and fewer than 14 losses? | CREATE TABLE table_name_59 (wins INTEGER, against VARCHAR, losses VARCHAR) | SELECT MIN(wins) FROM table_name_59 WHERE against > 1282 AND losses < 14 |
How many wins for the team with fewer than 2 byes? | CREATE TABLE table_name_1 (wins INTEGER, byes INTEGER) | SELECT AVG(wins) FROM table_name_1 WHERE byes < 2 |
How many against for the Moyston-Willaura team with 4 losses and fewer than 2 byes? | CREATE TABLE table_name_15 (against INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR) | SELECT MAX(against) FROM table_name_15 WHERE losses = 4 AND mininera_dfl = "moyston-willaura" AND byes < 2 |
Who is the player of the match at canberra stadium? | CREATE TABLE table_name_89 (player VARCHAR, venue VARCHAR) | SELECT player FROM table_name_89 WHERE venue = "canberra stadium" |
What is the average number of tries of player israel folau? | CREATE TABLE table_name_25 (tries INTEGER, player VARCHAR) | SELECT AVG(tries) FROM table_name_25 WHERE player = "israel folau" |
What round is player phil graham in? | CREATE TABLE table_name_8 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_8 WHERE player = "phil graham" |
Who is the opponent of the match at cua stadium? | CREATE TABLE table_name_7 (opponent VARCHAR, venue VARCHAR) | SELECT opponent FROM table_name_7 WHERE venue = "cua stadium" |
Who is the opponent of player phil graham? | CREATE TABLE table_name_72 (opponent VARCHAR, player VARCHAR) | SELECT opponent FROM table_name_72 WHERE player = "phil graham" |
Can you tell me the Money (£) that has the Country of england, and the Player of malcolm mackenzie? | CREATE TABLE table_name_59 (money___£__ VARCHAR, country VARCHAR, player VARCHAR) | SELECT money___£__ FROM table_name_59 WHERE country = "england" AND player = "malcolm mackenzie" |
Which Year has a Nominee of stephen sondheim, and a Category of the best original score? | CREATE TABLE table_name_90 (year VARCHAR, nominee VARCHAR, category VARCHAR) | SELECT year FROM table_name_90 WHERE nominee = "stephen sondheim" AND category = "best original score" |
Which Result has a Category of the best costume design? | CREATE TABLE table_name_3 (result VARCHAR, category VARCHAR) | SELECT result FROM table_name_3 WHERE category = "best costume design" |
Which Nominee has an Award Ceremony of tony award, and a Category of the best performance by a leading actor in a musical? | CREATE TABLE table_name_73 (nominee VARCHAR, award_ceremony VARCHAR, category VARCHAR) | SELECT nominee FROM table_name_73 WHERE award_ceremony = "tony award" AND category = "best performance by a leading actor in a musical" |
When there are more than 126 errors, more than 551 kills, and more than 40 assists for the 2007 season, what is the total of Solo Blocks? | CREATE TABLE table_name_24 (solo_blocks INTEGER, assists VARCHAR, season VARCHAR, errors VARCHAR, kills VARCHAR) | SELECT SUM(solo_blocks) FROM table_name_24 WHERE errors > 126 AND kills > 551 AND season = "2007" AND assists > 40 |
When there is less than 13 services aces with a percentage greater than 0.34900000000000003, what is the smallest total attempts? | CREATE TABLE table_name_47 (total_attempts INTEGER, percentage VARCHAR, service_aces VARCHAR) | SELECT MIN(total_attempts) FROM table_name_47 WHERE percentage > 0.34900000000000003 AND service_aces < 13 |
When the percentage is 0.34900000000000003 with more than 13 solo blocks and less than 4713 total attempts, what is the greatest assists? | CREATE TABLE table_name_63 (assists INTEGER, total_attempts VARCHAR, percentage VARCHAR, solo_blocks VARCHAR) | SELECT MAX(assists) FROM table_name_63 WHERE percentage < 0.34900000000000003 AND solo_blocks > 13 AND total_attempts < 4713 |
When assists is more than 32 and total blocks is more than 88, what is the total of block assists? | CREATE TABLE table_name_12 (Block INTEGER, assists VARCHAR, total_blocks VARCHAR) | SELECT SUM(Block) AS assists FROM table_name_12 WHERE assists > 32 AND total_blocks > 88 |
What is the total number of Against, when Losses is less than 52, when Matches is greater than 4, and when Draw is less than 2? | CREATE TABLE table_name_66 (against VARCHAR, draw VARCHAR, losses VARCHAR, matches VARCHAR) | SELECT COUNT(against) FROM table_name_66 WHERE losses < 52 AND matches > 4 AND draw < 2 |
What is the total number of Against, when Draw is greater than 48? | CREATE TABLE table_name_12 (against VARCHAR, draw INTEGER) | SELECT COUNT(against) FROM table_name_12 WHERE draw > 48 |
What is the highest Losses, when Wins is "1", and when Matches is less than 2? | CREATE TABLE table_name_21 (losses INTEGER, wins VARCHAR, matches VARCHAR) | SELECT MAX(losses) FROM table_name_21 WHERE wins = 1 AND matches < 2 |
What is the highest Against, when Wins is greater than 2, and when Matches is less than 17? | CREATE TABLE table_name_47 (against INTEGER, wins VARCHAR, matches VARCHAR) | SELECT MAX(against) FROM table_name_47 WHERE wins > 2 AND matches < 17 |
What is the lowest Matches, when Against is less than 7, and when Wins is greater than 1? | CREATE TABLE table_name_74 (matches INTEGER, against VARCHAR, wins VARCHAR) | SELECT MIN(matches) FROM table_name_74 WHERE against < 7 AND wins > 1 |
What position did tomasz kiełbowicz play? | CREATE TABLE table_name_35 (position VARCHAR, player VARCHAR) | SELECT position FROM table_name_35 WHERE player = "tomasz kiełbowicz" |
Which # of Episodes has a Mole of craig slike? | CREATE TABLE table_name_55 (_number_of_episodes INTEGER, mole VARCHAR) | SELECT MIN(_number_of_episodes) FROM table_name_55 WHERE mole = "craig slike" |
Which host has more than 11 episodes? | CREATE TABLE table_name_95 (host VARCHAR, _number_of_episodes INTEGER) | SELECT host FROM table_name_95 WHERE _number_of_episodes > 11 |
Which Season has a Mole of frederique van der wal? | CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR) | SELECT MAX(season) FROM table_name_77 WHERE mole = "frederique van der wal" |
What is Res., when Time is "1:09"? | CREATE TABLE table_name_51 (res VARCHAR, time VARCHAR) | SELECT res FROM table_name_51 WHERE time = "1:09" |
What is Res., when Round is greater than 2, and when Event is "Midwest Cage Championships 25: Inferno"? | CREATE TABLE table_name_92 (res VARCHAR, round VARCHAR, event VARCHAR) | SELECT res FROM table_name_92 WHERE round > 2 AND event = "midwest cage championships 25: inferno" |
What is Time, when Round is "3", when Method is "Decision (unanimous)", and when Record is "7-3"? | CREATE TABLE table_name_45 (time VARCHAR, record VARCHAR, round VARCHAR, method VARCHAR) | SELECT time FROM table_name_45 WHERE round = 3 AND method = "decision (unanimous)" AND record = "7-3" |
What is Record, when Location is "Des Moines, Iowa , United States", and when Method is "Submission (arm-triangle choke)"? | CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR) | SELECT record FROM table_name_31 WHERE location = "des moines, iowa , united states" AND method = "submission (arm-triangle choke)" |
What is the score for the game with 213 attending? | CREATE TABLE table_name_3 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_3 WHERE attendance = "213" |
What was the away team for the game in Slough Town? | CREATE TABLE table_name_75 (away_team VARCHAR, home_team VARCHAR) | SELECT away_team FROM table_name_75 WHERE home_team = "slough town" |
Who was the home team that played against Armthorpe Welfare? | CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR) | SELECT home_team FROM table_name_51 WHERE away_team = "armthorpe welfare" |
What is the Tie no for the game with the away team Whyteleafe? | CREATE TABLE table_name_99 (tie_no VARCHAR, away_team VARCHAR) | SELECT tie_no FROM table_name_99 WHERE away_team = "whyteleafe" |
What is home team Maine Road's score? | CREATE TABLE table_name_46 (score VARCHAR, home_team VARCHAR) | SELECT score FROM table_name_46 WHERE home_team = "maine road" |
What year was the US Open that had a partnering of Maikel Scheffers? | CREATE TABLE table_name_56 (year INTEGER, partnering VARCHAR, championship VARCHAR) | SELECT SUM(year) FROM table_name_56 WHERE partnering = "maikel scheffers" AND championship = "us open" |
What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents? | CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR) | SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = "stephane houdet michael jeremiasz" |
What was the score when the Shingo Kunieda Satoshi Saida were the opponents? | CREATE TABLE table_name_84 (score_in_final VARCHAR, opponents_in_final VARCHAR) | SELECT score_in_final FROM table_name_84 WHERE opponents_in_final = "shingo kunieda satoshi saida" |
What year were the opponents Shingo Kunieda Satoshi Saida? | CREATE TABLE table_name_22 (year INTEGER, opponents_in_final VARCHAR) | SELECT MIN(year) FROM table_name_22 WHERE opponents_in_final = "shingo kunieda satoshi saida" |
In what place is the golfer with a score of 68-69-73-70=280? | CREATE TABLE table_name_24 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_24 WHERE score = 68 - 69 - 73 - 70 = 280 |
What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286? | CREATE TABLE table_name_52 (to_par VARCHAR, money___£__ VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_52 WHERE money___£__ = "40,850" AND score = 72 - 74 - 70 - 70 = 286 |
What is the to par for the player with winnings of 49,500? | CREATE TABLE table_name_74 (to_par VARCHAR, money___£__ VARCHAR) | SELECT to_par FROM table_name_74 WHERE money___£__ = "49,500" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.