answer
stringlengths
18
557
question
stringlengths
12
244
context
stringlengths
27
489
SELECT no_2 FROM table_name_56 WHERE no_9 = "mia"
What is No. 2, when No. 9 is Mia?
CREATE TABLE table_name_56 (no_2 VARCHAR, no_9 VARCHAR)
SELECT place FROM table_name_94 WHERE player = "jimmy demaret"
Where has Jimmy Demaret as a player?
CREATE TABLE table_name_94 (place VARCHAR, player VARCHAR)
SELECT DISTINCT T1.model FROM MODEL_LIST AS T1 JOIN CAR_NAMES AS T2 ON T1.Model = T2.Model JOIN CARS_DATA AS T3 ON T2.MakeId = T3.Id JOIN CAR_MAKERS AS T4 ON T1.Maker = T4.Id WHERE T3.weight < 3500 AND T4.FullName <> 'Ford Motor Company'
Which models are lighter than 3500 but not built by the 'Ford Motor Company'?
CREATE TABLE CAR_MAKERS (Id VARCHAR, FullName VARCHAR); CREATE TABLE MODEL_LIST (model VARCHAR, Model VARCHAR, Maker VARCHAR); CREATE TABLE CARS_DATA (Id VARCHAR, weight VARCHAR); CREATE TABLE CAR_NAMES (Model VARCHAR, MakeId VARCHAR)
SELECT MAX(round) FROM table_name_36 WHERE overall = 143 AND pick > 6
What is the highest round that has an overall of 143 and a pick greater than 6?
CREATE TABLE table_name_36 (round INTEGER, overall VARCHAR, pick VARCHAR)
SELECT team FROM table_name_11 WHERE player = "bubba vanegdom"
Which team was Bubba Vanegdom from?
CREATE TABLE table_name_11 (team VARCHAR, player VARCHAR)
SELECT class_es_ FROM table_name_70 WHERE circuit = "mazda raceway laguna seca"
What are the classes for the circuit that has the Mazda Raceway Laguna Seca race.
CREATE TABLE table_name_70 (class_es_ VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_40 WHERE game = 81
What was the date of game 81?
CREATE TABLE table_name_40 (date VARCHAR, game VARCHAR)
SELECT MAX(rank) FROM table_name_95 WHERE lost < 12 AND played > 20 AND Avg.points > 1.73
Which Rank has a Lost smaller than 12, and a Played larger than 20, and an Avg Points larger than 1.73?
CREATE TABLE table_name_95 (rank INTEGER, lost VARCHAR, played VARCHAR)
SELECT to_par FROM table_name_73 WHERE score = 68 - 71 = 139
What was the TO par for the player who scored 68-71=139?
CREATE TABLE table_name_73 (to_par VARCHAR, score VARCHAR)
SELECT score FROM table_name_93 WHERE date = "october 31"
What was the score on October 31?
CREATE TABLE table_name_93 (score VARCHAR, date VARCHAR)
SELECT MIN(car_no) FROM table_17330069_1 WHERE driver = "Hélio Castroneves"
What is the car number for driver Hélio Castroneves
CREATE TABLE table_17330069_1 (car_no INTEGER, driver VARCHAR)
SELECT MAX(no_in_series) FROM table_14724369_1 WHERE production_code = "1ACX03"
What is the first number in series that had the production code 1ACX03?
CREATE TABLE table_14724369_1 (no_in_series INTEGER, production_code VARCHAR)
SELECT SUM(number_of_electorates__2009_) FROM table_name_11 WHERE district = "fatehpur" AND name = "jahanabad"
Count the Number of electorates (2009) that has a District of fatehpur and jahanabad?
CREATE TABLE table_name_11 (number_of_electorates__2009_ INTEGER, district VARCHAR, name VARCHAR)
SELECT assists FROM table_name_29 WHERE team = "florida" AND total_points = "75"
What is the assists for the Team of Florida and the total points of 75?
CREATE TABLE table_name_29 (assists VARCHAR, team VARCHAR, total_points VARCHAR)
SELECT team FROM table_19908313_2 WHERE primary_sponsor_s_ = "D3 Outdoors"
What team is sponsored by d3 Outdoors?
CREATE TABLE table_19908313_2 (team VARCHAR, primary_sponsor_s_ VARCHAR)
SELECT MAX(year) FROM table_name_4 WHERE chassis = "toro rosso str1" AND points < 1
When is the latest year that an entrant has toro rosso str1 chassis and under 1 point?
CREATE TABLE table_name_4 (year INTEGER, chassis VARCHAR, points VARCHAR)
SELECT AVG(laps) FROM table_name_74 WHERE grid = 15
What is the average Laps, when Grid is 15?
CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR)
SELECT turbine_vendor FROM table_name_85 WHERE turbines < 6 AND county = "donegal" AND size__mw_ = "0.85" AND wind_farm = "meenadreen"
Who is the turbine vendor for Meenadreen in Donegal county with less than 6 turbines with a size of 0.85 MW?
CREATE TABLE table_name_85 (turbine_vendor VARCHAR, wind_farm VARCHAR, size__mw_ VARCHAR, turbines VARCHAR, county VARCHAR)
SELECT high_assists FROM table_11907963_6 WHERE game = 49
Who had the high assists for game 49?
CREATE TABLE table_11907963_6 (high_assists VARCHAR, game VARCHAR)
SELECT COUNT(*) FROM Student
How many students are there?
CREATE TABLE Student (Id VARCHAR)
SELECT tie_no FROM table_name_52 WHERE home_team = "derby county"
Which tie number had a home team of Derby County?
CREATE TABLE table_name_52 (tie_no VARCHAR, home_team VARCHAR)
SELECT COUNT(pick) FROM table_name_62 WHERE player = "jason webb"
How many teams picked Jason Webb?
CREATE TABLE table_name_62 (pick VARCHAR, player VARCHAR)
SELECT COUNT(losses) FROM table_name_45 WHERE ntfa_div_2 = "perth" AND wins < 10
How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10?
CREATE TABLE table_name_45 (losses VARCHAR, ntfa_div_2 VARCHAR, wins VARCHAR)
SELECT march FROM table_name_3 WHERE november = "cara wakelin"
Who is the March playmate with a November playmate Cara Wakelin?
CREATE TABLE table_name_3 (march VARCHAR, november VARCHAR)
SELECT Allergy FROM Has_allergy GROUP BY Allergy ORDER BY COUNT(*) DESC LIMIT 1
Which allergy has most number of students affected?
CREATE TABLE Has_allergy (Allergy VARCHAR)
SELECT race_name FROM table_name_65 WHERE city_location = "cleveland, ohio"
What is the name of the race in Cleveland, Ohio?
CREATE TABLE table_name_65 (race_name VARCHAR, city_location VARCHAR)
SELECT SUM(reg_gp) FROM table_name_28 WHERE player = "peter andersson" AND pick__number < 143
What is the sum of every REG GP that Peter Andersson played as a pick# less than 143?
CREATE TABLE table_name_28 (reg_gp INTEGER, player VARCHAR, pick__number VARCHAR)
SELECT range__varies_with_payload_weight_ FROM table_name_71 WHERE name_designation = "shahab-4"
What is the range (varies by payload weight) for Shahab-4?
CREATE TABLE table_name_71 (range__varies_with_payload_weight_ VARCHAR, name_designation VARCHAR)
SELECT COUNT(february) FROM table_name_32 WHERE opponent = "montreal canadiens" AND record = "18-25-10" AND game > 53
How many Februarys have montreal canadiens as the opponent, and 18-25-10 as the record, with a game greater than 53?
CREATE TABLE table_name_32 (february VARCHAR, game VARCHAR, opponent VARCHAR, record VARCHAR)
SELECT play_by_play FROM table_17516922_1 WHERE network = "ESPN" AND sideline_reporters = "Monica Gonzalez"
Who had the play-by-play on espn with sideline reporter monica gonzalez?
CREATE TABLE table_17516922_1 (play_by_play VARCHAR, network VARCHAR, sideline_reporters VARCHAR)
SELECT party FROM table_1341453_32 WHERE incumbent = "Jim Saxton"
What is the party of the district incumbent Jim Saxton?
CREATE TABLE table_1341453_32 (party VARCHAR, incumbent VARCHAR)
SELECT opponent FROM table_name_75 WHERE result = "7–6 (7–5) , 6–3"
Who was the opponent when the result was 7–6 (7–5) , 6–3?
CREATE TABLE table_name_75 (opponent VARCHAR, result VARCHAR)
SELECT power__mw·hr_yr_ FROM table_26387382_1 WHERE location__county_ = "Centre"
What locations are considered centre?
CREATE TABLE table_26387382_1 (power__mw·hr_yr_ VARCHAR, location__county_ VARCHAR)
SELECT COUNT(*), T1.name FROM projects AS T1 JOIN assignedto AS T2 ON T1.code = T2.project GROUP BY T1.name
Find the number of scientists involved for each project name.
CREATE TABLE assignedto (project VARCHAR); CREATE TABLE projects (name VARCHAR, code VARCHAR)
SELECT district FROM table_name_54 WHERE constituency_number = "98"
What district has 98 constituencies?
CREATE TABLE table_name_54 (district VARCHAR, constituency_number VARCHAR)
SELECT DISTINCT Name FROM WINE ORDER BY Name
List the names of all distinct wines in alphabetical order.
CREATE TABLE WINE (Name VARCHAR)
SELECT team FROM table_22669044_9 WHERE location_attendance = "United Center 22,147"
Name the team for united center 22,147
CREATE TABLE table_22669044_9 (team VARCHAR, location_attendance VARCHAR)
SELECT loan_expires FROM table_name_6 WHERE date = "29 december 2003"
What loan expires date has a Date of 29 december 2003?
CREATE TABLE table_name_6 (loan_expires VARCHAR, date VARCHAR)
SELECT percentage_democrats FROM table_name_45 WHERE democratic_seat_plurality = "-3" AND democratic__republican = "2/5"
What is the percentage democrats with democratic plurality of -3, and 2/5 democrat/republican?
CREATE TABLE table_name_45 (percentage_democrats VARCHAR, democratic_seat_plurality VARCHAR, democratic__republican VARCHAR)
SELECT AVG(cuts_made) FROM table_name_15 WHERE top_10 > 9
What is the average Cuts that were made with a Top-10 that is larger than 9?
CREATE TABLE table_name_15 (cuts_made INTEGER, top_10 INTEGER)
SELECT week_8_oct_26 FROM table_name_44 WHERE week_7_oct_19 = "syarcuse (4-2)"
What is the Week 8 result of the team that lost to syarcuse (4-2) in Week 7?
CREATE TABLE table_name_44 (week_8_oct_26 VARCHAR, week_7_oct_19 VARCHAR)
SELECT opponent FROM table_name_73 WHERE record = "54-38"
Which opponent has a Record of 54-38?
CREATE TABLE table_name_73 (opponent VARCHAR, record VARCHAR)
SELECT place FROM table_name_29 WHERE player = "tom lehman"
In what place did Tom Lehman finish?
CREATE TABLE table_name_29 (place VARCHAR, player VARCHAR)
SELECT teams FROM table_name_6 WHERE league = "bundesliga" AND away = "2-1"
What team played in the Bundesliga league with an Away record of 2-1?
CREATE TABLE table_name_6 (teams VARCHAR, league VARCHAR, away VARCHAR)
SELECT MIN(season) FROM table_name_72 WHERE races > 14 AND podiums > 4
What is the earliest season with more than 14 races and more than 4 podiums?
CREATE TABLE table_name_72 (season INTEGER, races VARCHAR, podiums VARCHAR)
SELECT DName FROM DEPARTMENT WHERE Division = "AS" UNION SELECT DName FROM DEPARTMENT WHERE Division = "EN" AND Building = "NEB"
Find the names of departments that are either in division AS or in division EN and in Building NEB.
CREATE TABLE DEPARTMENT (DName VARCHAR, Division VARCHAR, Building VARCHAR)
SELECT 1 AS st_member FROM table_name_53 WHERE elected = "1511/12"
Who was the 1st member elected in 1511/12?
CREATE TABLE table_name_53 (elected VARCHAR)
SELECT MAX(total_seats) FROM table_name_82 WHERE seats = 77 AND share_of_votes = "44.2%"
with a share of 44.2% and 77 seats, what is the greatest seat total?
CREATE TABLE table_name_82 (total_seats INTEGER, seats VARCHAR, share_of_votes VARCHAR)
SELECT region_name FROM region ORDER BY region_name
List all region names in alphabetical order.
CREATE TABLE region (region_name VARCHAR)
SELECT kit_maker FROM table_name_68 WHERE manager = "ron jans"
Ron Jans is a manager of which kit maker?
CREATE TABLE table_name_68 (kit_maker VARCHAR, manager VARCHAR)
SELECT listed FROM table_name_86 WHERE county = "sublette" AND location = "daniel"
What is the listed for the bridge at Daniel in Sublette county?
CREATE TABLE table_name_86 (listed VARCHAR, county VARCHAR, location VARCHAR)
SELECT light_vehicle FROM table_1211545_2 WHERE location = "between Bela Bela and Modimolle"
What is the toll for light vehicles at the plaza between bela bela and modimolle?
CREATE TABLE table_1211545_2 (light_vehicle VARCHAR, location VARCHAR)
SELECT week_3 FROM table_name_78 WHERE week_6 = "26.05"
What is week 3 when week 6 is 26.05?
CREATE TABLE table_name_78 (week_3 VARCHAR, week_6 VARCHAR)
SELECT country FROM table_name_91 WHERE to_par = "+8"
For the player finishing at +8, what is his nationality?
CREATE TABLE table_name_91 (country VARCHAR, to_par VARCHAR)
SELECT collegiate_institution FROM table_name_56 WHERE status = "active" AND charter_date = "march 30, 2002"
What collegiate institution has an active status and a charter date of march 30, 2002?
CREATE TABLE table_name_56 (collegiate_institution VARCHAR, status VARCHAR, charter_date VARCHAR)
SELECT date FROM table_17060277_6 WHERE high_assists = "Chris Duhon (13)"
Which date did Chris Duhon (13) receive high assists?
CREATE TABLE table_17060277_6 (date VARCHAR, high_assists VARCHAR)
SELECT final_score FROM table_name_74 WHERE stadium = "astrodome"
What was the final score of the game at the astrodome?
CREATE TABLE table_name_74 (final_score VARCHAR, stadium VARCHAR)
SELECT class FROM table_name_90 WHERE livery = "wessex trains pink"
What is the Class when Wessex Trains Pink is the Livery?
CREATE TABLE table_name_90 (class VARCHAR, livery VARCHAR)
SELECT 2009 FROM table_name_19 WHERE 2012 = "lq" AND 2011 = "2r" AND 2008 = "lq"
What is the 2009 value with lq in 2012, 2r in 2011, and lq in 2008?
CREATE TABLE table_name_19 (Id VARCHAR)
SELECT weight FROM table WHERE market_name = "Xperia U"
If the market name is Xperia U, what is the weight?
CREATE TABLE table (weight VARCHAR, market_name VARCHAR)
SELECT opponent FROM table_21092427_1 WHERE opponents = 12
Name the opponent for opponents being 12
CREATE TABLE table_21092427_1 (opponent VARCHAR, opponents VARCHAR)
SELECT COUNT(year) FROM table_14853156_2 WHERE money_list_rank = "56"
How many years has she ranked 56 on the money list?
CREATE TABLE table_14853156_2 (year VARCHAR, money_list_rank VARCHAR)
SELECT money___$__ FROM table_name_40 WHERE place = "t4" AND player = "nick price"
What is T4 Place Player Nick Price's Money?
CREATE TABLE table_name_40 (money___$__ VARCHAR, place VARCHAR, player VARCHAR)
SELECT run_4 FROM table_name_22 WHERE final = "8:16.28"
Which Run 4 has a Final of 8:16.28?
CREATE TABLE table_name_22 (run_4 VARCHAR, final VARCHAR)
SELECT date_of_appointment FROM table_name_77 WHERE outgoing_manager = "zoltán varga"
When was outgoing manager Zoltán Varga appointed?
CREATE TABLE table_name_77 (date_of_appointment VARCHAR, outgoing_manager VARCHAR)
SELECT fraction FROM table_name_58 WHERE parentheses = "0.(3)"
What fraction has parentheses of 0.(3)?
CREATE TABLE table_name_58 (fraction VARCHAR, parentheses VARCHAR)
SELECT final_score FROM table_23612439_2 WHERE date = "July 16"
What is the final score when July 16 is the date?
CREATE TABLE table_23612439_2 (final_score VARCHAR, date VARCHAR)
SELECT junctions FROM table_name_98 WHERE termini = "aguilares, texas us 59"
What are the junctions of the route with termini aguilares, texas us 59?
CREATE TABLE table_name_98 (junctions VARCHAR, termini VARCHAR)
SELECT high_points FROM table_23248910_6 WHERE team = "Raptors"
Who scored the highest points and how much against the raptors?
CREATE TABLE table_23248910_6 (high_points VARCHAR, team VARCHAR)
SELECT venue FROM table_name_5 WHERE date = "28 october 2013"
At which venue did the game on 28 october 2013 take place?
CREATE TABLE table_name_5 (venue VARCHAR, date VARCHAR)
SELECT athlete FROM table_name_97 WHERE place = 1 AND year < 1988 AND country = "gre" AND time = "21:57:00"
Which Athlete has a Place of 1, and a Year smaller than 1988, and a Country of gre, and a Time of 21:57:00?
CREATE TABLE table_name_97 (athlete VARCHAR, time VARCHAR, country VARCHAR, place VARCHAR, year VARCHAR)
SELECT SUM(place) FROM table_name_47 WHERE televote_sms = "2.39%"
what is the place when the televote/sms is 2.39%?
CREATE TABLE table_name_47 (place INTEGER, televote_sms VARCHAR)
SELECT location FROM table_name_98 WHERE left = 1975 AND type = "private" AND founded = 1891
Where was the former private member that was founded in 1891 and left in 1975?
CREATE TABLE table_name_98 (location VARCHAR, founded VARCHAR, left VARCHAR, type VARCHAR)
SELECT project_details FROM Projects WHERE organisation_id IN (SELECT organisation_id FROM Projects GROUP BY organisation_id ORDER BY COUNT(*) DESC LIMIT 1)
List the project details of the projects launched by the organisation
CREATE TABLE Projects (project_details VARCHAR, organisation_id VARCHAR)
SELECT country FROM table_name_30 WHERE film_title_used_in_nomination = "the garden of the finzi-continis"
Where was the film about the garden of the finzi-continis made?
CREATE TABLE table_name_30 (country VARCHAR, film_title_used_in_nomination VARCHAR)
SELECT COUNT(primary_conference) FROM table_10082596_1 WHERE location = "Ames, IA"
How many of the schools listed are in Ames, IA?
CREATE TABLE table_10082596_1 (primary_conference VARCHAR, location VARCHAR)
SELECT language FROM table_name_96 WHERE country = "switzerland"
Name the langauge for switzerland
CREATE TABLE table_name_96 (language VARCHAR, country VARCHAR)
SELECT MIN(round) FROM table_22379931_2 WHERE fastest_lap = "Takashi Kogure"
What was the earlier round where Takashi Kogure got the fastest lap?
CREATE TABLE table_22379931_2 (round INTEGER, fastest_lap VARCHAR)
SELECT qual_2 FROM table_name_27 WHERE best = "1:27.642"
What is Qual 2, when Best is 1:27.642?
CREATE TABLE table_name_27 (qual_2 VARCHAR, best VARCHAR)
SELECT SUM(top_25) FROM table_name_3 WHERE top_5 < 0
Which Top-25 has a Top-5 smaller than 0?
CREATE TABLE table_name_3 (top_25 INTEGER, top_5 INTEGER)
SELECT player FROM table_name_89 WHERE venue = "canberra stadium"
Who is the player of the match at canberra stadium?
CREATE TABLE table_name_89 (player VARCHAR, venue VARCHAR)
SELECT record FROM table_name_26 WHERE date = "february 25"
Name the record for february 25
CREATE TABLE table_name_26 (record VARCHAR, date VARCHAR)
SELECT location FROM table_name_63 WHERE capacity = "65,000" AND opening = "2016"
What place can sit 65,000 and opens 2016?
CREATE TABLE table_name_63 (location VARCHAR, capacity VARCHAR, opening VARCHAR)
SELECT COUNT(written_by) FROM table_26748252_1 WHERE us_viewers__in_millions_ = "3.40"
How many people wrote the episode with 3.40 million U.S viewers?
CREATE TABLE table_26748252_1 (written_by VARCHAR, us_viewers__in_millions_ VARCHAR)
SELECT date FROM table_name_79 WHERE stadium = "giants stadium" AND week < 13 AND opponent = "seattle seahawks"
Which Date has a Stadium of giants stadium, and a Week smaller than 13, and an Opponent of seattle seahawks?
CREATE TABLE table_name_79 (date VARCHAR, opponent VARCHAR, stadium VARCHAR, week VARCHAR)
SELECT time_retired FROM table_name_32 WHERE grid > 11 AND laps > 41 AND driver = "nick heidfeld"
What is the time/retired for a grid larger than 11, laps larger than 41, and nick heidfeld?
CREATE TABLE table_name_32 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT COUNT(week__number) FROM table_27614707_1 WHERE theme = "Judge's Choice" AND order__number = "4"
How many different weeks are there in order number 4 that were judge's choice?
CREATE TABLE table_27614707_1 (week__number VARCHAR, theme VARCHAR, order__number VARCHAR)
SELECT score FROM table_name_4 WHERE game = "16"
What was the score of Game 16?
CREATE TABLE table_name_4 (score VARCHAR, game VARCHAR)
SELECT E / vap FROM table_2683116_1 WHERE turnout = "85.7%"
What is the e/vap value for a turnout of exactly 85.7%?
CREATE TABLE table_2683116_1 (E VARCHAR, vap VARCHAR, turnout VARCHAR)
SELECT engine FROM table_20866024_3 WHERE model_designation = "97F00"
What type of engine does the model with model designation 97F00 have?
CREATE TABLE table_20866024_3 (engine VARCHAR, model_designation VARCHAR)
SELECT l3_cache FROM table_name_63 WHERE i_o_bus = "standard power"
What's the L3 Cache that has a standard power I/O?
CREATE TABLE table_name_63 (l3_cache VARCHAR, i_o_bus VARCHAR)
SELECT district FROM table_name_19 WHERE reserved_for___sc___st__none_ = "none" AND constituency_number = "242"
Name the District that has a Reserved for ( SC / ST /None) of none and a Constituency number of 242?
CREATE TABLE table_name_19 (district VARCHAR, reserved_for___sc___st__none_ VARCHAR, constituency_number VARCHAR)
SELECT COUNT(opponent) FROM table_27862483_4 WHERE score = "7-6"
How many games did UCLA's baseball team win with a score 7-6 during May of 2010?
CREATE TABLE table_27862483_4 (opponent VARCHAR, score VARCHAR)
SELECT simplified_chinese FROM table_name_43 WHERE standard_order > 4 AND transcription__based_on_pinyin_ = "bei hui feng"
What is the simplified Chinese with a standard order over 4, and the transcription of Bei Hui Feng?
CREATE TABLE table_name_43 (simplified_chinese VARCHAR, standard_order VARCHAR, transcription__based_on_pinyin_ VARCHAR)
SELECT score FROM table_name_1 WHERE home_team = "wrexham" AND date = "blackpool"
What is the score of the game where Wrexham is the home team and the date is Blackpool?
CREATE TABLE table_name_1 (score VARCHAR, home_team VARCHAR, date VARCHAR)
SELECT COUNT(area) FROM table_1982739_2 WHERE english_name = "Nanqiao District"
What is the total number of areas that are called Nanqiao District?
CREATE TABLE table_1982739_2 (area VARCHAR, english_name VARCHAR)
SELECT MIN(goals¹) FROM table_24565004_20 WHERE nationality² = "Algeria"
Name the most goals for algeria
CREATE TABLE table_24565004_20 (goals¹ INTEGER, nationality² VARCHAR)
SELECT date_of_appointment FROM table_17327264_3 WHERE replaced_by = "Petrik Sander"
Name the date of appointment for petrik sander
CREATE TABLE table_17327264_3 (date_of_appointment VARCHAR, replaced_by VARCHAR)
SELECT area__acres__ FROM table_30120761_1 WHERE poor_law_union = "Macroom" AND civil_parish = "Macroom"
What are all the acreages of the townlands in the Macroom poor law union and Macroom civil parish?
CREATE TABLE table_30120761_1 (area__acres__ VARCHAR, poor_law_union VARCHAR, civil_parish VARCHAR)
SELECT away_team AS score FROM table_name_67 WHERE away_team = "melbourne"
In the game where Melbourne was the away team, what did they score?
CREATE TABLE table_name_67 (away_team VARCHAR)