answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT SUM(episode) FROM table_name_25 WHERE performer_1 = "jim sweeney" AND performer_4 = "mike mcshane"
What is the episode number where Jim Sweeney was performer 1 and Mike Mcshane was performer 4?
CREATE TABLE table_name_25 (episode INTEGER, performer_1 VARCHAR, performer_4 VARCHAR)
SELECT MIN(season) FROM table_25369796_1 WHERE position = "29th"
What was the earliest season where a team got a 29th position?
CREATE TABLE table_25369796_1 (season INTEGER, position VARCHAR)
SELECT AVG(silver) FROM table_name_38 WHERE rank > 7 AND total = 6 AND bronze < 2
On average, what is the number of silver medals for nations ranking higher than 7, with a total of 6 medals and fewer than 2 bronze medals?
CREATE TABLE table_name_38 (silver INTEGER, bronze VARCHAR, rank VARCHAR, total VARCHAR)
SELECT finish FROM table_name_69 WHERE qual = "143.056"
What finish has a 143.056 qual?
CREATE TABLE table_name_69 (finish VARCHAR, qual VARCHAR)
SELECT player FROM table_name_71 WHERE to_par = "–4"
What is the Player that has a To standard of –4?
CREATE TABLE table_name_71 (player VARCHAR, to_par VARCHAR)
SELECT winning_team FROM table_name_1 WHERE round = "3"
Who was the winning team for round 3?
CREATE TABLE table_name_1 (winning_team VARCHAR, round VARCHAR)
SELECT AVG(year) FROM table_name_11 WHERE version = "wolf mix"
What year had a version called Wolf Mix?
CREATE TABLE table_name_11 (year INTEGER, version VARCHAR)
SELECT SUM(attendance) FROM table_name_49 WHERE location = "ebbets field" AND time = "2:56" AND game > 6
Location of ebbets field, and a Time of 2:56, and a Game larger than 6 has what sum of attendance?
CREATE TABLE table_name_49 (attendance INTEGER, game VARCHAR, location VARCHAR, time VARCHAR)
SELECT session FROM table_name_41 WHERE circuit = "milwaukee mile"
The Milwaukee Mile circuit has what type of session?
CREATE TABLE table_name_41 (session VARCHAR, circuit VARCHAR)
SELECT MAX(grid) FROM table_name_32 WHERE driver = "alexander wurz" AND laps < 58
In less than 58 laps, what is the highest grid for Alexander Wurz?
CREATE TABLE table_name_32 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT frequency_mhz FROM table_name_92 WHERE erp_w > 4 AND call_sign = "w218ap"
Which Frequency MHz has an ERP W larger than 4, and a Call sign of w218ap?
CREATE TABLE table_name_92 (frequency_mhz VARCHAR, erp_w VARCHAR, call_sign VARCHAR)
SELECT original_airdate FROM table_24222929_4 WHERE episode_number_production_number = "7 1-07"
Name the original air date for 7 1-07
CREATE TABLE table_24222929_4 (original_airdate VARCHAR, episode_number_production_number VARCHAR)
SELECT MAX(swimsuit) FROM table_name_91 WHERE evening_gown > 9.175 AND interview < 8.425
What is the highest swimsuit score of the contestant with an evening gown larger than 9.175 and an interview score less than 8.425?
CREATE TABLE table_name_91 (swimsuit INTEGER, evening_gown VARCHAR, interview VARCHAR)
SELECT team FROM table_name_70 WHERE rebounds < 275 AND games < 34 AND name = "curtis borchardt"
In game 34 Curtis Borchardt played on which team with less than 275 rebounds?
CREATE TABLE table_name_70 (team VARCHAR, name VARCHAR, rebounds VARCHAR, games VARCHAR)
SELECT COUNT(laps) FROM table_name_12 WHERE team = "team player's" AND grid = 9 AND points > 10
What is the total number of laps for a team of team player's, and has a grid of 9, and points larger than 10?
CREATE TABLE table_name_12 (laps VARCHAR, points VARCHAR, team VARCHAR, grid VARCHAR)
SELECT destination FROM table_29770377_1 WHERE route_via = "Kulitthurai,Neyyattinkara"
What is the destination of the route kulitthurai,neyyattinkara?
CREATE TABLE table_29770377_1 (destination VARCHAR, route_via VARCHAR)
SELECT name, LOCATION FROM cinema ORDER BY capacity DESC LIMIT 1
What are the name and location of the cinema with the largest capacity?
CREATE TABLE cinema (name VARCHAR, LOCATION VARCHAR, capacity VARCHAR)
SELECT dadar_xi_‘b’ FROM table_28759261_5 WHERE pifa_colaba_fc_u_17 = "Sporting Options"
what is the dadar xi b where pifa colaba is sporting options?
CREATE TABLE table_28759261_5 (dadar_xi_‘b’ VARCHAR, pifa_colaba_fc_u_17 VARCHAR)
SELECT COUNT(stage) FROM table_name_74 WHERE category < 1
What is the stage number when the category is less than 1?
CREATE TABLE table_name_74 (stage VARCHAR, category INTEGER)
SELECT position FROM table_name_88 WHERE years_in_toronto = "1996-97"
Who has position in year 1996-97 in Toronto?
CREATE TABLE table_name_88 (position VARCHAR, years_in_toronto VARCHAR)
SELECT COUNT(round) FROM table_11803648_20 WHERE player = "Matthew Puempel"
How many rounds is the player Matthew Puempel associated with?
CREATE TABLE table_11803648_20 (round VARCHAR, player VARCHAR)
SELECT MIN(first_elected) FROM table_1341522_50 WHERE incumbent = "Jim McDermott"
What year was incumbent jim mcdermott first elected?
CREATE TABLE table_1341522_50 (first_elected INTEGER, incumbent VARCHAR)
SELECT music FROM table_name_7 WHERE result = "eliminated"
What was the music of the team that was eliminated?
CREATE TABLE table_name_7 (music VARCHAR, result VARCHAR)
SELECT COUNT(material_collected) FROM table_19534677_1 WHERE isbn = "978-1401221935"
Name the total number for material collected for 978-1401221935
CREATE TABLE table_19534677_1 (material_collected VARCHAR, isbn VARCHAR)
SELECT opponent FROM table_name_53 WHERE record = "1-1-0"
Who is the opponent of the team with a 1-1-0 record?
CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR)
SELECT COUNT(venue) FROM table_21256068_3 WHERE round = "1"
how many venues were played on in round 1
CREATE TABLE table_21256068_3 (venue VARCHAR, round VARCHAR)
SELECT COUNT(cfl_team) FROM table_20170644_5 WHERE college = "Laval"
How many players were drafted from laval?
CREATE TABLE table_20170644_5 (cfl_team VARCHAR, college VARCHAR)
SELECT home FROM table_name_21 WHERE score = "1–2" AND date = "october 17"
What is the Home team on October 17 with a Score of 1–2?
CREATE TABLE table_name_21 (home VARCHAR, score VARCHAR, date VARCHAR)
SELECT governor FROM table_name_4 WHERE took_office = "january 13, 1877"
Which governor took office on January 13, 1877
CREATE TABLE table_name_4 (governor VARCHAR, took_office VARCHAR)
SELECT SUM(bronze) FROM table_name_82 WHERE gold > 2 AND rank < 3 AND silver < 22
What is the sum of bronzes for teams with more than 2 gold, ranked under 3, and less than 22 silver?
CREATE TABLE table_name_82 (bronze INTEGER, silver VARCHAR, gold VARCHAR, rank VARCHAR)
SELECT MAX(laps) FROM table_name_56 WHERE time = "accident" AND bike = "suzuki gsx-r1000"
What is the highest number of laps with an accident time and a suzuki gsx-r1000 bike?
CREATE TABLE table_name_56 (laps INTEGER, time VARCHAR, bike VARCHAR)
SELECT number_of_dances FROM table_25391981_3 WHERE average = "20.6"
What is the number of dances for the team that averages 20.6?
CREATE TABLE table_25391981_3 (number_of_dances VARCHAR, average VARCHAR)
SELECT date FROM table_name_4 WHERE "type" = "type"
What is the date where the type is type?
CREATE TABLE table_name_4 (date VARCHAR)
SELECT SUM(round) FROM table_name_41 WHERE record = "6-3"
Tell me the sum of round for record of 6-3
CREATE TABLE table_name_41 (round INTEGER, record VARCHAR)
SELECT AVG(opened) FROM table_name_62 WHERE city = "barcelona, spain" AND stadium = "mini estadi"
What is the average opened year of Mini Estadi stadium in Barcelona, Spain?
CREATE TABLE table_name_62 (opened INTEGER, city VARCHAR, stadium VARCHAR)
SELECT outcome FROM table_name_63 WHERE opponent = "victoria azarenka" AND score = "6–2, 2–6, 7–5"
What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?
CREATE TABLE table_name_63 (outcome VARCHAR, opponent VARCHAR, score VARCHAR)
SELECT current_club FROM table_name_50 WHERE height = 1.96
What current club has a Height of 1.96?
CREATE TABLE table_name_50 (current_club VARCHAR, height VARCHAR)
SELECT score FROM table_name_56 WHERE opponent_in_the_final = "divij sharan"
What was the score of the game against Divij Sharan?
CREATE TABLE table_name_56 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT game FROM table_name_15 WHERE team = "chicago"
Which game number did they play the Chicago team?
CREATE TABLE table_name_15 (game VARCHAR, team VARCHAR)
SELECT SUM(champions_league) FROM table_name_40 WHERE serie_a = 1 AND total > 1 AND coppa_italia > 2
What is the championsleague when the total was greater than 1, the coppa italia was more than 2, and the Serie A was 1?
CREATE TABLE table_name_40 (champions_league INTEGER, coppa_italia VARCHAR, serie_a VARCHAR, total VARCHAR)
SELECT location_s_ FROM table_19897294_9 WHERE family_families = "The Abbas Family and The Pickering Family"
where was the abbas family and the pickering family located
CREATE TABLE table_19897294_9 (location_s_ VARCHAR, family_families VARCHAR)
SELECT COUNT(gdp_per_capita__nominal_) FROM table_11780179_1 WHERE gdp__nominal_ = "$29.9 billion"
How many countries has a gdp (nominal) of $29.9 billion?
CREATE TABLE table_11780179_1 (gdp_per_capita__nominal_ VARCHAR, gdp__nominal_ VARCHAR)
SELECT overall FROM table_name_82 WHERE college = "iowa" AND position = "db"
What was the overall draft pick of the player who was a db and attended college in iowa?
CREATE TABLE table_name_82 (overall VARCHAR, college VARCHAR, position VARCHAR)
SELECT location FROM table_name_1 WHERE time = "1:59:12"
What location had 1:59:12 in time?
CREATE TABLE table_name_1 (location VARCHAR, time VARCHAR)
SELECT position FROM table_name_69 WHERE game_1 = "noel cleal"
Which Position has a Game 1 of noel cleal?
CREATE TABLE table_name_69 (position VARCHAR, game_1 VARCHAR)
SELECT winner__male_ FROM table_name_40 WHERE winner__female_ = "marleen renders" AND year > 1998
Who is the male winner the year after 1998 with Marleen Renders as the female winner?
CREATE TABLE table_name_40 (winner__male_ VARCHAR, winner__female_ VARCHAR, year VARCHAR)
SELECT res FROM table_name_55 WHERE opponent = "wataru sakata"
What is the result for the match against Wataru Sakata?
CREATE TABLE table_name_55 (res VARCHAR, opponent VARCHAR)
SELECT COUNT(kickoff_)[a_] FROM table_11406866_2 WHERE "week" = "week"
what is the total number of kickoff [a ] where week is week
CREATE TABLE table_11406866_2 (a_ VARCHAR, kickoff_ VARCHAR)
SELECT title FROM table_2409041_5 WHERE no_in_series = 77
What is the name of episode number 77 in the series?
CREATE TABLE table_2409041_5 (title VARCHAR, no_in_series VARCHAR)
SELECT SUM(number) FROM table_name_66 WHERE opponent = "fokker d.vii" AND time = 600
What number has the opponent Fokker d.vii with a time of 600?
CREATE TABLE table_name_66 (number INTEGER, opponent VARCHAR, time VARCHAR)
SELECT T1.driverid, T1.forename, COUNT(*) FROM drivers AS T1 JOIN results AS T2 ON T1.driverid = T2.driverid JOIN races AS T3 ON T2.raceid = T3.raceid GROUP BY T1.driverid HAVING COUNT(*) >= 2
Find the id, forename and number of races of all drivers who have at least participated in two races?
CREATE TABLE drivers (driverid VARCHAR, forename VARCHAR); CREATE TABLE races (raceid VARCHAR); CREATE TABLE results (driverid VARCHAR, raceid VARCHAR)
SELECT result FROM table_name_78 WHERE score = "44-20"
What game has a score of 44-20?
CREATE TABLE table_name_78 (result VARCHAR, score VARCHAR)
SELECT rd, _time FROM table_name_43 WHERE res = "win" AND type = "tko" AND opponent = "carlos molina"
What is the rd., time of the match with a win result, a tko type, and Carlos Molina as the opponent?
CREATE TABLE table_name_43 (rd VARCHAR, _time VARCHAR, opponent VARCHAR, res VARCHAR, type VARCHAR)
SELECT finish FROM table_name_91 WHERE chassis = "dallara" AND start = "5" AND year = 2006
What did the Dallara chassis with a 5 start in 2006 finish?
CREATE TABLE table_name_91 (finish VARCHAR, year VARCHAR, chassis VARCHAR, start VARCHAR)
SELECT comp FROM table_name_81 WHERE score = "393"
What's the comp when the score was 393?
CREATE TABLE table_name_81 (comp VARCHAR, score VARCHAR)
SELECT MIN(wins) FROM table_name_8 WHERE pct > 0.526 AND rank < 37 AND losses = 947
What is the lowest amount of wins a manager with more than 0.526 pct., ranked higher than 37, and 947 losses has?
CREATE TABLE table_name_8 (wins INTEGER, losses VARCHAR, pct VARCHAR, rank VARCHAR)
SELECT MIN(frequency) FROM table_name_2 WHERE webcast = "listen live" AND city_of_license = "monterrey" AND callsign = "xet"
Which long range AM station has the lowest frequency and includes a webcast of listen live, was licensed in the city of Monterrey, and uses the Callsign of xet?
CREATE TABLE table_name_2 (frequency INTEGER, callsign VARCHAR, webcast VARCHAR, city_of_license VARCHAR)
SELECT interview FROM table_12094300_1 WHERE preliminaries = "8.400"
What is the interview score when the preliminaries score is 8.400?
CREATE TABLE table_12094300_1 (interview VARCHAR, preliminaries VARCHAR)
SELECT t2.color_description FROM products AS t1 JOIN ref_colors AS t2 ON t1.color_code = t2.color_code WHERE t1.product_name = "catnip"
What is the color description of the product with name "catnip"?
CREATE TABLE products (color_code VARCHAR, product_name VARCHAR); CREATE TABLE ref_colors (color_description VARCHAR, color_code VARCHAR)
SELECT COUNT(fa_cup_goals) FROM table_name_41 WHERE name = "jimmy nicholson" AND league_cup_goals > 0
How many FA cup goals have Jimmy Nicholson as the name, and league cup goals greater than 0?
CREATE TABLE table_name_41 (fa_cup_goals VARCHAR, name VARCHAR, league_cup_goals VARCHAR)
SELECT COUNT(opponents) FROM table_20928649_1 WHERE opponent = "North Carolina State"
How many opponents were in North Carolina state game?
CREATE TABLE table_20928649_1 (opponents VARCHAR, opponent VARCHAR)
SELECT position FROM table_name_32 WHERE competition = "european race walking cup"
Which Position has a Competition of european race walking cup?
CREATE TABLE table_name_32 (position VARCHAR, competition VARCHAR)
SELECT opponent_team FROM table_name_61 WHERE result = "1-2"
What opponent was in the match that resulted in 1-2?
CREATE TABLE table_name_61 (opponent_team VARCHAR, result VARCHAR)
SELECT date FROM table_name_78 WHERE venue = "kardinia park"
When was there a game at Kardinia Park?
CREATE TABLE table_name_78 (date VARCHAR, venue VARCHAR)
SELECT athlete FROM table_name_25 WHERE school = "burbank high school"
What is the Athlete from Burbank High School?
CREATE TABLE table_name_25 (athlete VARCHAR, school VARCHAR)
SELECT COUNT(first_class_team) FROM table_11950720_4 WHERE date_of_birth = "5 December 1970"
What is the number of first class team with birthday of 5 december 1970?
CREATE TABLE table_11950720_4 (first_class_team VARCHAR, date_of_birth VARCHAR)
SELECT name FROM head WHERE born_state <> 'California'
What are the names of the heads who are born outside the California state?
CREATE TABLE head (name VARCHAR, born_state VARCHAR)
SELECT MAX(seed) FROM table_20711545_1 WHERE lyon__32_ = "DNQ"
What is the seed for lyon (32) was DNQ?
CREATE TABLE table_20711545_1 (seed INTEGER, lyon__32_ VARCHAR)
SELECT pos FROM table_name_20 WHERE tier > 1 AND cup_competitions = "pokal slovenije 1. round"
What is the pos with more than 1 tier during Pokal Slovenije 1. round?
CREATE TABLE table_name_20 (pos VARCHAR, tier VARCHAR, cup_competitions VARCHAR)
SELECT 1 AS st_member FROM table_name_41 WHERE assembled = "5 april 1614"
Who is the 1st member of the parliament assembled on 5 April 1614?
CREATE TABLE table_name_41 (assembled VARCHAR)
SELECT award_ceremony FROM table_name_10 WHERE nominee = "howard bay and patton campbell"
What award ceremony was howard bay and patton campbell nominated?
CREATE TABLE table_name_10 (award_ceremony VARCHAR, nominee VARCHAR)
SELECT COUNT(round2) FROM table_name_54 WHERE round5 > 35 AND round3 < 51 AND team = "netherlands" AND rank < 2
what is round2 when round5 is more than 35, round3 is less than 51, the rank is smaller than 2 and the team is netherlands?
CREATE TABLE table_name_54 (round2 VARCHAR, rank VARCHAR, team VARCHAR, round5 VARCHAR, round3 VARCHAR)
SELECT SUM(round) FROM table_name_51 WHERE position = "linebacker" AND school = "utah state"
When the school picking is utah state for the position of linebacker, what's the sum of those rounds?
CREATE TABLE table_name_51 (round INTEGER, position VARCHAR, school VARCHAR)
SELECT opponent FROM table_name_75 WHERE round > 1 AND event = "ufc 66"
Who was the opponent in UFC 66 who lasted for more than 1 round?
CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR, event VARCHAR)
SELECT charge_type, charge_amount FROM Charges
How much does each charge type costs? List both charge type and amount.
CREATE TABLE Charges (charge_type VARCHAR, charge_amount VARCHAR)
SELECT res FROM table_name_96 WHERE opponent = "rory markham"
What was the result when the opponent was Rory Markham?
CREATE TABLE table_name_96 (res VARCHAR, opponent VARCHAR)
SELECT MAX(points) FROM table_18607260_6 WHERE team = "Libertad"
Name the maximum points for libertad
CREATE TABLE table_18607260_6 (points INTEGER, team VARCHAR)
SELECT runner_s__up FROM table_name_64 WHERE margin_of_victory = "1 stroke" AND date = "jan 30, 2000"
Who was the runnerup when the margin of victory was 1 stroke on jan 30, 2000?
CREATE TABLE table_name_64 (runner_s__up VARCHAR, margin_of_victory VARCHAR, date VARCHAR)
SELECT date FROM table_17765264_1 WHERE game_site = "Cotton Bowl"
When did they play at the Cotton Bowl?
CREATE TABLE table_17765264_1 (date VARCHAR, game_site VARCHAR)
SELECT bluetooth FROM table_name_31 WHERE model = "s35"
Does the s35 model have bluetooth?
CREATE TABLE table_name_31 (bluetooth VARCHAR, model VARCHAR)
SELECT written_by FROM table_29273115_1 WHERE production_code = "IP02009"
Who are the writers of the episode with production code IP02009?
CREATE TABLE table_29273115_1 (written_by VARCHAR, production_code VARCHAR)
SELECT status FROM table_name_55 WHERE vehicle_types = "dmbs+tcl+dmcl"
what status is the vehicle types of dmbs+tcl+dmcl?
CREATE TABLE table_name_55 (status VARCHAR, vehicle_types VARCHAR)
SELECT television_network FROM table_name_67 WHERE type_of_network = "community" AND founded = "2002"
What television network, founded in 2002, has a community type of network?
CREATE TABLE table_name_67 (television_network VARCHAR, type_of_network VARCHAR, founded VARCHAR)
SELECT MIN(floors) FROM table_name_82 WHERE name = "dubai marriott harbour hotel & suites"
What is the lowest number of floors recorded for buildings built by Dubai Marriott Harbour Hotel & Suites?
CREATE TABLE table_name_82 (floors INTEGER, name VARCHAR)
SELECT result FROM table_name_79 WHERE week = 3
What was week 3 score?
CREATE TABLE table_name_79 (result VARCHAR, week VARCHAR)
SELECT to_par FROM table_name_83 WHERE player = "greg norman"
What is the to par of Greg Norman?
CREATE TABLE table_name_83 (to_par VARCHAR, player VARCHAR)
SELECT MIN(all_around) FROM table_name_70 WHERE total = 19.85 AND hoop < 9.85
What is the smallest all around when the total is 19.85 and the hoop is less than 9.85?
CREATE TABLE table_name_70 (all_around INTEGER, total VARCHAR, hoop VARCHAR)
SELECT deaths FROM table_name_34 WHERE name = "eseta"
How many deaths did eseta cause?
CREATE TABLE table_name_34 (deaths VARCHAR, name VARCHAR)
SELECT AVG(ngc_number) FROM table_name_7 WHERE right_ascension___j2000__ = "05h33m30s"
What is the average NGC number of everything with a Right ascension (J2000) of 05h33m30s?
CREATE TABLE table_name_7 (ngc_number INTEGER, right_ascension___j2000__ VARCHAR)
SELECT interval_name FROM table_18955077_1 WHERE size__cents_ = 560 AND just_ratio = "11:8"
If the just ratio is 11:8 and the cents size is 560, what is the interval name?
CREATE TABLE table_18955077_1 (interval_name VARCHAR, size__cents_ VARCHAR, just_ratio VARCHAR)
SELECT premiere FROM table_name_36 WHERE episodes > 15
Which premiere had more than 15 episodes?
CREATE TABLE table_name_36 (premiere VARCHAR, episodes INTEGER)
SELECT leading_scorer FROM table_name_54 WHERE home = "warriors"
Who was the leading score in the game at the Warriors?
CREATE TABLE table_name_54 (leading_scorer VARCHAR, home VARCHAR)
SELECT COUNT(high_assists) FROM table_11960610_10 WHERE high_points = "Gordon (27)"
When gordon (27) had high points, what was the number of high assists?
CREATE TABLE table_11960610_10 (high_assists VARCHAR, high_points VARCHAR)
SELECT boiling_point FROM table_name_74 WHERE solvent = "diethyl ether"
what's the boiling point of diethyl ether?
CREATE TABLE table_name_74 (boiling_point VARCHAR, solvent VARCHAR)
SELECT home_team FROM table_name_74 WHERE away_team = "geelong"
What was the home team when geelong was the away team?
CREATE TABLE table_name_74 (home_team VARCHAR, away_team VARCHAR)
SELECT high_assists FROM table_15780049_6 WHERE team = "Cleveland"
Who had the most assist when the opponent was Cleveland?
CREATE TABLE table_15780049_6 (high_assists VARCHAR, team VARCHAR)
SELECT record FROM table_27734577_8 WHERE team = "@ Miami"
What's the record of the @ miami team?
CREATE TABLE table_27734577_8 (record VARCHAR, team VARCHAR)
SELECT trailing_party % votes FROM table_name_74 WHERE party_won = "bharatiya janta party" AND trailing_party = "indian national congress"
What is Trailing Party % Votes, when Party Won is "Bharatiya Janta Party", and when Trailing Party is "Indian National Congress"?
CREATE TABLE table_name_74 (trailing_party VARCHAR, votes VARCHAR, party_won VARCHAR)
SELECT score FROM table_name_31 WHERE place = "t7" AND player = "justin leonard"
What is T7 Place Player Justin Leonard's Score?
CREATE TABLE table_name_31 (score VARCHAR, place VARCHAR, player VARCHAR)
SELECT MAX(pts_for) FROM table_13018116_1 WHERE won = 9
What is the most points when the won is 9?
CREATE TABLE table_13018116_1 (pts_for INTEGER, won VARCHAR)