question
stringlengths
17
201
answer
stringlengths
21
400
context
stringlengths
32
286
Name the number of weeks for san francisco 49ers
SELECT COUNT(week) FROM table_14984103_1 WHERE opponent = "San Francisco 49ers"
CREATE TABLE table_14984103_1 (week VARCHAR, opponent VARCHAR)
What is the name of the team from goreville vienna school?
SELECT team_name FROM table_name_80 WHERE schools = "goreville vienna"
CREATE TABLE table_name_80 (team_name VARCHAR, schools VARCHAR)
What is the name of the first appearance when Chad Williams is a portrayal?
SELECT first_appearance FROM table_name_26 WHERE portrayed_by = "chad williams"
CREATE TABLE table_name_26 (first_appearance VARCHAR, portrayed_by VARCHAR)
when the number of spectator are 5.28 millions, which is the smallest number of the episode in series?
SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = "5.28"
CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR)
What place is Fred Funk in?
SELECT place FROM table_name_30 WHERE player = "fred funk"
CREATE TABLE table_name_30 (place VARCHAR, player VARCHAR)
what are all the records with a score is w 98–91
SELECT record FROM table_11964047_7 WHERE score = "W 98–91"
CREATE TABLE table_11964047_7 (record VARCHAR, score VARCHAR)
who is the the womens doubles with mens doubles being leopold bauer alfred kohlhauser
SELECT womens_doubles FROM table_15002265_1 WHERE mens_doubles = "Leopold Bauer Alfred Kohlhauser"
CREATE TABLE table_15002265_1 (womens_doubles VARCHAR, mens_doubles VARCHAR)
What Game has a Location of Philadelphia Spectrum and an Opponent of New York Knicks?
SELECT game FROM table_name_91 WHERE location = "philadelphia spectrum" AND opponent = "new york knicks"
CREATE TABLE table_name_91 (game VARCHAR, location VARCHAR, opponent VARCHAR)
On all other parties the National option polls are at 1.3% where as the opinion research pole is at what percentage?
SELECT opinion_research_centre__opc_ FROM table_159614_2 WHERE national_opinion_polls__nop_ = "1.3%"
CREATE TABLE table_159614_2 (opinion_research_centre__opc_ VARCHAR, national_opinion_polls__nop_ VARCHAR)
What is zip code of customer with first name as Carole and last name as Bernhard?
SELECT T2.zip_postcode FROM Customers AS T1 JOIN Addresses AS T2 ON T1.customer_address_id = T2.address_id WHERE T1.first_name = "Carole" AND T1.last_name = "Bernhard"
CREATE TABLE Addresses (zip_postcode VARCHAR, address_id VARCHAR); CREATE TABLE Customers (customer_address_id VARCHAR, first_name VARCHAR, last_name VARCHAR)
What is the first number in series that had the production code 1ACX03?
SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03"
CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR)
How many years premiered have Sa Beining as main presenter?
SELECT COUNT(year_premiered) FROM table_24224647_2 WHERE main_presenter = "Sa Beining"
CREATE TABLE table_24224647_2 (year_premiered VARCHAR, main_presenter VARCHAR)
What is HDTV, when Language is English, and when Television Service is MTV Dance?
SELECT hdtv FROM table_name_82 WHERE language = "english" AND television_service = "mtv dance"
CREATE TABLE table_name_82 (hdtv VARCHAR, language VARCHAR, television_service VARCHAR)
What was the time of the bout that ended in a TKO (strikes)?
SELECT time FROM table_name_83 WHERE method = "tko (strikes)"
CREATE TABLE table_name_83 (time VARCHAR, method VARCHAR)
How many C-95 aircrafts originating in Brazil are currently in service?
SELECT in_service FROM table_name_12 WHERE origin = "brazil" AND versions = "c-95"
CREATE TABLE table_name_12 (in_service VARCHAR, origin VARCHAR, versions VARCHAR)
What is the total number for the week with a record of 0-11?
SELECT COUNT(week) FROM table_name_87 WHERE record = "0-11"
CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)
What is the Call sign of the Omni television network with a Digitial PSIP of 14.1?
SELECT call_sign FROM table_name_52 WHERE network = "omni television" AND digital_psip = 14.1
CREATE TABLE table_name_52 (call_sign VARCHAR, network VARCHAR, digital_psip VARCHAR)
Which Distance has a Time of 2:20.00?
SELECT distance FROM table_name_73 WHERE time = "2:20.00"
CREATE TABLE table_name_73 (distance VARCHAR, time VARCHAR)
What is the season with a Skip of Eve Muirhead and a third of Kerry Barr?
SELECT season FROM table_name_42 WHERE skip = "eve muirhead" AND third = "kerry barr"
CREATE TABLE table_name_42 (season VARCHAR, skip VARCHAR, third VARCHAR)
Which teams homeeground is Stemmemyren?
SELECT team FROM table_2522473_1 WHERE home_ground = "Stemmemyren"
CREATE TABLE table_2522473_1 (team VARCHAR, home_ground VARCHAR)
Which bronze has a Rank of 37?
SELECT bronze FROM table_name_66 WHERE rank = "37"
CREATE TABLE table_name_66 (bronze VARCHAR, rank VARCHAR)
What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage?
SELECT totals FROM table_28628309_9 WHERE average = "0.667" AND category = "3-pt field goal percentage"
CREATE TABLE table_28628309_9 (totals VARCHAR, average VARCHAR, category VARCHAR)
How many circuits had a winning team of #1 patrón highcroft racing ang gtc winning team #81 alex job racing ?
SELECT COUNT(circuit) FROM table_24037660_2 WHERE lmp_winning_team = "#1 Patrón Highcroft Racing" AND gtc_winning_team = "#81 Alex Job Racing"
CREATE TABLE table_24037660_2 (circuit VARCHAR, lmp_winning_team VARCHAR, gtc_winning_team VARCHAR)
What is the highest Game, when Team is "Celtics", and when High Assists is "Hedo Türkoğlu (4)"?
SELECT MAX(game) FROM table_name_34 WHERE team = "celtics" AND high_assists = "hedo türkoğlu (4)"
CREATE TABLE table_name_34 (game INTEGER, team VARCHAR, high_assists VARCHAR)
Which result did the Republican have with the incumbent, Billy Tauzin?
SELECT result FROM table_1341472_20 WHERE party = "Republican" AND incumbent = "Billy Tauzin"
CREATE TABLE table_1341472_20 (result VARCHAR, party VARCHAR, incumbent VARCHAR)
Which Jushin Liger has a Super Shocker of liger (13:59)?
SELECT jushin_liger FROM table_name_44 WHERE super_shocker = "liger (13:59)"
CREATE TABLE table_name_44 (jushin_liger VARCHAR, super_shocker VARCHAR)
What is the venue of the match with cronulla sharks as the opponent?
SELECT venue FROM table_name_87 WHERE opponent = "cronulla sharks"
CREATE TABLE table_name_87 (venue VARCHAR, opponent VARCHAR)
What is the weight of the person born in 1980?
SELECT weight FROM table_name_63 WHERE born = "1980"
CREATE TABLE table_name_63 (weight VARCHAR, born VARCHAR)
how many party with candidates being john j. phillips (r) 57.6% n. e. west (d) 42.4%
SELECT COUNT(party) FROM table_1342256_6 WHERE candidates = "John J. Phillips (R) 57.6% N. E. West (D) 42.4%"
CREATE TABLE table_1342256_6 (party VARCHAR, candidates VARCHAR)
Name the D 43 when it has D 45 of d 25
SELECT d_43 FROM table_name_45 WHERE d_45 = "d 25"
CREATE TABLE table_name_45 (d_43 VARCHAR, d_45 VARCHAR)
What date was the loss of ponson (4–3)?
SELECT date FROM table_name_68 WHERE loss = "ponson (4–3)"
CREATE TABLE table_name_68 (date VARCHAR, loss VARCHAR)
What is the GDP for the region with an area of 7,263 sq. mi.?
SELECT gdp___bn__ FROM table_name_74 WHERE area__sq_mi_ = "7,263"
CREATE TABLE table_name_74 (gdp___bn__ VARCHAR, area__sq_mi_ VARCHAR)
What is Name, when Team is "Herdez Competition", and when Best is 1:27.432?
SELECT name FROM table_name_88 WHERE team = "herdez competition" AND best = "1:27.432"
CREATE TABLE table_name_88 (name VARCHAR, team VARCHAR, best VARCHAR)
What is the unanimous result of the player from Michigan Dartmouth?
SELECT unanimous FROM table_name_78 WHERE school = "michigan dartmouth"
CREATE TABLE table_name_78 (unanimous VARCHAR, school VARCHAR)
What martin is on july 8–9, 2008?
SELECT martin FROM table_name_36 WHERE date = "july 8–9, 2008"
CREATE TABLE table_name_36 (martin VARCHAR, date VARCHAR)
Name the 2nd leg for team 1 of hamburg
SELECT 2 AS nd_leg FROM table_name_90 WHERE team_1 = "hamburg"
CREATE TABLE table_name_90 (team_1 VARCHAR)
What is Wheel Arrangement, when Manufacturer is "Baldwin", and when Quantity Made is 12?
SELECT wheel_arrangement FROM table_name_52 WHERE manufacturer = "baldwin" AND quantity_made = "12"
CREATE TABLE table_name_52 (wheel_arrangement VARCHAR, manufacturer VARCHAR, quantity_made VARCHAR)
What is the time for Russia?
SELECT time FROM table_name_54 WHERE nationality = "russia"
CREATE TABLE table_name_54 (time VARCHAR, nationality VARCHAR)
What was the score in the game on March 26?
SELECT score FROM table_27756572_10 WHERE date = "March 26"
CREATE TABLE table_27756572_10 (score VARCHAR, date VARCHAR)
what is the name ofhte company where the plant is in burnaston?
SELECT company FROM table_250309_1 WHERE plant = "Burnaston"
CREATE TABLE table_250309_1 (company VARCHAR, plant VARCHAR)
What game 1 has halfback as a position?
SELECT game_1 FROM table_name_13 WHERE position = "halfback"
CREATE TABLE table_name_13 (game_1 VARCHAR, position VARCHAR)
What is the site of the game with a Record of 6-2?
SELECT game_site FROM table_name_35 WHERE record = "6-2"
CREATE TABLE table_name_35 (game_site VARCHAR, record VARCHAR)
What is the attendance when the st kilda score is 13.10.88?
SELECT attendance FROM table_28211103_1 WHERE st_kilda_score = "13.10.88"
CREATE TABLE table_28211103_1 (attendance VARCHAR, st_kilda_score VARCHAR)
what's the result with district being florida 7
SELECT result FROM table_1341604_10 WHERE district = "Florida 7"
CREATE TABLE table_1341604_10 (result VARCHAR, district VARCHAR)
What is the highest points won when the player is aravane rezaï?
SELECT MAX(points) AS won FROM table_24431348_20 WHERE player = "Aravane Rezaï"
CREATE TABLE table_24431348_20 (points INTEGER, player VARCHAR)
How many games were won with 2nd oha was standing and there were 62 games?
SELECT won FROM table_1143966_1 WHERE standing = "2nd OHA" AND games = 62
CREATE TABLE table_1143966_1 (won VARCHAR, standing VARCHAR, games VARCHAR)
Find the last name of the author with first name "Amal".
SELECT lname FROM authors WHERE fname = "Amal"
CREATE TABLE authors (lname VARCHAR, fname VARCHAR)
Which Call Sign that has Tail Code ed?
SELECT call_sign FROM table_name_80 WHERE tail_code = "ed"
CREATE TABLE table_name_80 (call_sign VARCHAR, tail_code VARCHAR)
From where did the train that arrived in the Anand Vihar Terminal originate?
SELECT origin FROM table_name_29 WHERE destination = "anand vihar terminal"
CREATE TABLE table_name_29 (origin VARCHAR, destination VARCHAR)
Who narrated the lap-by-lap to a 13.4 million audience?
SELECT lap_by_lap FROM table_11691212_2 WHERE viewers = "13.4 million"
CREATE TABLE table_11691212_2 (lap_by_lap VARCHAR, viewers VARCHAR)
How many field goals did Stacey Thomas have?
SELECT field_goals FROM table_24850487_5 WHERE player = "Stacey Thomas"
CREATE TABLE table_24850487_5 (field_goals VARCHAR, player VARCHAR)
What are airlines that have flights arriving at airport 'AHD'?
SELECT T1.Airline FROM AIRLINES AS T1 JOIN FLIGHTS AS T2 ON T1.uid = T2.Airline WHERE T2.DestAirport = "AHD"
CREATE TABLE AIRLINES (Airline VARCHAR, uid VARCHAR); CREATE TABLE FLIGHTS (Airline VARCHAR, DestAirport VARCHAR)
What Type of Tunnel is the Downhill Tunnel?
SELECT type FROM table_name_78 WHERE tunnel = "downhill"
CREATE TABLE table_name_78 (type VARCHAR, tunnel VARCHAR)
What is the sum of the bronze medals when there were more than 2 silver medals and a rank larger than 6?
SELECT SUM(bronze) FROM table_name_89 WHERE silver > 2 AND rank > 6
CREATE TABLE table_name_89 (bronze INTEGER, silver VARCHAR, rank VARCHAR)
With a 0-2 series, what is the high points?
SELECT high_points FROM table_name_23 WHERE series = "0-2"
CREATE TABLE table_name_23 (high_points VARCHAR, series VARCHAR)
What is the lowest number of goals of the player with 9 (0) games and less than 0 assists?
SELECT MIN(goals) FROM table_name_37 WHERE games = "9 (0)" AND assists < 0
CREATE TABLE table_name_37 (goals INTEGER, games VARCHAR, assists VARCHAR)
What is the name of Team 2 with a Team 1 of Al Qadsia?
SELECT team_2 FROM table_name_4 WHERE team_1 = "al qadsia"
CREATE TABLE table_name_4 (team_2 VARCHAR, team_1 VARCHAR)
What team has a bowl of humanitarian?
SELECT team FROM table_name_21 WHERE bowl = "humanitarian"
CREATE TABLE table_name_21 (team VARCHAR, bowl VARCHAR)
What country is ranked larger than 4?
SELECT country FROM table_name_72 WHERE rank > 4
CREATE TABLE table_name_72 (country VARCHAR, rank INTEGER)
Who was the driver that had all rounds and a f399 chassis?
SELECT driver FROM table_name_53 WHERE rounds = "all" AND chassis = "f399"
CREATE TABLE table_name_53 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)
what is the #/county that is ihsaa class aaa, has enrollment higher than 611 and the dragons is the mascot?
SELECT _number___county FROM table_name_13 WHERE ihsaa_class = "aaa" AND enrollment > 611 AND mascot = "dragons"
CREATE TABLE table_name_13 (_number___county VARCHAR, mascot VARCHAR, ihsaa_class VARCHAR, enrollment VARCHAR)
What college did the player who was drafted by Calgary go to?
SELECT college FROM table_28059992_6 WHERE cfl_team = "Calgary"
CREATE TABLE table_28059992_6 (college VARCHAR, cfl_team VARCHAR)
What is the Status of the Paris with a Census Ranking of 3,474 of 5,008?
SELECT status FROM table_name_2 WHERE census_ranking = "3,474 of 5,008"
CREATE TABLE table_name_2 (status VARCHAR, census_ranking VARCHAR)
Which games had Philadelphia as home team?
SELECT game FROM table_name_20 WHERE home_team = "philadelphia"
CREATE TABLE table_name_20 (game VARCHAR, home_team VARCHAR)
Who was the opponent at the game that had a loss of Bell (6–9)?
SELECT opponent FROM table_name_96 WHERE loss = "bell (6–9)"
CREATE TABLE table_name_96 (opponent VARCHAR, loss VARCHAR)
What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6?
SELECT COUNT(wins) FROM table_name_52 WHERE top_10 = 2 AND events > 8 AND cuts_made > 6
CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, top_10 VARCHAR, events VARCHAR)
What is the terminini of the highway with an east west direction and remarks that it was replaced by us 59?
SELECT termini FROM table_name_19 WHERE direction = "east west" AND remarks = "replaced by us 59"
CREATE TABLE table_name_19 (termini VARCHAR, direction VARCHAR, remarks VARCHAR)
How many writers had an US air date of september 25, 1993?
SELECT COUNT(writer) FROM table_10470082_3 WHERE us_air_date = "September 25, 1993"
CREATE TABLE table_10470082_3 (writer VARCHAR, us_air_date VARCHAR)
What is Date, when Away is High Park Demons?
SELECT date FROM table_name_43 WHERE away = "high park demons"
CREATE TABLE table_name_43 (date VARCHAR, away VARCHAR)
How many runners had placings over 8?
SELECT COUNT(runners) FROM table_name_34 WHERE placing > 8
CREATE TABLE table_name_34 (runners VARCHAR, placing INTEGER)
Who is the driver of the Chevrolet engine that is sponsored by godaddy.com?
SELECT driver_s_ FROM table_2503102_1 WHERE engine = "Chevrolet" AND car_sponsor_s_ = "GoDaddy.com"
CREATE TABLE table_2503102_1 (driver_s_ VARCHAR, engine VARCHAR, car_sponsor_s_ VARCHAR)
How many entries are in barony when the townland is derrigra?
SELECT COUNT(barony) FROM table_30121075_1 WHERE townland = "Derrigra"
CREATE TABLE table_30121075_1 (barony VARCHAR, townland VARCHAR)
The head coach, steve radoslavic, is related to which websites?
SELECT website FROM table_11365528_2 WHERE head_coach = "Steve Radoslavic"
CREATE TABLE table_11365528_2 (website VARCHAR, head_coach VARCHAR)
What is the Airport in Singapore?
SELECT airport FROM table_name_77 WHERE country = "singapore"
CREATE TABLE table_name_77 (airport VARCHAR, country VARCHAR)
Which opening film has the opening date of august 23?
SELECT opening_film FROM table_18220102_1 WHERE date__opening_ = "August 23"
CREATE TABLE table_18220102_1 (opening_film VARCHAR, date__opening_ VARCHAR)
Which country scored 70-68-71-71=280?
SELECT country FROM table_name_29 WHERE score = 70 - 68 - 71 - 71 = 280
CREATE TABLE table_name_29 (country VARCHAR, score VARCHAR)
What is the earliest season that has a position over 12?
SELECT MIN(season) FROM table_name_80 WHERE position > 12
CREATE TABLE table_name_80 (season INTEGER, position INTEGER)
Name the song title with time of 1:51
SELECT song_title FROM table_name_75 WHERE time = "1:51"
CREATE TABLE table_name_75 (song_title VARCHAR, time VARCHAR)
What rank has a status of proposed, with 80 floors for Celestia Spaces 4?
SELECT AVG(rank) FROM table_name_79 WHERE status = "proposed" AND floors = 80 AND name = "celestia spaces 4"
CREATE TABLE table_name_79 (rank INTEGER, name VARCHAR, status VARCHAR, floors VARCHAR)
What is the sum of state champions with more tan 9 MRC Championships, more than 4 co-champions, and a record of 192-189-3?
SELECT SUM(state_champions) FROM table_name_72 WHERE mrc_championships > 9 AND records = "192-189-3" AND co_champions > 4
CREATE TABLE table_name_72 (state_champions INTEGER, co_champions VARCHAR, mrc_championships VARCHAR, records VARCHAR)
What make was the car driven by Jeff Gordon?
SELECT make FROM table_27940569_1 WHERE driver = "Jeff Gordon"
CREATE TABLE table_27940569_1 (make VARCHAR, driver VARCHAR)
Tell me the status of eliminated of anton dela paz
SELECT status FROM table_name_15 WHERE eliminated = "anton dela paz"
CREATE TABLE table_name_15 (status VARCHAR, eliminated VARCHAR)
Russia has films in which category?
SELECT category FROM table_name_45 WHERE country = "russia"
CREATE TABLE table_name_45 (category VARCHAR, country VARCHAR)
What is the total of the team with a T score greater than 8 and an E score less than 8.4?
SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4
CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR)
who is the dudley tuckey medal where leading goalkicker is scott simister (46)
SELECT dudley_tuckey_medal FROM table_1165048_1 WHERE leading_goalkicker = "Scott Simister (46)"
CREATE TABLE table_1165048_1 (dudley_tuckey_medal VARCHAR, leading_goalkicker VARCHAR)
What is Mark, when Lane is less than 5, and when React is 0.217?
SELECT mark FROM table_name_88 WHERE lane < 5 AND react = 0.217
CREATE TABLE table_name_88 (mark VARCHAR, lane VARCHAR, react VARCHAR)
Who is the presenter of the episode broadcast in the UK on 1996-09-25?
SELECT presenter FROM table_name_45 WHERE uk_broadcast_date = "1996-09-25"
CREATE TABLE table_name_45 (presenter VARCHAR, uk_broadcast_date VARCHAR)
What is the average number of tries that has a start larger than 32, is a player of seremaia bai that also has a conversion score larger than 47?
SELECT AVG(tries) FROM table_name_22 WHERE start > 32 AND player = "seremaia bai" AND conv > 47
CREATE TABLE table_name_22 (tries INTEGER, conv VARCHAR, start VARCHAR, player VARCHAR)
What was the losing bonus that had 1 draw and a 10 try bonus?
SELECT losing_bonus FROM table_name_51 WHERE drawn = "1" AND try_bonus = "10"
CREATE TABLE table_name_51 (losing_bonus VARCHAR, drawn VARCHAR, try_bonus VARCHAR)
How many different years was the name/designation cetme?
SELECT COUNT(year_of_introduction) FROM table_26389588_1 WHERE name___designation = "CETME"
CREATE TABLE table_26389588_1 (year_of_introduction VARCHAR, name___designation VARCHAR)
What is the total of NA for set 4, a score of 3-0 and a 26-24 for set 2?
SELECT total FROM table_name_62 WHERE set_4 = "na" AND score = "3-0" AND set_2 = "26-24"
CREATE TABLE table_name_62 (total VARCHAR, set_2 VARCHAR, set_4 VARCHAR, score VARCHAR)
Which competition was held on 14 November 2012?
SELECT competition FROM table_name_41 WHERE date = "14 november 2012"
CREATE TABLE table_name_41 (competition VARCHAR, date VARCHAR)
What is the sum of Top 10 performances that have more than 2 wins and is higher than number 16 in the Top 25?
SELECT SUM(top_10) FROM table_name_98 WHERE wins > 2 AND top_25 < 16
CREATE TABLE table_name_98 (top_10 INTEGER, wins VARCHAR, top_25 VARCHAR)
What AP increase has an AP duration of 0.75?
SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = "0.75"
CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR)
Name the votes given for michael russo, genevy dimitrion , manny ortega
SELECT votes_given FROM table_1855841_1 WHERE running_with__in_team_ = "Michael Russo, Genevy Dimitrion , Manny Ortega"
CREATE TABLE table_1855841_1 (votes_given VARCHAR, running_with__in_team_ VARCHAR)
\What is the class of the station with the call sign w254ah?
SELECT class FROM table_name_35 WHERE call_sign = "w254ah"
CREATE TABLE table_name_35 (class VARCHAR, call_sign VARCHAR)
WHich Studio analysts has a Studio host of gary tanguay in 2009-10?
SELECT studio_analysts FROM table_name_36 WHERE studio_host = "gary tanguay" AND year = "2009-10"
CREATE TABLE table_name_36 (studio_analysts VARCHAR, studio_host VARCHAR, year VARCHAR)
Which club participated with a record of 45 tries against?
SELECT club FROM table_name_91 WHERE tries_against = "45"
CREATE TABLE table_name_91 (club VARCHAR, tries_against VARCHAR)
Which Pinyin has a Chinese of 臺南?
SELECT pinyin FROM table_name_89 WHERE chinese = "臺南"
CREATE TABLE table_name_89 (pinyin VARCHAR, chinese VARCHAR)
What was the score of game 35?
SELECT score FROM table_17102076_7 WHERE game = 35
CREATE TABLE table_17102076_7 (score VARCHAR, game VARCHAR)