instruction
stringlengths
67
299
input
stringlengths
88
550
output
stringlengths
32
484
Write a SQL query that answers the following question: Game 1's sum of attendance is?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_4 (attendance INTEGER, game VARCHAR)
SELECT SUM(attendance) FROM table_name_4 WHERE game = 1
Write a SQL query that answers the following question: What was the finish of the winner of the 2000 Masters?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_54 (finish VARCHAR, year_s__won VARCHAR)
SELECT finish FROM table_name_54 WHERE year_s__won = "2000"
Write a SQL query that answers the following question: For the player from Fiji, what was his finish?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_83 (finish VARCHAR, country VARCHAR)
SELECT finish FROM table_name_83 WHERE country = "fiji"
Write a SQL query that answers the following question: For the player finishing at +8, what is his nationality?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (country VARCHAR, to_par VARCHAR)
SELECT country FROM table_name_91 WHERE to_par = "+8"
Write a SQL query that answers the following question: What was the score of the game that had a record of 52–103?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_14 WHERE record = "52–103"
Write a SQL query that answers the following question: What was the date of the game when the record was 53–104?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_89 WHERE record = "53–104"
Write a SQL query that answers the following question: What was the record at the game that had a loss of Huffman (6–18)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (record VARCHAR, loss VARCHAR)
SELECT record FROM table_name_49 WHERE loss = "huffman (6–18)"
Write a SQL query that answers the following question: Which format is released on August 29, 1998?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (format VARCHAR, date VARCHAR)
SELECT format FROM table_name_72 WHERE date = "august 29, 1998"
Write a SQL query that answers the following question: What is the catalog number for the January 25, 1987 release?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_5 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_5 WHERE date = "january 25, 1987"
Write a SQL query that answers the following question: Which format is released on May 27, 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_31 (format VARCHAR, date VARCHAR)
SELECT format FROM table_name_31 WHERE date = "may 27, 2009"
Write a SQL query that answers the following question: What is the catalog number of the May 27, 2009 release?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (catalog VARCHAR, date VARCHAR)
SELECT catalog FROM table_name_89 WHERE date = "may 27, 2009"
Write a SQL query that answers the following question: What is the release date of a CD with the catalog number ALCA-9206?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_87 (date VARCHAR, format VARCHAR, catalog VARCHAR)
SELECT date FROM table_name_87 WHERE format = "cd" AND catalog = "alca-9206"
Write a SQL query that answers the following question: Which format is released on May 27, 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (format VARCHAR, date VARCHAR)
SELECT format FROM table_name_77 WHERE date = "may 27, 2009"
Write a SQL query that answers the following question: What was the average of points with ranks smaller than 7 but with total point games of 113?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_24 (total_points INTEGER, games VARCHAR, rank VARCHAR)
SELECT AVG(total_points) FROM table_name_24 WHERE games = 113 AND rank < 7
Write a SQL query that answers the following question: What is the sum of the roll with an area of Waikaka?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_11 (roll INTEGER, area VARCHAR)
SELECT SUM(roll) FROM table_name_11 WHERE area = "waikaka"
Write a SQL query that answers the following question: What is the roll number for East Gore School?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (roll VARCHAR, name VARCHAR)
SELECT COUNT(roll) FROM table_name_21 WHERE name = "east gore school"
Write a SQL query that answers the following question: What is the lowest decile with 1-6 years and area of Maitland?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_2 (decile INTEGER, years VARCHAR, area VARCHAR)
SELECT MIN(decile) FROM table_name_2 WHERE years = "1-6" AND area = "maitland"
Write a SQL query that answers the following question: Which gender has 7-15 years?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (gender VARCHAR, years VARCHAR)
SELECT gender FROM table_name_74 WHERE years = "7-15"
Write a SQL query that answers the following question: What is the gender for Otama?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (gender VARCHAR, area VARCHAR)
SELECT gender FROM table_name_23 WHERE area = "otama"
Write a SQL query that answers the following question: What is the authority for roll of 96?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_46 (authority VARCHAR, roll VARCHAR)
SELECT authority FROM table_name_46 WHERE roll = 96
Write a SQL query that answers the following question: When is a Roll of 9?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_86 (years VARCHAR, roll VARCHAR)
SELECT years FROM table_name_86 WHERE roll = 9
Write a SQL query that answers the following question: What is the Area with 26 in Roll
The relevant table was constructed using the following SQL : CREATE TABLE table_name_63 (area VARCHAR, roll VARCHAR)
SELECT area FROM table_name_63 WHERE roll = 26
Write a SQL query that answers the following question: For nations with more than 6 silvers and more than 10 golds, what is the lowest total?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (total INTEGER, silver VARCHAR, gold VARCHAR)
SELECT MIN(total) FROM table_name_6 WHERE silver > 6 AND gold > 10
Write a SQL query that answers the following question: What is the lowest rank for nations with more than 3 bronze medals and more than 36 total medals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (rank INTEGER, bronze VARCHAR, total VARCHAR)
SELECT MIN(rank) FROM table_name_21 WHERE bronze > 3 AND total > 36
Write a SQL query that answers the following question: Which country has the most bronze and has more than one silver, 1 gold, and less than 4 total medals.
The relevant table was constructed using the following SQL : CREATE TABLE table_name_80 (bronze INTEGER, total VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT MAX(bronze) FROM table_name_80 WHERE silver > 1 AND gold = 1 AND total < 4
Write a SQL query that answers the following question: What nation has the most bronze medals with over 11 total medals?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_75 (bronze INTEGER, total INTEGER)
SELECT MAX(bronze) FROM table_name_75 WHERE total > 11
Write a SQL query that answers the following question: How many silver medals does Cuba have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_15 (silver INTEGER, nation VARCHAR)
SELECT SUM(silver) FROM table_name_15 WHERE nation = "cuba"
Write a SQL query that answers the following question: Where was the game that the Indianapolis Colts lost 24-14?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_23 (location VARCHAR, loser VARCHAR, result VARCHAR)
SELECT location FROM table_name_23 WHERE loser = "indianapolis colts" AND result = "24-14"
Write a SQL query that answers the following question: On what date was the game that the Indianapolis Colts lost in 2004?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (date VARCHAR, loser VARCHAR, year VARCHAR)
SELECT date FROM table_name_98 WHERE loser = "indianapolis colts" AND year = 2004
Write a SQL query that answers the following question: Which team won against the New England Patriots 40-21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_14 (winner VARCHAR, loser VARCHAR, result VARCHAR)
SELECT winner FROM table_name_14 WHERE loser = "new england patriots" AND result = "40-21"
Write a SQL query that answers the following question: What was the date of the game played at Gillette Stadium with a score of 40-21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_97 (date VARCHAR, location VARCHAR, result VARCHAR)
SELECT date FROM table_name_97 WHERE location = "gillette stadium" AND result = "40-21"
Write a SQL query that answers the following question: What year was the game that ended with a score of 24-14?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (year INTEGER, result VARCHAR)
SELECT AVG(year) FROM table_name_22 WHERE result = "24-14"
Write a SQL query that answers the following question: What was the score of the 3-0 Win result?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (score VARCHAR, result VARCHAR)
SELECT score FROM table_name_91 WHERE result = "3-0 win"
Write a SQL query that answers the following question: What was the result of the game from 10 October 2009?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_47 (result VARCHAR, date VARCHAR)
SELECT result FROM table_name_47 WHERE date = "10 october 2009"
Write a SQL query that answers the following question: What is the name of the competition that has a score of 2-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (competition VARCHAR, score VARCHAR)
SELECT competition FROM table_name_91 WHERE score = "2-0"
Write a SQL query that answers the following question: Name the visitor for home of dallas
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (visitor VARCHAR, home VARCHAR)
SELECT visitor FROM table_name_37 WHERE home = "dallas"
Write a SQL query that answers the following question: Name the period for south korea with peak position of #1
The relevant table was constructed using the following SQL : CREATE TABLE table_name_90 (period VARCHAR, country VARCHAR, peak_position VARCHAR)
SELECT period FROM table_name_90 WHERE country = "south korea" AND peak_position = "#1"
Write a SQL query that answers the following question: Name the period for south korea with peak position of #24
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (period VARCHAR, country VARCHAR, peak_position VARCHAR)
SELECT period FROM table_name_74 WHERE country = "south korea" AND peak_position = "#24"
Write a SQL query that answers the following question: Name the period for Chart of g-music j-pop/k-pop chart
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (period VARCHAR, chart VARCHAR)
SELECT period FROM table_name_29 WHERE chart = "g-music j-pop/k-pop chart"
Write a SQL query that answers the following question: Name the sales with peak position of #24
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (sales VARCHAR, peak_position VARCHAR)
SELECT sales FROM table_name_7 WHERE peak_position = "#24"
Write a SQL query that answers the following question: Which aggregate has ajax as the club?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_49 (aggregate VARCHAR, club VARCHAR)
SELECT aggregate FROM table_name_49 WHERE club = "ajax"
Write a SQL query that answers the following question: How many attended on march 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_19 WHERE date = "march 1"
Write a SQL query that answers the following question: Who was the visitor on march 21?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_96 WHERE date = "march 21"
Write a SQL query that answers the following question: Who was the cyclist from Belgium?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_85 (cyclist VARCHAR, nation VARCHAR)
SELECT cyclist FROM table_name_85 WHERE nation = "belgium"
Write a SQL query that answers the following question: What is the nation of the person who was from the CSC team?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (nation VARCHAR, team VARCHAR)
SELECT nation FROM table_name_79 WHERE team = "csc"
Write a SQL query that answers the following question: Who is the cyclist from the GCE team and had UCI points under 20?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (cyclist VARCHAR, team VARCHAR, uci_points VARCHAR)
SELECT cyclist FROM table_name_70 WHERE team = "gce" AND uci_points < 20
Write a SQL query that answers the following question: Which nation is Danilo di Luca from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_7 (nation VARCHAR, cyclist VARCHAR)
SELECT nation FROM table_name_7 WHERE cyclist = "danilo di luca"
Write a SQL query that answers the following question: Which nation is Robert Gesink from?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_96 (nation VARCHAR, cyclist VARCHAR)
SELECT nation FROM table_name_96 WHERE cyclist = "robert gesink"
Write a SQL query that answers the following question: What is the sum of UCI points for Kim Kirchen?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_42 (uci_points INTEGER, cyclist VARCHAR)
SELECT SUM(uci_points) FROM table_name_42 WHERE cyclist = "kim kirchen"
Write a SQL query that answers the following question: How many games for the player that has an over 2.7 assist average and over 598 total assists?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (games VARCHAR, ast_avg VARCHAR, total_assists VARCHAR)
SELECT COUNT(games) FROM table_name_91 WHERE ast_avg > 2.7 AND total_assists > 598
Write a SQL query that answers the following question: How many assists does cam long average in under 132 games?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_28 (ast_avg INTEGER, player VARCHAR, games VARCHAR)
SELECT MAX(ast_avg) FROM table_name_28 WHERE player = "cam long" AND games < 132
Write a SQL query that answers the following question: Where is the Stadium of Gortakeegan located?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (location VARCHAR, stadium VARCHAR)
SELECT location FROM table_name_91 WHERE stadium = "gortakeegan"
Write a SQL query that answers the following question: In 1972, how many points did the entrant with the March 721G Chassis have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (points VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT points FROM table_name_74 WHERE year > 1972 AND chassis = "march 721g"
Write a SQL query that answers the following question: In 1971, how many total points did the entrant stp march have?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_56 (points VARCHAR, entrant VARCHAR, year VARCHAR)
SELECT COUNT(points) FROM table_name_56 WHERE entrant = "stp march" AND year > 1971
Write a SQL query that answers the following question: Which Chassis was featured in the year 1971?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (chassis VARCHAR, year VARCHAR)
SELECT chassis FROM table_name_88 WHERE year = 1971
Write a SQL query that answers the following question: Which Chassis did the Entrant clarke-mordaunt-guthrie-durlacher carry?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (chassis VARCHAR, entrant VARCHAR)
SELECT chassis FROM table_name_57 WHERE entrant = "clarke-mordaunt-guthrie-durlacher"
Write a SQL query that answers the following question: What is Bartolo's Total G when his L Apps is 29 and his C Apps are larger than 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_98 (total_g INTEGER, c_apps VARCHAR, l_apps VARCHAR, player VARCHAR)
SELECT AVG(total_g) FROM table_name_98 WHERE l_apps = 29 AND player = "bartolo" AND c_apps > 5
Write a SQL query that answers the following question: What is the lowest round for Southern College?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (round INTEGER, college VARCHAR)
SELECT MIN(round) FROM table_name_58 WHERE college = "southern"
Write a SQL query that answers the following question: Who had the placekicker position with a round above 10?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_64 (name VARCHAR, round VARCHAR, position VARCHAR)
SELECT name FROM table_name_64 WHERE round > 10 AND position = "placekicker"
Write a SQL query that answers the following question: What was the partner of the team that faced the guillermo garcía-lópez albert portas on clay?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_45 (partner VARCHAR, surface VARCHAR, opponents VARCHAR)
SELECT partner FROM table_name_45 WHERE surface = "clay" AND opponents = "guillermo garcía-lópez albert portas"
Write a SQL query that answers the following question: What are the dates where the opponent was guillermo garcía-lópez albert portas?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_9 (date VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_9 WHERE opponents = "guillermo garcía-lópez albert portas"
Write a SQL query that answers the following question: What is the earliest year in the 125cc class with more than 102 points and a rank of 2nd?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_74 (year INTEGER, rank VARCHAR, class VARCHAR, points VARCHAR)
SELECT MIN(year) FROM table_name_74 WHERE class = "125cc" AND points > 102 AND rank = "2nd"
Write a SQL query that answers the following question: Which team had fewer than 167 points in the 250cc class?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (team VARCHAR, points VARCHAR, class VARCHAR)
SELECT team FROM table_name_72 WHERE points < 167 AND class = "250cc"
Write a SQL query that answers the following question: For years before 1996, having a rank of 3rd in the 125cc class, what is the sum of the points?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, rank VARCHAR)
SELECT SUM(points) FROM table_name_65 WHERE class = "125cc" AND rank = "3rd" AND year < 1996
Write a SQL query that answers the following question: Who did the Raiders play in week 12?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_25 (opponent VARCHAR, week VARCHAR)
SELECT opponent FROM table_name_25 WHERE week = 12
Write a SQL query that answers the following question: How many people were at the game that took place at the Kingdome?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_21 (attendance VARCHAR, game_site VARCHAR)
SELECT attendance FROM table_name_21 WHERE game_site = "the kingdome"
Write a SQL query that answers the following question: Which is the LMS SPR when the car number was 15?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (lms_spr VARCHAR, car_no VARCHAR)
SELECT lms_spr FROM table_name_60 WHERE car_no = "15"
Write a SQL query that answers the following question: When the CAT FEA is 3 how many points were scored?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_88 (points VARCHAR, cat_fea VARCHAR)
SELECT points FROM table_name_88 WHERE cat_fea = "3"
Write a SQL query that answers the following question: What was the SPA FEA when the LMS FEA was 5?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_60 (spa_fea VARCHAR, lms_fea VARCHAR)
SELECT spa_fea FROM table_name_60 WHERE lms_fea = "5"
Write a SQL query that answers the following question: What was the MNZ FEA when the SIL SPR was 18?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_73 (mnz_fea VARCHAR, sil_spr VARCHAR)
SELECT mnz_fea FROM table_name_73 WHERE sil_spr = "18"
Write a SQL query that answers the following question: Which years did the Tampa Bay Storm win the Championships?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_71 (championships__years_ VARCHAR, club VARCHAR)
SELECT championships__years_ FROM table_name_71 WHERE club = "tampa bay storm"
Write a SQL query that answers the following question: What is the height of the person born before 1975?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_57 (height VARCHAR, year_born INTEGER)
SELECT height FROM table_name_57 WHERE year_born < 1975
Write a SQL query that answers the following question: How many times did Ken Wright expired in North Western?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_52 (term_expires VARCHAR, province VARCHAR, name VARCHAR)
SELECT COUNT(term_expires) FROM table_name_52 WHERE province = "north western" AND name = "ken wright"
Write a SQL query that answers the following question: Name the 2010 with tournament of grand slam tournaments
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (tournament VARCHAR)
SELECT 2010 FROM table_name_33 WHERE tournament = "grand slam tournaments"
Write a SQL query that answers the following question: Name the 2008 with 2010 of 2r and wimbledon tournament
The relevant table was constructed using the following SQL : CREATE TABLE table_name_58 (tournament VARCHAR)
SELECT 2008 FROM table_name_58 WHERE 2010 = "2r" AND tournament = "wimbledon"
Write a SQL query that answers the following question: Name the 2013 for 2010 of 1r
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (Id VARCHAR)
SELECT 2013 FROM table_name_22 WHERE 2010 = "1r"
Write a SQL query that answers the following question: Name the 2010 for 2008 of 1r and tournament of us open
The relevant table was constructed using the following SQL : CREATE TABLE table_name_33 (tournament VARCHAR)
SELECT 2010 FROM table_name_33 WHERE 2008 = "1r" AND 2011 = "1r" AND tournament = "us open"
Write a SQL query that answers the following question: Which years have a Decile of 4, an Authority of state, and a Name of mapiu school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_43 (years VARCHAR, name VARCHAR, decile VARCHAR, authority VARCHAR)
SELECT years FROM table_name_43 WHERE decile = 4 AND authority = "state" AND name = "mapiu school"
Write a SQL query that answers the following question: Which years have a Decile smaller than 6, an Area of te kuiti, and an Authority of state integrated?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_41 (years VARCHAR, authority VARCHAR, decile VARCHAR, area VARCHAR)
SELECT years FROM table_name_41 WHERE decile < 6 AND area = "te kuiti" AND authority = "state integrated"
Write a SQL query that answers the following question: What is the average Decile with a state authority and a Name of mapiu school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (decile INTEGER, authority VARCHAR, name VARCHAR)
SELECT AVG(decile) FROM table_name_16 WHERE authority = "state" AND name = "mapiu school"
Write a SQL query that answers the following question: Which years have an Area of rangitoto?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_16 (years VARCHAR, area VARCHAR)
SELECT years FROM table_name_16 WHERE area = "rangitoto"
Write a SQL query that answers the following question: Which gender has a Name of rangitoto school?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (gender VARCHAR, name VARCHAR)
SELECT gender FROM table_name_6 WHERE name = "rangitoto school"
Write a SQL query that answers the following question: What is the t o par for Ralph Guldahl?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_89 (to_par VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_89 WHERE player = "ralph guldahl"
Write a SQL query that answers the following question: What is the score for Ky Laffoon?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_22 (score VARCHAR, player VARCHAR)
SELECT score FROM table_name_22 WHERE player = "ky laffoon"
Write a SQL query that answers the following question: What is the score of Ralph Guldahl, who has more than $100?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (score VARCHAR, money___$__ VARCHAR, player VARCHAR)
SELECT score FROM table_name_77 WHERE money___$__ > 100 AND player = "ralph guldahl"
Write a SQL query that answers the following question: What is the highest amount of money a play from Scotland United States has?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (money___ INTEGER, country VARCHAR)
SELECT MAX(money___) AS $__ FROM table_name_99 WHERE country = "scotland united states"
Write a SQL query that answers the following question: How many Goals have a Pct % larger than 0.557, a points value smaller than 90, and a games value larger than 68?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_6 (goals_for VARCHAR, games VARCHAR, pct__percentage VARCHAR, points VARCHAR)
SELECT COUNT(goals_for) FROM table_name_6 WHERE pct__percentage > 0.557 AND points < 90 AND games > 68
Write a SQL query that answers the following question: What is the draw record (%) total for clubs with more than 3 wins with 10 matches and more than 1 draw?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (record___percentage__ VARCHAR, draw_ VARCHAR, _05_wins VARCHAR, draws VARCHAR, wins VARCHAR, matches VARCHAR)
SELECT COUNT(record___percentage__)[draw_ = _05_wins] FROM table_name_91 WHERE wins > 3 AND matches = 10 AND draws > 1
Write a SQL query that answers the following question: How many draws, more than 6, does Newcastle Knights have with a record (%) larger than 25?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_59 (draws INTEGER, matches VARCHAR, club VARCHAR, record___percentage__ VARCHAR, draw_ VARCHAR, _05_wins VARCHAR)
SELECT MAX(draws) FROM table_name_59 WHERE matches > 6 AND club = "newcastle knights" AND record___percentage__[draw_ = _05_wins] > 25
Write a SQL query that answers the following question: Which club has the most losses with 10 matches played and more than 1 draw?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_29 (losses INTEGER, matches VARCHAR, draws VARCHAR)
SELECT MAX(losses) FROM table_name_29 WHERE matches = 10 AND draws > 1
Write a SQL query that answers the following question: The year of 1985 which has a BB +HBP of 39 has what Number listed?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_37 (number VARCHAR, year VARCHAR, bb_ VARCHAR, hbp VARCHAR)
SELECT number FROM table_name_37 WHERE bb_ + hbp = 39 AND year = "1985"
Write a SQL query that answers the following question: The year that has a BB + HBP of 51 is listed as?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_99 (year VARCHAR, bb_ VARCHAR, hbp VARCHAR)
SELECT year FROM table_name_99 WHERE bb_ + hbp = 51
Write a SQL query that answers the following question: In the year 1992 for the Seibu Lions, the BB + HBP which is larger than 49 was this as a BA (Place)?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_70 (ba__place_ VARCHAR, year VARCHAR, team VARCHAR, bb_ VARCHAR, hbp VARCHAR)
SELECT ba__place_ FROM table_name_70 WHERE bb_ + hbp > 49 AND team = "seibu lions" AND year = "1992"
Write a SQL query that answers the following question: What team lost on May 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_62 WHERE date = "may 1"
Write a SQL query that answers the following question: What was the final score for the game on May 1?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_72 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_72 WHERE date = "may 1"
Write a SQL query that answers the following question: What was the final score for the game on May 4?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_91 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_91 WHERE date = "may 4"
Write a SQL query that answers the following question: In 1994 what tournament held a ATP masters series
The relevant table was constructed using the following SQL : CREATE TABLE table_name_38 (tournament VARCHAR)
SELECT 1994 FROM table_name_38 WHERE tournament = "atp masters series"
Write a SQL query that answers the following question: What is the Career SR of the year that held the masters series Sr tournament
The relevant table was constructed using the following SQL : CREATE TABLE table_name_62 (career_sr VARCHAR, tournament VARCHAR)
SELECT career_sr FROM table_name_62 WHERE tournament = "masters series sr"
Write a SQL query that answers the following question: WHich competition was held on Alvor with a score 1-0?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_77 (competition VARCHAR, score VARCHAR, location VARCHAR)
SELECT competition FROM table_name_77 WHERE score = "1-0" AND location = "alvor"
Write a SQL query that answers the following question: Which name has a Lane of 7?
The relevant table was constructed using the following SQL : CREATE TABLE table_name_79 (name VARCHAR, lane VARCHAR)
SELECT name FROM table_name_79 WHERE lane = 7