answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT surface FROM table_name_61 WHERE championship = "palermo, italy"
CREATE TABLE table_name_61 (surface VARCHAR, championship VARCHAR)
What is the surface of the palermo, italy championship?
SELECT SUM(round) FROM table_name_92 WHERE position = "ol" AND player = "richard zulys"
CREATE TABLE table_name_92 (round INTEGER, position VARCHAR, player VARCHAR)
In what Round was OL Player Richard Zulys picked?
SELECT player FROM table_name_30 WHERE school_club_team = "mcgill"
CREATE TABLE table_name_30 (player VARCHAR, school_club_team VARCHAR)
What is the Player from McGill?
SELECT college FROM table_name_53 WHERE overall = 171
CREATE TABLE table_name_53 (college VARCHAR, overall VARCHAR)
Which College had an Overall pick of 171?
SELECT name FROM table_name_36 WHERE overall = 72
CREATE TABLE table_name_36 (name VARCHAR, overall VARCHAR)
Who had the overall pick of 72?
SELECT primary_conference FROM table_name_39 WHERE team_nickname = "phoenix"
CREATE TABLE table_name_39 (primary_conference VARCHAR, team_nickname VARCHAR)
What primary conference does the team nicknamed Phoenix belongs to?
SELECT location FROM table_name_36 WHERE home_rink = "triangle sports plex/greensboro ice house"
CREATE TABLE table_name_36 (location VARCHAR, home_rink VARCHAR)
Where is the location for the home rink Triangle sports plex/Greensboro ice house?
SELECT SUM(pick) FROM table_name_60 WHERE former_wnba_team = "minnesota lynx"
CREATE TABLE table_name_60 (pick INTEGER, former_wnba_team VARCHAR)
What pick was a player that previously played for the Minnesota Lynx?
SELECT player FROM table_name_89 WHERE pick > 23
CREATE TABLE table_name_89 (player VARCHAR, pick INTEGER)
Which player was picked after 23?
SELECT nationality FROM table_name_74 WHERE college_country_team = "mississippi"
CREATE TABLE table_name_74 (nationality VARCHAR, college_country_team VARCHAR)
What is the nationality of the player who went to college at Mississippi?
SELECT player FROM table_name_62 WHERE new_wnba_team = "miami sol" AND college_country_team = "north carolina state"
CREATE TABLE table_name_62 (player VARCHAR, new_wnba_team VARCHAR, college_country_team VARCHAR)
Who is the player who played for the Miami Sol and went to school at North Carolina State?
SELECT AVG(ast_avg) FROM table_name_74 WHERE games > 101 AND rank = 5 AND total_assists < 331
CREATE TABLE table_name_74 (ast_avg INTEGER, total_assists VARCHAR, games VARCHAR, rank VARCHAR)
WHAT IS THE AVG AST FOR GAMES LARGER THAN 101, RANK 5, TOTAL ASSISTS SMALLER THAN 331?
SELECT SUM(ast_avg) FROM table_name_20 WHERE rank = 5 AND games > 108
CREATE TABLE table_name_20 (ast_avg INTEGER, rank VARCHAR, games VARCHAR)
WHAT IS THE SUM OF AST AVG WITH RANK 5 AND GAMES BIGGER THAN 108?
SELECT round FROM table_name_55 WHERE name = "john goodyear"
CREATE TABLE table_name_55 (round VARCHAR, name VARCHAR)
Which Round has a Name of john goodyear?
SELECT COUNT(round) FROM table_name_64 WHERE college = "appalachian state" AND overall < 156
CREATE TABLE table_name_64 (round VARCHAR, college VARCHAR, overall VARCHAR)
Which Round has a College of appalachian state, and an Overall smaller than 156?
SELECT COUNT(pick) FROM table_name_46 WHERE round > 17 AND name = "gene stewart"
CREATE TABLE table_name_46 (pick VARCHAR, round VARCHAR, name VARCHAR)
Which Pick has a Round larger than 17, and a Name of gene stewart?
SELECT res FROM table_name_96 WHERE opponent = "rory markham"
CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)
What was the result when the opponent was Rory Markham?
SELECT branding FROM table_name_27 WHERE frequency = "1080khz"
CREATE TABLE table_name_27 (branding VARCHAR, frequency VARCHAR)
Which Branding has a frequency of 1080khz?
SELECT frequency FROM table_name_23 WHERE location = "dagupan"
CREATE TABLE table_name_23 (frequency VARCHAR, location VARCHAR)
Which frequency is located in Dagupan?
SELECT frequency FROM table_name_33 WHERE branding = "dzec radyo agila 1062"
CREATE TABLE table_name_33 (frequency VARCHAR, branding VARCHAR)
What frequency does branding dzec radyo agila 1062 have?
SELECT frequency FROM table_name_5 WHERE power__kw_ = "40kw"
CREATE TABLE table_name_5 (frequency VARCHAR, power__kw_ VARCHAR)
Which frequency has 40kw power?
SELECT frequency FROM table_name_35 WHERE location = "davao"
CREATE TABLE table_name_35 (frequency VARCHAR, location VARCHAR)
Which frequency is located in Davao?
SELECT peak_population__year_ FROM table_name_34 WHERE city = "scranton"
CREATE TABLE table_name_34 (peak_population__year_ VARCHAR, city VARCHAR)
what is the peak population (year) for scranton?
SELECT numeric_decline_from_peak_population FROM table_name_99 WHERE percent_decline_from_peak_population = "-16.76%"
CREATE TABLE table_name_99 (numeric_decline_from_peak_population VARCHAR, percent_decline_from_peak_population VARCHAR)
what is the numeric decline from peak population when the perfect decline from peak population is -16.76%
SELECT state FROM table_name_33 WHERE peak_population__year_ = "134995 (1950)"
CREATE TABLE table_name_33 (state VARCHAR, peak_population__year_ VARCHAR)
what is the state when the peak population (year) is 134995 (1950)?
SELECT percent_decline_from_peak_population FROM table_name_98 WHERE peak_population__year_ = "178320 (1960)"
CREATE TABLE table_name_98 (percent_decline_from_peak_population VARCHAR, peak_population__year_ VARCHAR)
what is the percent decline from peak population when the peak population (year) is 178320 (1960)?
SELECT rank FROM table_name_7 WHERE studio = "universal" AND director = "john hughes"
CREATE TABLE table_name_7 (rank VARCHAR, studio VARCHAR, director VARCHAR)
WHAT IS THE RANK OF UNIVERSAL, AND DIRECTOR JOHN HUGHES?
SELECT title FROM table_name_98 WHERE rank > 10 AND director = "walter hill"
CREATE TABLE table_name_98 (title VARCHAR, rank VARCHAR, director VARCHAR)
WHAT IS THE TITLE THAT HAS A RANK BIGGER THAN 10, FOR DIRECTOR WALTER HILL?
SELECT studio FROM table_name_41 WHERE title = "mask"
CREATE TABLE table_name_41 (studio VARCHAR, title VARCHAR)
WHAT IS THE STUDIO WITH THE TITLE MASK?
SELECT COUNT(rank) FROM table_name_59 WHERE gross = "$96,773,200"
CREATE TABLE table_name_59 (rank VARCHAR, gross VARCHAR)
WHAT IS THE RANK WITH A GROSS OF $96,773,200?
SELECT drawn FROM table_name_44 WHERE lost < 12 AND goal_difference = "+20"
CREATE TABLE table_name_44 (drawn VARCHAR, lost VARCHAR, goal_difference VARCHAR)
How many times was the player drawn that had less than 12 losses and a goal difference of +20?
SELECT SUM(position) FROM table_name_36 WHERE drawn = 10 AND lost < 25 AND goal_difference = "+20" AND played < 42
CREATE TABLE table_name_36 (position INTEGER, played VARCHAR, goal_difference VARCHAR, drawn VARCHAR, lost VARCHAR)
What is the sum of the positions for the player who had less than 25 losses, a goal difference of +20, 10 draws, and played less than 42?
SELECT MAX(played) FROM table_name_89 WHERE lost < 13 AND goal_difference = "+46"
CREATE TABLE table_name_89 (played INTEGER, lost VARCHAR, goal_difference VARCHAR)
What is the highest number played when there were less than 13 losses and a goal difference of +46?
SELECT points_1 FROM table_name_75 WHERE position > 4 AND goals_for = 54 AND lost > 11
CREATE TABLE table_name_75 (points_1 VARCHAR, lost VARCHAR, position VARCHAR, goals_for VARCHAR)
What is listed under points 1 when the position was greater than 4, there were 54 goals for and more than 11 losses?
SELECT worship_leader FROM table_name_33 WHERE lead_supporting_vocal = "marcus temu"
CREATE TABLE table_name_33 (worship_leader VARCHAR, lead_supporting_vocal VARCHAR)
Who was the worship leader that had a lead supporting vocal Marcus Temu?
SELECT lead_supporting_vocal FROM table_name_32 WHERE time = "4:54"
CREATE TABLE table_name_32 (lead_supporting_vocal VARCHAR, time VARCHAR)
Who was the lead supporting vocalist on the song that was 4:54 long?
SELECT worship_leader FROM table_name_17 WHERE time = "7:05"
CREATE TABLE table_name_17 (worship_leader VARCHAR, time VARCHAR)
Who was the Worship Leader for the song that was 7:05 long?
SELECT song FROM table_name_12 WHERE lead_supporting_vocal = "marcus temu"
CREATE TABLE table_name_12 (song VARCHAR, lead_supporting_vocal VARCHAR)
What is the song name that featured Marcus Temu as the lead supporting vocalist?
SELECT MIN(diameter) FROM table_name_71 WHERE longitude = "71.1w"
CREATE TABLE table_name_71 (diameter INTEGER, longitude VARCHAR)
What's the lowest diameter when the longitude is 71.1w?
SELECT MIN(diameter) FROM table_name_7 WHERE name = "dardanus sulcus"
CREATE TABLE table_name_7 (diameter INTEGER, name VARCHAR)
What is dardanus sulcus' lowest diameter?
SELECT COUNT(year_named) FROM table_name_68 WHERE name = "ur sulcus" AND diameter < 1 OFFSET 145.0
CREATE TABLE table_name_68 (year_named VARCHAR, name VARCHAR, diameter VARCHAR)
How many years is ur sulcus listed with a diameter less than 1,145.0?
SELECT score FROM table_name_78 WHERE attendance = 3188
CREATE TABLE table_name_78 (score VARCHAR, attendance VARCHAR)
When the attendance was 3188 what was the score?
SELECT MAX(attendance) FROM table_name_69 WHERE date = "16 august 2008" AND home = "deportes savio"
CREATE TABLE table_name_69 (attendance INTEGER, date VARCHAR, home VARCHAR)
What is the maximum number of people in attendance on 16 August 2008 when the home team was Deportes Savio?
SELECT away FROM table_name_49 WHERE home = "deportes savio"
CREATE TABLE table_name_49 (away VARCHAR, home VARCHAR)
What team was the away team when the Deportes Savio was the home team?
SELECT away FROM table_name_93 WHERE score = "3:1"
CREATE TABLE table_name_93 (away VARCHAR, score VARCHAR)
What was the away team when the score was 3:1?
SELECT attendance FROM table_name_29 WHERE date = "16 august 2008" AND away = "platense"
CREATE TABLE table_name_29 (attendance VARCHAR, date VARCHAR, away VARCHAR)
When Platense was the away team on 16 August 2008 how many people attended the game?
SELECT score FROM table_name_17 WHERE attendance = 2441
CREATE TABLE table_name_17 (score VARCHAR, attendance VARCHAR)
What was the score when 2441 people were in attendance?
SELECT driver FROM table_name_77 WHERE points = "35+3"
CREATE TABLE table_name_77 (driver VARCHAR, points VARCHAR)
Which driver had 35+3 points?
SELECT time_retired FROM table_name_78 WHERE points = "14"
CREATE TABLE table_name_78 (time_retired VARCHAR, points VARCHAR)
What was the time/retired for the driver with 14 points?
SELECT total FROM table_name_79 WHERE league_cup_goals = "4" AND fa_cup_goals = "0"
CREATE TABLE table_name_79 (total VARCHAR, league_cup_goals VARCHAR, fa_cup_goals VARCHAR)
What is the sum of goals when the league cup goals are 4 and the FA cup goals are 0?
SELECT fa_cup_goals FROM table_name_78 WHERE total > 16 AND league_cup_goals = "1" AND club = "norwich city"
CREATE TABLE table_name_78 (fa_cup_goals VARCHAR, club VARCHAR, total VARCHAR, league_cup_goals VARCHAR)
What is the amount of FA cups goals that were made when the total goals is greater than 16, and the league cup goals is 1 for the Norwich City club?
SELECT league_goals FROM table_name_66 WHERE league_cup_goals = "0" AND scorer = "bill dearden"
CREATE TABLE table_name_66 (league_goals VARCHAR, league_cup_goals VARCHAR, scorer VARCHAR)
What is the number of league goals when Bill Dearden was the scorer and there was 0 league cup goals?
SELECT name FROM table_name_15 WHERE transfer_window = "summer" AND transfer_fee = "undisclosed" AND moving_from = "brussels"
CREATE TABLE table_name_15 (name VARCHAR, moving_from VARCHAR, transfer_window VARCHAR, transfer_fee VARCHAR)
What is the name of the player with a transfer window in summer, an undisclosed transfer fee, and is moving from brussels?
SELECT type FROM table_name_79 WHERE transfer_window = "summer" AND name = "bulykin"
CREATE TABLE table_name_79 (type VARCHAR, transfer_window VARCHAR, name VARCHAR)
What is the type of bulykin, which has a summer transfer window?
SELECT country FROM table_name_70 WHERE name = "cordier"
CREATE TABLE table_name_70 (country VARCHAR, name VARCHAR)
What is the country of cordier?
SELECT country FROM table_name_69 WHERE transfer_window = "summer" AND moving_from = "belgrano"
CREATE TABLE table_name_69 (country VARCHAR, transfer_window VARCHAR, moving_from VARCHAR)
What is the country of the player moving from belgrano with a summer transfer window?
SELECT transfer_window FROM table_name_40 WHERE moving_from = "barueri"
CREATE TABLE table_name_40 (transfer_window VARCHAR, moving_from VARCHAR)
What is the transfer window of the player moving from barueri?
SELECT type FROM table_name_11 WHERE moving_from = "belgrano"
CREATE TABLE table_name_11 (type VARCHAR, moving_from VARCHAR)
What is the type of the player moving from belgrano?
SELECT AVG(round) FROM table_name_94 WHERE pick = 22 AND overall < 229
CREATE TABLE table_name_94 (round INTEGER, pick VARCHAR, overall VARCHAR)
Average round for 22 pick that is overall smaller than 229?
SELECT AVG(2002) FROM table_name_88 WHERE country = "peru" AND 2007 > 1 OFFSET 200
CREATE TABLE table_name_88 (country VARCHAR)
What is the normal 2002 that has a Country of Peru, and 2007 bigger than 1,200?
SELECT MIN(2009) FROM table_name_81 WHERE 2005 < 640 AND 2011 = 425 AND 2003 < 500
CREATE TABLE table_name_81 (Id VARCHAR)
What is the least 2009 that has 2005 littler than 640, and 2011 of 425, and 2003 littler than 500?
SELECT MAX(bronze) FROM table_name_37 WHERE silver < 0
CREATE TABLE table_name_37 (bronze INTEGER, silver INTEGER)
How many Bronze medals did the Nation with 0 Silver receive?
SELECT MIN(gold) FROM table_name_88 WHERE total < 8 AND bronze < 1 AND silver < 1
CREATE TABLE table_name_88 (gold INTEGER, silver VARCHAR, total VARCHAR, bronze VARCHAR)
How many Gold medals did the Nation with less than 8 Total medals including 1 Bronze and 0 Silver receive?
SELECT AVG(total) FROM table_name_47 WHERE bronze < 0
CREATE TABLE table_name_47 (total INTEGER, bronze INTEGER)
How many Total medals did the Nation the got 0 Bronze medals receive?
SELECT nation FROM table_name_46 WHERE silver < 3 AND total > 1 AND gold < "4" AND rank = "4"
CREATE TABLE table_name_46 (nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR, total VARCHAR)
What Nation had a more than 1 Total medal including less than 3 Silver, less than 4 Gold and a Rank of 4?
SELECT SUM(silver) FROM table_name_21 WHERE gold < 1 AND rank = "8" AND total > 1
CREATE TABLE table_name_21 (silver INTEGER, total VARCHAR, gold VARCHAR, rank VARCHAR)
How many Silver medals did the Nation ranking 8 with more than 1 Total medal but less than 1 Gold receive?
SELECT start FROM table_name_16 WHERE main_host = "luke jacobz" AND winning_mentor = "dannii minogue"
CREATE TABLE table_name_16 (start VARCHAR, main_host VARCHAR, winning_mentor VARCHAR)
What is the start date with Luke Jacobz hosting and Dannii Minogue as a winning mentor?
SELECT third_place FROM table_name_59 WHERE winning_mentor = "guy sebastian" AND runner_up = "andrew wishart"
CREATE TABLE table_name_59 (third_place VARCHAR, winning_mentor VARCHAR, runner_up VARCHAR)
Who was in third place when Guy Sebastian was the winning mentor and Andrew Wishart was the runner-up?
SELECT SUM(election) FROM table_name_64 WHERE mayor = "adalberto mosaner" AND inhabitants < 16 OFFSET 170
CREATE TABLE table_name_64 (election INTEGER, mayor VARCHAR, inhabitants VARCHAR)
In what Election year was Adalberto Mosaner the Mayor with less than 16,170 Inhabitants?
SELECT COUNT(election) FROM table_name_14 WHERE inhabitants < 16 OFFSET 170
CREATE TABLE table_name_14 (election VARCHAR, inhabitants INTEGER)
In what Election year were there less than 16,170 Inhabitants?
SELECT mayor FROM table_name_37 WHERE election = 2010 AND municipality = "riva del garda"
CREATE TABLE table_name_37 (mayor VARCHAR, election VARCHAR, municipality VARCHAR)
What is the Mayor of Riva del Garda in 2010?
SELECT AVG(inhabitants) FROM table_name_7 WHERE party = "union for trentino" AND election > 2009
CREATE TABLE table_name_7 (inhabitants INTEGER, party VARCHAR, election VARCHAR)
How many Inhabitants were there after 2009 in the Municipality with a Party of union for trentino?
SELECT MIN(enrollment) FROM table_name_19 WHERE founded = "1992" AND joined_conference < 1998
CREATE TABLE table_name_19 (enrollment INTEGER, founded VARCHAR, joined_conference VARCHAR)
What is the lowest enrolled school that was founded in 1992 and joined a conference before 1998?
SELECT football FROM table_name_2 WHERE soccer = "wooster" AND golf = "ashland"
CREATE TABLE table_name_2 (football VARCHAR, soccer VARCHAR, golf VARCHAR)
Which foot ball team played soccer at wooster, and Gold in Ashland?
SELECT COUNT(total) FROM table_name_98 WHERE bronze < 2 AND rank < 4 AND silver < 1
CREATE TABLE table_name_98 (total VARCHAR, silver VARCHAR, bronze VARCHAR, rank VARCHAR)
What is the total for the team with fewer than 2 bronze, ranked less than 4 and fewer than 1 silver?
SELECT COUNT(silver) FROM table_name_53 WHERE bronze > 2 AND gold > 7
CREATE TABLE table_name_53 (silver VARCHAR, bronze VARCHAR, gold VARCHAR)
How many silver for the team with more than 2 bronze and more than 7 gold?
SELECT SUM(total) FROM table_name_41 WHERE bronze = 0 AND silver = 3
CREATE TABLE table_name_41 (total INTEGER, bronze VARCHAR, silver VARCHAR)
What is the total for the team with 0 bronze and 3 silver?
SELECT COUNT(round) FROM table_name_5 WHERE location = "nevada, united states" AND time = "1:55"
CREATE TABLE table_name_5 (round VARCHAR, location VARCHAR, time VARCHAR)
What is the total number of Rounds held in Nevada, United States in which the time was 1:55?
SELECT time FROM table_name_5 WHERE opponent = "rudy martin"
CREATE TABLE table_name_5 (time VARCHAR, opponent VARCHAR)
What was the time when his opponent was Rudy Martin?
SELECT method FROM table_name_31 WHERE time = "1:52"
CREATE TABLE table_name_31 (method VARCHAR, time VARCHAR)
What was the method when the fight's time was 1:52?
SELECT MIN(overs) FROM table_name_29 WHERE team = "chennai super kings" AND best_bowling = "2/17" AND economy_rate < 5.92
CREATE TABLE table_name_29 (overs INTEGER, economy_rate VARCHAR, team VARCHAR, best_bowling VARCHAR)
What is the lowest overs of the Chennai Super Kings when the Economy Rate is less than 5.92 with a Best Bowling number of 2/17?
SELECT MIN(overs) FROM table_name_50 WHERE team = "royal challengers bangalore"
CREATE TABLE table_name_50 (overs INTEGER, team VARCHAR)
What is the lowest number of Overs for the Royal Challengers Bangalore?
SELECT MAX(strike_rate) FROM table_name_15 WHERE matches < 13 AND average < 50.25
CREATE TABLE table_name_15 (strike_rate INTEGER, matches VARCHAR, average VARCHAR)
What is the highest Strike Rate when the average is less than 50.25 with less than 13 matches played?
SELECT venue FROM table_name_12 WHERE position = "4th"
CREATE TABLE table_name_12 (venue VARCHAR, position VARCHAR)
What is the venue of the race where Lineth Chepkurui placed 4th?
SELECT venue FROM table_name_13 WHERE notes = "team" AND year < 2010
CREATE TABLE table_name_13 (venue VARCHAR, notes VARCHAR, year VARCHAR)
What is the venue of the team race that was before 2010?
SELECT venue FROM table_name_23 WHERE year > 2008 AND notes = "team"
CREATE TABLE table_name_23 (venue VARCHAR, year VARCHAR, notes VARCHAR)
What is the venue of the team race that was after 2008?
SELECT competition FROM table_name_27 WHERE position = "5th"
CREATE TABLE table_name_27 (competition VARCHAR, position VARCHAR)
What competition did Lineth Chepkurui place 5th?
SELECT MAX(total_votes) FROM table_name_7 WHERE outcome = "elected" AND candidate = "lee teng-hui"
CREATE TABLE table_name_7 (total_votes INTEGER, outcome VARCHAR, candidate VARCHAR)
How many votes did Lee Teng-Hui receive when he was elected?
SELECT score FROM table_name_11 WHERE match < 13 AND home_away = "home" AND date = "april 21, 2008"
CREATE TABLE table_name_11 (score VARCHAR, date VARCHAR, match VARCHAR, home_away VARCHAR)
What was the score for a match before 13, and a home game on April 21, 2008?
SELECT home_away FROM table_name_19 WHERE date = "february 29, 2008"
CREATE TABLE table_name_19 (home_away VARCHAR, date VARCHAR)
What home/away game is on February 29, 2008?
SELECT home_team FROM table_name_88 WHERE away_team = "manchester city"
CREATE TABLE table_name_88 (home_team VARCHAR, away_team VARCHAR)
What team was the home team when Manchester City was the away team?
SELECT SUM(points) FROM table_name_39 WHERE equipment = "zabel-bsu" AND position = 42
CREATE TABLE table_name_39 (points INTEGER, equipment VARCHAR, position VARCHAR)
What is the sum of Points, when Equipment was "Zabel-BSU", and when Position was 42?
SELECT equipment FROM table_name_79 WHERE points < 6 AND position = 53
CREATE TABLE table_name_79 (equipment VARCHAR, points VARCHAR, position VARCHAR)
What is Equipment, when Points is less than 6, and when Position is 53?
SELECT second FROM table_name_51 WHERE position > 33 AND points > 12 AND equipment = "zabel-vmc"
CREATE TABLE table_name_51 (second VARCHAR, equipment VARCHAR, position VARCHAR, points VARCHAR)
What is Second, when Position is greater than 33, when Points is greater than 12, and when Equipment is Zabel-VMC?
SELECT equipment FROM table_name_51 WHERE position > 28 AND points > 10
CREATE TABLE table_name_51 (equipment VARCHAR, position VARCHAR, points VARCHAR)
What is Equipment, when Position is greater than 28, and when Points is greater than 10?
SELECT away_team AS score FROM table_name_84 WHERE away_team = "hawthorn"
CREATE TABLE table_name_84 (away_team VARCHAR)
When Hawthorn is the away team, what is their score?
SELECT ground FROM table_name_79 WHERE crowd > 41 OFFSET 185
CREATE TABLE table_name_79 (ground VARCHAR, crowd INTEGER)
Which ground has a crowd over 41,185?
SELECT place FROM table_name_25 WHERE score = 67 - 68 - 78 - 77 = 290
CREATE TABLE table_name_25 (place VARCHAR, score VARCHAR)
What place has a 67-68-78-77=290 score?
SELECT MAX(to_par) FROM table_name_30 WHERE country = "united states" AND place = "t3" AND score = 74 - 73 - 72 - 69 = 288
CREATE TABLE table_name_30 (to_par INTEGER, country VARCHAR, place VARCHAR, score VARCHAR)
What is the highest to par of the player from the United States with a t3 place and a 74-73-72-69=288 place?
SELECT place FROM table_name_7 WHERE money___$__ = "7,500" AND player = "peter oosterhuis"
CREATE TABLE table_name_7 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
What is the place of player peter oosterhuis, who has $7,500?