question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the combined attendance of all games that had a result of w 35-14?
CREATE TABLE table_name_65 (attendance INTEGER, result VARCHAR)
{ "SQL_Query": "SELECT SUM(attendance) FROM table_name_65 WHERE result = \"w 35-14\"" }
What is the sum of NGC numbers for Constellation vela?
CREATE TABLE table_name_16 (ngc_number INTEGER, constellation VARCHAR)
{ "SQL_Query": "SELECT SUM(ngc_number) FROM table_name_16 WHERE constellation = \"vela\"" }
What is the Apparent magnitude of a globular cluster?
CREATE TABLE table_name_78 (apparent_magnitude VARCHAR, object_type VARCHAR)
{ "SQL_Query": "SELECT apparent_magnitude FROM table_name_78 WHERE object_type = \"globular cluster\"" }
What is the total of Apparent magnitudes for an NGC number larger than 3293?
CREATE TABLE table_name_45 (apparent_magnitude INTEGER, ngc_number INTEGER)
{ "SQL_Query": "SELECT SUM(apparent_magnitude) FROM table_name_45 WHERE ngc_number > 3293" }
Tell me the money raised when 2Q has total receipts of $890,398
CREATE TABLE table_name_22 (money_raised VARCHAR, _2q VARCHAR, total_receipts VARCHAR)
{ "SQL_Query": "SELECT money_raised, _2q FROM table_name_22 WHERE total_receipts = \"$890,398\"" }
Tell me the total receipts for tom tancredo
CREATE TABLE table_name_44 (total_receipts VARCHAR, candidate VARCHAR)
{ "SQL_Query": "SELECT total_receipts FROM table_name_44 WHERE candidate = \"tom tancredo\"" }
Name the money spent for 2Q having candidate of john mccain
CREATE TABLE table_name_84 (money_spent VARCHAR, _2q VARCHAR, candidate VARCHAR)
{ "SQL_Query": "SELECT money_spent, _2q FROM table_name_84 WHERE candidate = \"john mccain\"" }
Name the loans received for 2Q having total receipts of $25,328,694
CREATE TABLE table_name_95 (loans_received VARCHAR, _2q VARCHAR, total_receipts VARCHAR)
{ "SQL_Query": "SELECT loans_received, _2q FROM table_name_95 WHERE total_receipts = \"$25,328,694\"" }
When collingwood was the away team, what was the home team?
CREATE TABLE table_name_66 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_66 WHERE away_team = \"collingwood\"" }
What was the largest crowd size at arden street oval?
CREATE TABLE table_name_58 (crowd INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT MAX(crowd) FROM table_name_58 WHERE venue = \"arden street oval\"" }
What is the work number for Victor?
CREATE TABLE table_name_80 (works_number VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT works_number FROM table_name_80 WHERE name = \"victor\"" }
What is the average building year for Superb?
CREATE TABLE table_name_75 (built INTEGER, name VARCHAR)
{ "SQL_Query": "SELECT AVG(built) FROM table_name_75 WHERE name = \"superb\"" }
What is the highest number of assists for players that are f/c and have under 13 rebounds?
CREATE TABLE table_name_38 (asts INTEGER, pos VARCHAR, rebs VARCHAR)
{ "SQL_Query": "SELECT MAX(asts) FROM table_name_38 WHERE pos = \"f/c\" AND rebs < 13" }
What was the score in the match against Sanaz Marand?
CREATE TABLE table_name_54 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_54 WHERE opponent = \"sanaz marand\"" }
What tournament was held on 21 May 2006?
CREATE TABLE table_name_80 (tournament VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_80 WHERE date = \"21 may 2006\"" }
Who has the low lap total in a maserati with grid 2?
CREATE TABLE table_name_47 (laps INTEGER, constructor VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT MIN(laps) FROM table_name_47 WHERE constructor = \"maserati\" AND grid = 2" }
What is the highest round number with a time of 4:39?
CREATE TABLE table_name_28 (round INTEGER, time VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_28 WHERE time = \"4:39\"" }
Which record has a time of 0:13?
CREATE TABLE table_name_87 (record VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_87 WHERE time = \"0:13\"" }
What is the result for rounds under 2 against D.J. Linderman?
CREATE TABLE table_name_44 (res VARCHAR, round VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT res FROM table_name_44 WHERE round < 2 AND opponent = \"d.j. linderman\"" }
What's the average crowd size when the Home team is melbourne?
CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR)
{ "SQL_Query": "SELECT AVG(crowd) FROM table_name_48 WHERE home_team = \"melbourne\"" }
Which Venue is the one for the footscray Home team?
CREATE TABLE table_name_73 (venue VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_73 WHERE home_team = \"footscray\"" }
Which Year is the lowest when the Viewers are 13.7 million?
CREATE TABLE table_name_7 (year INTEGER, viewers VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_7 WHERE viewers = \"13.7 million\"" }
How many Ratings did the 2013 Year have?
CREATE TABLE table_name_23 (ratings VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT ratings FROM table_name_23 WHERE year = 2013" }
Which Network has 16.0 million Viewers?
CREATE TABLE table_name_67 (network VARCHAR, viewers VARCHAR)
{ "SQL_Query": "SELECT network FROM table_name_67 WHERE viewers = \"16.0 million\"" }
What Lap-by-lap has Chris Myers as the Pre-Race Host, a Year larger than 2008, and 9.9/22 as its Ratings?
CREATE TABLE table_name_48 (lap_by_lap VARCHAR, ratings VARCHAR, year VARCHAR, pre_race_host VARCHAR)
{ "SQL_Query": "SELECT lap_by_lap FROM table_name_48 WHERE year > 2008 AND pre_race_host = \"chris myers\" AND ratings = \"9.9/22\"" }
Which Network has 17.5 million Viewers?
CREATE TABLE table_name_99 (network VARCHAR, viewers VARCHAR)
{ "SQL_Query": "SELECT network FROM table_name_99 WHERE viewers = \"17.5 million\"" }
Who was driving the Maserati with a Grid smaller than 6, and a Time/Retired of +2 laps?
CREATE TABLE table_name_39 (driver VARCHAR, time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_name_39 WHERE constructor = \"maserati\" AND grid < 6 AND time_retired = \"+2 laps\"" }
What's the average Grid for a Maserati with less than 80 laps, and a Time/Retired of +2 laps?
CREATE TABLE table_name_76 (grid INTEGER, time_retired VARCHAR, laps VARCHAR, constructor VARCHAR)
{ "SQL_Query": "SELECT AVG(grid) FROM table_name_76 WHERE laps < 80 AND constructor = \"maserati\" AND time_retired = \"+2 laps\"" }
What were the lowest laps of Luigi Musso driving a Ferrari with a Grid larger than 2?
CREATE TABLE table_name_31 (laps INTEGER, driver VARCHAR, constructor VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT MIN(laps) FROM table_name_31 WHERE constructor = \"ferrari\" AND grid > 2 AND driver = \"luigi musso\"" }
What was the score of the Mariners game when they had a record of 56–21?
CREATE TABLE table_name_91 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_91 WHERE record = \"56–21\"" }
What was the date of the Mariners game when they had a record of 53–17?
CREATE TABLE table_name_49 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_49 WHERE record = \"53–17\"" }
What was the attendance of the Mariners game when they had a record of 56–20?
CREATE TABLE table_name_85 (attendance VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_85 WHERE record = \"56–20\"" }
What college did Matt Freeman go to?
CREATE TABLE table_name_46 (college VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_46 WHERE player = \"matt freeman\"" }
What college did the placekicker go to?
CREATE TABLE table_name_67 (college VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT college FROM table_name_67 WHERE position = \"placekicker\"" }
What was the position of the player that went to warren central high school?
CREATE TABLE table_name_35 (position VARCHAR, school VARCHAR)
{ "SQL_Query": "SELECT position FROM table_name_35 WHERE school = \"warren central high school\"" }
Which opponent's march was 31?
CREATE TABLE table_name_19 (opponent VARCHAR, march VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_19 WHERE march = 31" }
Which score's game was less than 69 when the march was bigger than 2 and the opponents were the New York Islanders?
CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR, game VARCHAR, march VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_80 WHERE game < 69 AND march > 2 AND opponent = \"new york islanders\"" }
Which opponent's game was less than 76 when the march was 10?
CREATE TABLE table_name_45 (opponent VARCHAR, game VARCHAR, march VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_45 WHERE game < 76 AND march = 10" }
What was North Melbourne's score as the home team?
CREATE TABLE table_name_30 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_30 WHERE home_team = \"north melbourne\"" }
What is the time/retired for phil hill with over 67 laps and a grad smaller than 18?
CREATE TABLE table_name_29 (time_retired VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_name_29 WHERE laps > 67 AND grid < 18 AND driver = \"phil hill\"" }
What was relegated in the 2006 season?
CREATE TABLE table_name_48 (relegated VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT relegated FROM table_name_48 WHERE season = \"2006\"" }
What season was Norwich Union League promoted?
CREATE TABLE table_name_22 (season VARCHAR, promoted VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_22 WHERE promoted = \"norwich union league\"" }
What show has a boar?
CREATE TABLE table_name_33 (tv_series VARCHAR, species VARCHAR)
{ "SQL_Query": "SELECT tv_series FROM table_name_33 WHERE species = \"boar\"" }
What animal was yes for tv series and was a terrapins?
CREATE TABLE table_name_98 (animal_name VARCHAR, tv_series VARCHAR, species VARCHAR)
{ "SQL_Query": "SELECT animal_name FROM table_name_98 WHERE tv_series = \"yes\" AND species = \"terrapins\"" }
What is the smallest season for a tv series with a yes and human was the species?
CREATE TABLE table_name_58 (tv_seasons INTEGER, tv_series VARCHAR, species VARCHAR)
{ "SQL_Query": "SELECT MIN(tv_seasons) FROM table_name_58 WHERE tv_series = \"yes\" AND species = \"human\"" }
What is the mate for Last Appearance of bully, bully, bully (3x13) for the animal named hollow/holly later than season 1?
CREATE TABLE table_name_48 (mate VARCHAR, animal_name VARCHAR, tv_seasons VARCHAR, last_appearance VARCHAR)
{ "SQL_Query": "SELECT mate FROM table_name_48 WHERE tv_seasons > 1 AND last_appearance = \"bully, bully, bully (3x13)\" AND animal_name = \"hollow/holly\"" }
How many grids for peter collins?
CREATE TABLE table_name_71 (grid VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT COUNT(grid) FROM table_name_71 WHERE driver = \"peter collins\"" }
What is the high grid for ferrari's with 2 laps?
CREATE TABLE table_name_45 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT MAX(grid) FROM table_name_45 WHERE constructor = \"ferrari\" AND laps = 2" }
Who drove the car with over 66 laps with a grid of 5?
CREATE TABLE table_name_27 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_name_27 WHERE laps > 66 AND grid = 5" }
When was the tournament at Orange?
CREATE TABLE table_name_30 (date VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_30 WHERE tournament = \"orange\"" }
What kind of surface was the Tournament at Sunderland played on?
CREATE TABLE table_name_32 (surface VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_32 WHERE tournament = \"sunderland\"" }
What kind of surface was the tournament at Pune played on?
CREATE TABLE table_name_56 (surface VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_56 WHERE tournament = \"pune\"" }
What was the score of the tournament against Isha Lakhani?
CREATE TABLE table_name_80 (score VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_80 WHERE opponent = \"isha lakhani\"" }
What was the date that ended in a record of 8-25-7?
CREATE TABLE table_name_21 (date VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_21 WHERE record = \"8-25-7\"" }
What was the home team when the visiting team was Toronto?
CREATE TABLE table_name_22 (home VARCHAR, visitor VARCHAR)
{ "SQL_Query": "SELECT home FROM table_name_22 WHERE visitor = \"toronto\"" }
What College/junior/club team (league) did mitch fadden play for?
CREATE TABLE table_name_14 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_14 WHERE player = \"mitch fadden\"" }
When is the last week that has a result of a w 34-21?
CREATE TABLE table_name_10 (week INTEGER, result VARCHAR)
{ "SQL_Query": "SELECT MAX(week) FROM table_name_10 WHERE result = \"w 34-21\"" }
What is the method where there is a loss with time 5:00?
CREATE TABLE table_name_76 (method VARCHAR, res VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT method FROM table_name_76 WHERE res = \"loss\" AND time = \"5:00\"" }
What was the method when the time was 1:01?
CREATE TABLE table_name_51 (method VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT method FROM table_name_51 WHERE time = \"1:01\"" }
What was the crowd when the away team is footscray?
CREATE TABLE table_name_26 (crowd VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT crowd FROM table_name_26 WHERE away_team = \"footscray\"" }
What is the home team score at lake oval?
CREATE TABLE table_name_45 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_45 WHERE venue = \"lake oval\"" }
What was the score for south melbourne at home?
CREATE TABLE table_name_2 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_2 WHERE home_team = \"south melbourne\"" }
How many high assists did the Lakers have?
CREATE TABLE table_name_84 (high_assists VARCHAR, team VARCHAR)
{ "SQL_Query": "SELECT high_assists FROM table_name_84 WHERE team = \"lakers\"" }
WHat was the result of the friendly match that was played on october 8, 2012?
CREATE TABLE table_name_6 (result VARCHAR, competition VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_6 WHERE competition = \"friendly match\" AND date = \"october 8, 2012\"" }
What was the name of the competition that took place on may 31, 2008?
CREATE TABLE table_name_14 (competition VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_14 WHERE date = \"may 31, 2008\"" }
During the loss on march 26, 2005, what was the venue where the match was played?
CREATE TABLE table_name_10 (venue VARCHAR, result VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_10 WHERE result = \"loss\" AND date = \"march 26, 2005\"" }
What is the average number of laps that has a Time/Retired of +1 lap, a Driver of olivier panis, and a Grid larger than 4?
CREATE TABLE table_name_70 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT AVG(laps) FROM table_name_70 WHERE time_retired = \"+1 lap\" AND driver = \"olivier panis\" AND grid > 4" }
What constructor has under 62 laps, a Time/Retired of gearbox, a Grid larger than 1, and pedro diniz driving?
CREATE TABLE table_name_19 (constructor VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT constructor FROM table_name_19 WHERE laps < 62 AND time_retired = \"gearbox\" AND grid > 1 AND driver = \"pedro diniz\"" }
What is the time/retired with 60 laps and a grid 19?
CREATE TABLE table_name_19 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
{ "SQL_Query": "SELECT time_retired FROM table_name_19 WHERE laps = 60 AND grid = 19" }
What did the away team score when the home team was south melbourne?
CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_80 WHERE home_team = \"south melbourne\"" }
Who was the away team at western oval?
CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_28 WHERE venue = \"western oval\"" }
What team played away at vfl park?
CREATE TABLE table_name_13 (away_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_13 WHERE venue = \"vfl park\"" }
What did carlton score while away?
CREATE TABLE table_name_65 (away_team VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_65 WHERE away_team = \"carlton\"" }
Who was the home team in the game where North Melbourne was the away team?
CREATE TABLE table_name_25 (home_team VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_25 WHERE away_team = \"north melbourne\"" }
Who was the home team that played in Victoria Park?
CREATE TABLE table_name_32 (home_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT home_team FROM table_name_32 WHERE venue = \"victoria park\"" }
What was the highest crowd in Victoria Park?
CREATE TABLE table_name_74 (crowd INTEGER, venue VARCHAR)
{ "SQL_Query": "SELECT MAX(crowd) FROM table_name_74 WHERE venue = \"victoria park\"" }
How many people were in the crowd with the away team being collingwood?
CREATE TABLE table_name_5 (crowd VARCHAR, away_team VARCHAR)
{ "SQL_Query": "SELECT COUNT(crowd) FROM table_name_5 WHERE away_team = \"collingwood\"" }
Name the away team for essendon
CREATE TABLE table_name_69 (away_team VARCHAR, home_team VARCHAR)
{ "SQL_Query": "SELECT away_team FROM table_name_69 WHERE home_team = \"essendon\"" }
What is the largest number of laps with a Grid larger than 14, a Time/Retired of + 2 laps, and a Driver of helmut marko?
CREATE TABLE table_name_30 (laps INTEGER, driver VARCHAR, grid VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT MAX(laps) FROM table_name_30 WHERE grid > 14 AND time_retired = \"+ 2 laps\" AND driver = \"helmut marko\"" }
Which grid has less than 11 laps, and a Time/Retired of accident?
CREATE TABLE table_name_99 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT AVG(grid) FROM table_name_99 WHERE laps < 11 AND time_retired = \"accident\"" }
What is the total number of grids for peter gethin?
CREATE TABLE table_name_58 (grid INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT SUM(grid) FROM table_name_58 WHERE driver = \"peter gethin\"" }
How many grids does dave walker have?
CREATE TABLE table_name_6 (grid VARCHAR, driver VARCHAR)
{ "SQL_Query": "SELECT COUNT(grid) FROM table_name_6 WHERE driver = \"dave walker\"" }
What is the lowest grid with matra as constructor?
CREATE TABLE table_name_17 (grid INTEGER, constructor VARCHAR)
{ "SQL_Query": "SELECT MIN(grid) FROM table_name_17 WHERE constructor = \"matra\"" }
What is the catalogue number for the song that is 3:17 and was released 9/21/71?
CREATE TABLE table_name_94 (catalogue VARCHAR, release_date VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT catalogue FROM table_name_94 WHERE release_date = \"9/21/71\" AND time = \"3:17\"" }
What is the highest track for Burning Love?
CREATE TABLE table_name_75 (track INTEGER, song_title VARCHAR)
{ "SQL_Query": "SELECT MAX(track) FROM table_name_75 WHERE song_title = \"burning love\"" }
What is Heart of Rome's catalogue number?
CREATE TABLE table_name_73 (catalogue VARCHAR, song_title VARCHAR)
{ "SQL_Query": "SELECT catalogue FROM table_name_73 WHERE song_title = \"heart of rome\"" }
Which song was released 12/8/70 with a time of 2:54?
CREATE TABLE table_name_19 (song_title VARCHAR, release_date VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT song_title FROM table_name_19 WHERE release_date = \"12/8/70\" AND time = \"2:54\"" }
How many laps did Ricardo Zonta have?
CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)
{ "SQL_Query": "SELECT SUM(laps) FROM table_name_69 WHERE driver = \"ricardo zonta\"" }
What is the name of the driver with a grid less than 14, laps smaller than 53 and a Time/Retired of collision, and a Constructor of ferrari?
CREATE TABLE table_name_58 (driver VARCHAR, constructor VARCHAR, time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
{ "SQL_Query": "SELECT driver FROM table_name_58 WHERE grid < 14 AND laps < 53 AND time_retired = \"collision\" AND constructor = \"ferrari\"" }
What is the grid number with less than 52 laps and a Time/Retired of collision, and a Constructor of arrows - supertec?
CREATE TABLE table_name_42 (grid VARCHAR, constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "SELECT COUNT(grid) FROM table_name_42 WHERE laps < 52 AND time_retired = \"collision\" AND constructor = \"arrows - supertec\"" }
What is the average Laps for a grid smaller than 17, and a Constructor of williams - bmw, driven by jenson button?
CREATE TABLE table_name_49 (laps INTEGER, driver VARCHAR, grid VARCHAR, constructor VARCHAR)
{ "SQL_Query": "SELECT AVG(laps) FROM table_name_49 WHERE grid < 17 AND constructor = \"williams - bmw\" AND driver = \"jenson button\"" }
When the Venue was victoria park, what was the Away team score?
CREATE TABLE table_name_61 (away_team VARCHAR, venue VARCHAR)
{ "SQL_Query": "SELECT away_team AS score FROM table_name_61 WHERE venue = \"victoria park\"" }
When the Home team of carlton played, what was their score?
CREATE TABLE table_name_93 (home_team VARCHAR)
{ "SQL_Query": "SELECT home_team AS score FROM table_name_93 WHERE home_team = \"carlton\"" }
Tell me the lost with tie of 0 and drawn of 47
CREATE TABLE table_name_20 (lost VARCHAR, tied VARCHAR, drawn VARCHAR)
{ "SQL_Query": "SELECT lost FROM table_name_20 WHERE tied = \"0\" AND drawn = \"47\"" }
Name the tie that has 71 drawn
CREATE TABLE table_name_1 (tied VARCHAR, drawn VARCHAR)
{ "SQL_Query": "SELECT tied FROM table_name_1 WHERE drawn = \"71\"" }
I want to know the drawn that has a tie of 0 and the player is chris cowdrey
CREATE TABLE table_name_25 (drawn VARCHAR, tied VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT drawn FROM table_name_25 WHERE tied = \"0\" AND player = \"chris cowdrey\"" }
I want to know the tie for drawn of 47
CREATE TABLE table_name_46 (tied VARCHAR, drawn VARCHAR)
{ "SQL_Query": "SELECT tied FROM table_name_46 WHERE drawn = \"47\"" }
What name shows as private authority and hibiscus and bays local board ?
CREATE TABLE table_name_70 (name VARCHAR, authority VARCHAR, local_board VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_70 WHERE authority = \"private\" AND local_board = \"hibiscus and bays\"" }
What is the name when the local board is albert–eden, and a Decile of 9?
CREATE TABLE table_name_36 (name VARCHAR, local_board VARCHAR, decile VARCHAR)
{ "SQL_Query": "SELECT name FROM table_name_36 WHERE local_board = \"albert–eden\" AND decile = \"9\"" }
What is the name of the suburb with a roll of 741?
CREATE TABLE table_name_60 (suburb VARCHAR, roll VARCHAR)
{ "SQL_Query": "SELECT suburb FROM table_name_60 WHERE roll = 741" }