answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT home FROM table_name_85 WHERE visitor = "lakers"
Who was the home team that played the Lakers?
CREATE TABLE table_name_85 (home VARCHAR, visitor VARCHAR)
SELECT score_in_final FROM table_name_75 WHERE outcome = "runner-up" AND date = "9 february 1992"
What is the final score of the runner-up on 9 February 1992?
CREATE TABLE table_name_75 (score_in_final VARCHAR, outcome VARCHAR, date VARCHAR)
SELECT location FROM table_1973816_2 WHERE institution = "Southern Vermont College"
Where is Southern Vermont College located?
CREATE TABLE table_1973816_2 (location VARCHAR, institution VARCHAR)
SELECT SUM(year) FROM table_name_54 WHERE date = "september 26"
In what Year was the Game on September 26?
CREATE TABLE table_name_54 (year INTEGER, date VARCHAR)
SELECT name FROM table_14624447_24 WHERE position = "FS"
What are all names for the position FS?
CREATE TABLE table_14624447_24 (name VARCHAR, position VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_59 WHERE round > 3
What college did the player selected in rounds over 3 play for?
CREATE TABLE table_name_59 (college_junior_club_team__league_ VARCHAR, round INTEGER)
SELECT COUNT(*) FROM patient WHERE NOT SSN IN (SELECT T1.patient FROM Prescribes AS T1 JOIN Medication AS T2 ON T1.Medication = T2.Code WHERE T2.name = 'Procrastin-X')
Find the number of patients who are not using the medication of Procrastin-X.
CREATE TABLE Prescribes (patient VARCHAR, Medication VARCHAR); CREATE TABLE patient (SSN VARCHAR); CREATE TABLE Medication (Code VARCHAR, name VARCHAR)
SELECT AVG(reb_)[b_] FROM table_name_64 WHERE no_[a_] = "8" AND ast_[b_] < 57
Which rebound was 8 and has and ast that was less than 57?
CREATE TABLE table_name_64 (b_ VARCHAR, reb_ INTEGER, no_ VARCHAR, a_ VARCHAR, ast_ VARCHAR)
SELECT MAX(round_4) FROM table_name_56 WHERE score = 284 AND year > 1998
What is the highest score in round 4 and total of 284 in a year more recent than 1998?
CREATE TABLE table_name_56 (round_4 INTEGER, score VARCHAR, year VARCHAR)
SELECT incumbent FROM table_1342149_6 WHERE first_elected = "1946"
Who was the first elected incumbent in the 1946 election?
CREATE TABLE table_1342149_6 (incumbent VARCHAR, first_elected VARCHAR)
SELECT COUNT(played) FROM table_14288212_1 WHERE first_played = 2011 AND points_for = 36
How many games did the team that began in 2011 and scored 36 points play?
CREATE TABLE table_14288212_1 (played VARCHAR, first_played VARCHAR, points_for VARCHAR)
SELECT link FROM table_24778847_2 WHERE date_of_polling = "February 10–28, 2011"
What format is the link for the polling data for February 10–28, 2011?
CREATE TABLE table_24778847_2 (link VARCHAR, date_of_polling VARCHAR)
SELECT AVG(goal_difference) FROM table_name_10 WHERE wins = 13 AND position = 3 AND played < 30
Which Goal Difference has 13 Wins, and a Position of 3, and Played smaller than 30?
CREATE TABLE table_name_10 (goal_difference INTEGER, played VARCHAR, wins VARCHAR, position VARCHAR)
SELECT COUNT(date_of_appointment) FROM table_17085981_2 WHERE replaced_by = "Jürgen Kohler"
How many appointment dates were recorded when Jürgen Kohler was the replaced by?
CREATE TABLE table_17085981_2 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT T2.name, COUNT(*) FROM exhibition AS T1 JOIN artist AS T2 ON T1.artist_id = T2.artist_id GROUP BY T1.artist_id
Show all artist names and the number of exhibitions for each artist.
CREATE TABLE artist (name VARCHAR, artist_id VARCHAR); CREATE TABLE exhibition (artist_id VARCHAR)
SELECT COUNT(gold) FROM table_name_26 WHERE rank > 4 AND total > 5 AND silver < 6
How many golds for nations ranked below 4, over 5 medals, and under 6 silvers?
CREATE TABLE table_name_26 (gold VARCHAR, silver VARCHAR, rank VARCHAR, total VARCHAR)
SELECT tournament FROM table_name_11 WHERE date = "july 23, 2006"
what is the tournament on july 23, 2006?
CREATE TABLE table_name_11 (tournament VARCHAR, date VARCHAR)
SELECT AVG(yards) FROM table_name_2 WHERE long < 3
Which Yards has a Long smaller than 3?
CREATE TABLE table_name_2 (yards INTEGER, long INTEGER)
SELECT yards FROM table_name_32 WHERE player = "rob turner"
How many Yards did Player Rob Turner collect?
CREATE TABLE table_name_32 (yards VARCHAR, player VARCHAR)
SELECT season FROM table_20217456_7 WHERE rl_süd__2nd_ = "Freiburger FC"
What season was Freiburger FC the RL Süd (2nd) team?
CREATE TABLE table_20217456_7 (season VARCHAR, rl_süd__2nd_ VARCHAR)
SELECT COUNT(languages) FROM table_22073745_1 WHERE original_title = "Le Roman de Renart"
How many languages have le roman de renart as the original title?
CREATE TABLE table_22073745_1 (languages VARCHAR, original_title VARCHAR)
SELECT T1.campus FROM campuses AS t1 JOIN enrollments AS t2 ON t1.id = t2.campus WHERE t2.year = 1956 AND totalenrollment_ay > 400 AND FTE_AY > 200
What campus had more than 400 total enrollment but more than 200 full time enrollment in year 1956?
CREATE TABLE enrollments (campus VARCHAR, year VARCHAR); CREATE TABLE campuses (id VARCHAR)
SELECT incumbent FROM table_2668352_14 WHERE result = "Lost re-election Democratic-Republican hold"
Name the incumbent for lost re-election democratic-republican hold
CREATE TABLE table_2668352_14 (incumbent VARCHAR, result VARCHAR)
SELECT opponent FROM table_name_34 WHERE attendance = "60,594"
Which Opponent has Attendances of 60,594?
CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR)
SELECT woodside FROM table_name_81 WHERE coombe_road = "16:19"
What is the Woodside for the 16:19 Coombe Road?
CREATE TABLE table_name_81 (woodside VARCHAR, coombe_road VARCHAR)
SELECT partnering FROM table_name_8 WHERE against = "greece"
Who was partnering when nueza silva played against greece?
CREATE TABLE table_name_8 (partnering VARCHAR, against VARCHAR)
SELECT nationality FROM table_name_32 WHERE year > 2009 AND position = "power forward"
What nationality has a year larger than 2009 with a position of power forward?
CREATE TABLE table_name_32 (nationality VARCHAR, year VARCHAR, position VARCHAR)
SELECT german_voice_actor FROM table_14960574_6 WHERE spanish_voice_actor = "Rafael Torres"
Name the german voice actor for rafael torres
CREATE TABLE table_14960574_6 (german_voice_actor VARCHAR, spanish_voice_actor VARCHAR)
SELECT mountains_classification FROM table_name_99 WHERE asian_team_classification = "seoul cycling team" AND winner = "alexandre usov"
WHich Mountains classification has an Asian team classification of seoul cycling team, and a Winner of alexandre usov?
CREATE TABLE table_name_99 (mountains_classification VARCHAR, asian_team_classification VARCHAR, winner VARCHAR)
SELECT time FROM table_name_82 WHERE nfl_recap = "recap" AND game_site = "arrowhead stadium"
What is the Time of the game at Arrowhead Stadium with an NFL Recap of recap?
CREATE TABLE table_name_82 (time VARCHAR, nfl_recap VARCHAR, game_site VARCHAR)
SELECT college FROM table_name_57 WHERE position = "running back"
Position of running back involves which college?
CREATE TABLE table_name_57 (college VARCHAR, position VARCHAR)
SELECT losing_bonus FROM table_name_12 WHERE try_bonus = "3" AND tries_for = "47"
What was the losing bonus for the team with a try bonus of 3 and 47 tries for?
CREATE TABLE table_name_12 (losing_bonus VARCHAR, try_bonus VARCHAR, tries_for VARCHAR)
SELECT nhl_team FROM table_name_59 WHERE college_junior_club_team__league_ = "mississauga icedogs (ohl)"
What is the NHL team that has a team (League) of Mississauga Icedogs (ohl)?
CREATE TABLE table_name_59 (nhl_team VARCHAR, college_junior_club_team__league_ VARCHAR)
SELECT MAX(points) FROM table_name_79 WHERE mark = "8.54" AND react > 0.23800000000000002
When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?
CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR)
SELECT class FROM table_name_49 WHERE frequency_mhz < 90.5
What class is assigned to frequencies lower than 90.5?
CREATE TABLE table_name_49 (class VARCHAR, frequency_mhz INTEGER)
SELECT production_code FROM table_24938621_3 WHERE directed_by = "Jesse Warn"
What was the title of the episode directed by Jesse Warn?
CREATE TABLE table_24938621_3 (production_code VARCHAR, directed_by VARCHAR)
SELECT score FROM table_name_45 WHERE opponents = "amanda brown brenda remilton"
What is the Score with an Opponent that is amanda brown brenda remilton?
CREATE TABLE table_name_45 (score VARCHAR, opponents VARCHAR)
SELECT MIN(no_in_series) FROM table_2618102_1 WHERE directed_by = "James Quinn"
Name the least number in series for james quinn
CREATE TABLE table_2618102_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT series FROM table_name_53 WHERE date = "may 14"
what series was on may 14
CREATE TABLE table_name_53 (series VARCHAR, date VARCHAR)
SELECT place_ & _date FROM table_23014685_1 WHERE area_damaged = "Apartments area"
What was the place and date that the Apartments area was damaged?
CREATE TABLE table_23014685_1 (place_ VARCHAR, _date VARCHAR, area_damaged VARCHAR)
SELECT total_apps FROM table_2980024_1 WHERE league_goals = 0
What were the total apps for Dunne in season where he had 0 league goals?
CREATE TABLE table_2980024_1 (total_apps VARCHAR, league_goals VARCHAR)
SELECT u15_3rd_iv FROM table_11318462_5 WHERE u15_4th_iv = "BBC"
what are all the u15 3rd iv with u15 4th iv being bbc
CREATE TABLE table_11318462_5 (u15_3rd_iv VARCHAR, u15_4th_iv VARCHAR)
SELECT COUNT(week) FROM table_name_23 WHERE date = "bye"
How many weeks in total has bye as the date?
CREATE TABLE table_name_23 (week VARCHAR, date VARCHAR)
SELECT COUNT(percentage_of_marine_area__foreez_) FROM table_name_78 WHERE ecozone = "atlantic marine" AND area__km²__exclusive_economic_zone < 996 OFFSET 439
How many values for percentage of marine area are for the Atlantic marine ecozone with an exclusive economic zone area less than 996,439?
CREATE TABLE table_name_78 (percentage_of_marine_area__foreez_ VARCHAR, ecozone VARCHAR, area__km²__exclusive_economic_zone VARCHAR)
SELECT COUNT(scores) FROM table_23292220_5 WHERE episode = "5x06"
Name the number of scores for 5x06
CREATE TABLE table_23292220_5 (scores VARCHAR, episode VARCHAR)
SELECT AVG(game) FROM table_name_73 WHERE points > 99
What is the mean game number when the points scored were more than 99?
CREATE TABLE table_name_73 (game INTEGER, points INTEGER)
SELECT MAX(crowd) FROM table_name_58 WHERE home_team = "fitzroy"
What was the largest crowd that was in attendance for fitzroy?
CREATE TABLE table_name_58 (crowd INTEGER, home_team VARCHAR)
SELECT report FROM table_name_81 WHERE opposing_team = "gauteng falcons"
What report has gauteng falcons as the opposing team?
CREATE TABLE table_name_81 (report VARCHAR, opposing_team VARCHAR)
SELECT surface FROM table_name_10 WHERE result = "fernando verdasco"
Which Surface has a Result of fernando verdasco?
CREATE TABLE table_name_10 (surface VARCHAR, result VARCHAR)
SELECT MIN(track) FROM table_name_67 WHERE song_title = "little sister"
Name the least track with song of little sister
CREATE TABLE table_name_67 (track INTEGER, song_title VARCHAR)
SELECT segment_c FROM table_name_79 WHERE episode < 230 AND segment_a = "wax figures"
Which Segment C that has an Episode lower than 230, and a Segment A consisting of wax figures?
CREATE TABLE table_name_79 (segment_c VARCHAR, episode VARCHAR, segment_a VARCHAR)
SELECT COUNT(high_points) FROM table_22871239_9 WHERE record = "21-45"
Name the high points for 21-45 record
CREATE TABLE table_22871239_9 (high_points VARCHAR, record VARCHAR)
SELECT MIN(goal_difference) FROM table_name_94 WHERE goals_against = 61 AND draws < 11
What is the lowest goal difference a club with 61 goals against and less than 11 draws has?
CREATE TABLE table_name_94 (goal_difference INTEGER, goals_against VARCHAR, draws VARCHAR)
SELECT record FROM table_name_84 WHERE time = "6:00"
What is the record of the match at 6:00?
CREATE TABLE table_name_84 (record VARCHAR, time VARCHAR)
SELECT age_category FROM table_name_44 WHERE name = "marco manenti"
In which Age Category is Marco Manenti?
CREATE TABLE table_name_44 (age_category VARCHAR, name VARCHAR)
SELECT reserved_for___sc___st__none_ FROM table_name_40 WHERE name = "uklana"
What is the reserved for (ST/ST/None) when it was Uklana?
CREATE TABLE table_name_40 (reserved_for___sc___st__none_ VARCHAR, name VARCHAR)
SELECT goals FROM table_name_59 WHERE player = "mile sterjovski"
What are the goals of Mile Sterjovski as a player?
CREATE TABLE table_name_59 (goals VARCHAR, player VARCHAR)
SELECT COUNT(silver) FROM table_name_29 WHERE bronze = 2 AND gold < 2
What's the total silver medals having less than 2 gold and 2 bronze?
CREATE TABLE table_name_29 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)
SELECT SUM(games) FROM table_name_54 WHERE assist > 54
How many games had an assist number greater than 54?
CREATE TABLE table_name_54 (games INTEGER, assist INTEGER)
SELECT score FROM table_23285849_10 WHERE high_rebounds = "Aaron Afflalo (9)"
When aaron afflalo (9) has the highest amount of rebounds what is the score?
CREATE TABLE table_23285849_10 (score VARCHAR, high_rebounds VARCHAR)
SELECT date FROM table_name_20 WHERE score = "113-115 (ot)"
What date has 113-115 (ot) as the score?
CREATE TABLE table_name_20 (date VARCHAR, score VARCHAR)
SELECT place FROM table_name_61 WHERE player = "phil rodgers"
What place did Phil Rodgers finish?
CREATE TABLE table_name_61 (place VARCHAR, player VARCHAR)
SELECT MAX(played) FROM table_name_62 WHERE drawn < 1
What is the largest played when the drawn is less than 1?
CREATE TABLE table_name_62 (played INTEGER, drawn INTEGER)
SELECT year FROM table_name_73 WHERE points < 1 AND engine = "cosworth v8" AND entrant = "jolly club switzerland"
When were there less than 1 point with a cosworth v8 engine in jolly club switzerland?
CREATE TABLE table_name_73 (year VARCHAR, entrant VARCHAR, points VARCHAR, engine VARCHAR)
SELECT college FROM table_name_28 WHERE player = "john sullivan"
What college did john sullivan attend?
CREATE TABLE table_name_28 (college VARCHAR, player VARCHAR)
SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5
Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?
CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, position VARCHAR)
SELECT score FROM table_name_37 WHERE date = "october 16, 1983"
What was the score on October 16, 1983?
CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
SELECT class FROM table_name_31 WHERE vehicle = "nissan" AND year = 2007
Which class had a vehicle of Nissan in 2007?
CREATE TABLE table_name_31 (class VARCHAR, vehicle VARCHAR, year VARCHAR)
SELECT shooter FROM table_name_32 WHERE score_points = "13" AND rank_points = "10"
Who's the shooter with 13 score points and 10 rank points?
CREATE TABLE table_name_32 (shooter VARCHAR, score_points VARCHAR, rank_points VARCHAR)
SELECT founded FROM university WHERE affiliation <> 'Public' ORDER BY founded DESC LIMIT 1
Find the founded year of the newest non public school.
CREATE TABLE university (founded VARCHAR, affiliation VARCHAR)
SELECT MIN(ends_lost) FROM table_name_16 WHERE stolen_ends_for < 13 AND stolen_ends_against = 6
What is the lowest ends lost when the stolen ends for is less than 13, and stolten ends against is 6?
CREATE TABLE table_name_16 (ends_lost INTEGER, stolen_ends_for VARCHAR, stolen_ends_against VARCHAR)
SELECT sport FROM table_name_25 WHERE venue = "bosse field"
What sport was played at the bosse field?
CREATE TABLE table_name_25 (sport VARCHAR, venue VARCHAR)
SELECT opponent FROM table_name_72 WHERE october < 18 AND game = 3
Which opponent played in game 3 before October 18?
CREATE TABLE table_name_72 (opponent VARCHAR, october VARCHAR, game VARCHAR)
SELECT title FROM table_173475_1 WHERE release = 2006
What titles were released in 2006?
CREATE TABLE table_173475_1 (title VARCHAR, release VARCHAR)
SELECT T3.name, T2.name FROM Office_locations AS T1 JOIN buildings AS T2 ON T1.building_id = T2.id JOIN Companies AS T3 ON T1.company_id = T3.id
List the name of a building along with the name of a company whose office is in the building.
CREATE TABLE buildings (name VARCHAR, id VARCHAR); CREATE TABLE Office_locations (building_id VARCHAR, company_id VARCHAR); CREATE TABLE Companies (name VARCHAR, id VARCHAR)
SELECT SUM(crowd) FROM table_name_30 WHERE venue = "junction oval"
How big was the crowd size, at the Junction Oval venue?
CREATE TABLE table_name_30 (crowd INTEGER, venue VARCHAR)
SELECT distance FROM table_28490105_1 WHERE supporting = "Champ Car World Series ( Grand Prix of Cleveland )" AND tc_winning_car = "Pierre Kleinubing"
What was the distance in the round where the supporter was champ car world series ( grand prix of cleveland ) and the tc winning car was pierre kleinubing?
CREATE TABLE table_28490105_1 (distance VARCHAR, supporting VARCHAR, tc_winning_car VARCHAR)
SELECT MAX(game) FROM table_name_62 WHERE record = "24-23"
What is the highest game with a 24-23 record?
CREATE TABLE table_name_62 (game INTEGER, record VARCHAR)
SELECT AVG(points) FROM table_name_55 WHERE position > 5 AND played < 10
what is the average points when position is more than 5 and played is less than 10?
CREATE TABLE table_name_55 (points INTEGER, position VARCHAR, played VARCHAR)
SELECT SUM(Population), AVG(LifeExpectancy), Continent FROM country GROUP BY Continent HAVING AVG(LifeExpectancy) < 72
Find the average life expectancy and total population for each continent where the average life expectancy is shorter than 72?
CREATE TABLE country (Continent VARCHAR, Population INTEGER, LifeExpectancy INTEGER)
SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1
List the writers who have written more than one book.
CREATE TABLE book (Writer VARCHAR)
SELECT COUNT(written_by) FROM table_228973_5 WHERE no_in_series = 68
How many people wrote episode 68 in the series?
CREATE TABLE table_228973_5 (written_by VARCHAR, no_in_series VARCHAR)
SELECT react FROM table_name_98 WHERE lane = 3 AND heat = 2
what is the react when the lane is 3 and heat is 2?
CREATE TABLE table_name_98 (react VARCHAR, lane VARCHAR, heat VARCHAR)
SELECT record FROM table_name_89 WHERE score = "110-106"
What is the record of the game with a 110-106 score?
CREATE TABLE table_name_89 (record VARCHAR, score VARCHAR)
SELECT 1990 AS _broadway FROM table_10312547_1 WHERE character = "Peter Pan"
Who played Peter Pan in the 1990 Broadway?
CREATE TABLE table_10312547_1 (character VARCHAR)
SELECT sideline_reporter_s_ FROM table_name_72 WHERE year = 2011
Who were the sideline reporter(s) in 2011?
CREATE TABLE table_name_72 (sideline_reporter_s_ VARCHAR, year VARCHAR)
SELECT MAX(year) FROM table_name_57 WHERE position = "77th" AND poles < 0
What year had a pole smaller than 0 and in 77th position?
CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, poles VARCHAR)
SELECT player FROM table_10812938_3 WHERE college = "Saint Mary's"
Which player went to college at Saint Mary's?
CREATE TABLE table_10812938_3 (player VARCHAR, college VARCHAR)
SELECT COUNT(year) FROM table_name_38 WHERE league = "usisl pro league"
How many years was there a team that was part of the usisl pro league?
CREATE TABLE table_name_38 (year VARCHAR, league VARCHAR)
SELECT margin_of_victory FROM table_name_34 WHERE date = "15 jul 2007"
What is the margin of victory of the tournament on 15 Jul 2007?
CREATE TABLE table_name_34 (margin_of_victory VARCHAR, date VARCHAR)
SELECT chambering FROM table_26967904_1 WHERE f_bolt = "N (lbf)" AND p_max___bar__ = 3900
With what type of chambering is the F bolt n (lbf) and the P max (bar) 3900?
CREATE TABLE table_26967904_1 (chambering VARCHAR, f_bolt VARCHAR, p_max___bar__ VARCHAR)
SELECT AVG(lost) FROM table_name_21 WHERE place < 10 AND points < 23 AND team = "chorrillo" AND goals_conceded < 26
What is the average of lost for place less than 10, less than 23 points, and goals conceded less than 26 for the Chorrillo team?
CREATE TABLE table_name_21 (lost INTEGER, goals_conceded VARCHAR, team VARCHAR, place VARCHAR, points VARCHAR)
SELECT MIN(opponents) FROM table_24560733_1 WHERE opponent = "at Michigan State"
What is the minimum number of opponents' points for the game at Michigan State?
CREATE TABLE table_24560733_1 (opponents INTEGER, opponent VARCHAR)
SELECT written_by FROM table_2468961_8 WHERE directed_by = "Patrick Duffy" AND original_air_date = "November 7, 1997"
Name who wrote the episode directed by patrick duffy airing on november 7, 1997
CREATE TABLE table_2468961_8 (written_by VARCHAR, directed_by VARCHAR, original_air_date VARCHAR)
SELECT incumbent FROM table_1341453_51 WHERE first_elected = 1969
Who's the incumbent in the district that first elected in 1969?
CREATE TABLE table_1341453_51 (incumbent VARCHAR, first_elected VARCHAR)
SELECT chassis FROM table_name_30 WHERE points = 17
Which chassis has 17 points?
CREATE TABLE table_name_30 (chassis VARCHAR, points VARCHAR)
SELECT MAX(gold) FROM table_name_64 WHERE silver < 0
What is the gold medal count that has a silver medal count less than 0?
CREATE TABLE table_name_64 (gold INTEGER, silver INTEGER)
SELECT high_points FROM table_name_92 WHERE game > 58 AND high_rebounds = "francisco elson (7)"
Which High points has a Game larger than 58, and a High rebounds of francisco elson (7)?
CREATE TABLE table_name_92 (high_points VARCHAR, game VARCHAR, high_rebounds VARCHAR)
SELECT 2002 FROM table_name_6 WHERE 2008 = "career statistics"
What was 2002, when 2008 was, "career statistics"?
CREATE TABLE table_name_6 (Id VARCHAR)
SELECT player FROM table_name_98 WHERE to_par = "–2" AND country = "united states"
Who has a To par of –2, and a Country of united states?
CREATE TABLE table_name_98 (player VARCHAR, to_par VARCHAR, country VARCHAR)