training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_79 (date VARCHAR, record VARCHAR) ###human: On what date was the record 21-25? ###assistant: SELECT date FROM table_name_79 WHERE record = "21-25"
###context:CREATE TABLE table_name_32 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) ###human: I want the total number of Laps for time/retired for + 4 Laps and grid more than 20 ###assistant: SELECT COUNT(laps) FROM table_name_32 WHERE time_retired = "+ 4 laps" AND grid > 20
###context:CREATE TABLE table_name_74 (laps INTEGER, grid VARCHAR) ###human: I want the average Laps for grid of 9 ###assistant: SELECT AVG(laps) FROM table_name_74 WHERE grid = 9
###context:CREATE TABLE table_name_78 (works_number INTEGER, type VARCHAR, date VARCHAR) ###human: What is the total works number of the locomotive with 0-6-4t type after 1875? ###assistant: SELECT SUM(works_number) FROM table_name_78 WHERE type = "0-6-4t" AND date > 1875
###context:CREATE TABLE table_name_45 (works_number INTEGER, date VARCHAR, name VARCHAR) ###human: What is the total work number of Gowrie after 1875? ###assistant: SELECT SUM(works_number) FROM table_name_45 WHERE date > 1875 AND name = "gowrie"
###context:CREATE TABLE table_name_57 (works_number INTEGER, builder VARCHAR, name VARCHAR) ###human: What is the average work number of Snowdon Ranger with the builder Vulcan Foundry? ###assistant: SELECT AVG(works_number) FROM table_name_57 WHERE builder = "vulcan foundry" AND name = "snowdon ranger"
###context:CREATE TABLE table_name_51 (works_number VARCHAR, date VARCHAR, type VARCHAR, name VARCHAR) ###human: What is the total work number of Gowrie with a 0-6-4t type after 1908? ###assistant: SELECT COUNT(works_number) FROM table_name_51 WHERE type = "0-6-4t" AND name = "gowrie" AND date > 1908
###context:CREATE TABLE table_name_53 (date VARCHAR, tournament VARCHAR) ###human: What day was the bell atlantic classic? ###assistant: SELECT date FROM table_name_53 WHERE tournament = "bell atlantic classic"
###context:CREATE TABLE table_name_75 (set_1 VARCHAR, set_3 VARCHAR, set_2 VARCHAR) ###human: What was the Set 1 game score when Set 3 game score was 15–4, and a Set 2 game score was 15–7? ###assistant: SELECT set_1 FROM table_name_75 WHERE set_3 = "15–4" AND set_2 = "15–7"
###context:CREATE TABLE table_name_84 (bodyweight INTEGER, snatch INTEGER) ###human: What lowest Bodyweight has a Snatch smaller than 55? ###assistant: SELECT MIN(bodyweight) FROM table_name_84 WHERE snatch < 55
###context:CREATE TABLE table_name_18 (bodyweight VARCHAR, total__kg_ VARCHAR) ###human: Which bodyweight has a Total (kg) of 145.0? ###assistant: SELECT bodyweight FROM table_name_18 WHERE total__kg_ = "145.0"
###context:CREATE TABLE table_name_66 (current_status VARCHAR, livery VARCHAR) ###human: What's the Current Status of Livery of the Network South-East? ###assistant: SELECT current_status FROM table_name_66 WHERE livery = "network south-east"
###context:CREATE TABLE table_name_61 (number_ VARCHAR, _name VARCHAR, date VARCHAR) ###human: What's Number & Name listed for the Date 1967? ###assistant: SELECT number_ & _name FROM table_name_61 WHERE date = 1967
###context:CREATE TABLE table_name_59 (date VARCHAR, away_team VARCHAR) ###human: When was the game at Collingwood? ###assistant: SELECT date FROM table_name_59 WHERE away_team = "collingwood"
###context:CREATE TABLE table_name_7 (venue VARCHAR, home_team VARCHAR) ###human: Where does Geelong play their home game? ###assistant: SELECT venue FROM table_name_7 WHERE home_team = "geelong"
###context:CREATE TABLE table_name_14 (venue VARCHAR, away_team VARCHAR) ###human: In which venue was North Melbourne the Away team? ###assistant: SELECT venue FROM table_name_14 WHERE away_team = "north melbourne"
###context:CREATE TABLE table_name_20 (home_team VARCHAR, venue VARCHAR) ###human: What was the home team's score at Corio Oval? ###assistant: SELECT home_team AS score FROM table_name_20 WHERE venue = "corio oval"
###context:CREATE TABLE table_name_33 (casualties VARCHAR, sunk_by… VARCHAR) ###human: What were the casualties of the ship sunk by u-125? ###assistant: SELECT casualties FROM table_name_33 WHERE sunk_by… = "u-125"
###context:CREATE TABLE table_name_23 (name VARCHAR, casualties VARCHAR, sunk_by… VARCHAR, date VARCHAR, nationality VARCHAR) ###human: What is the name of the ship sunk on 5 May 1943 from the United Kingdom sunk by an u-266 with 0 casualties? ###assistant: SELECT name FROM table_name_23 WHERE date = "5 may 1943" AND nationality = "united kingdom" AND sunk_by… = "u-266" AND casualties = "0"
###context:CREATE TABLE table_name_59 (loss VARCHAR, record VARCHAR) ###human: Who loss the game when the record was 3-10? ###assistant: SELECT loss FROM table_name_59 WHERE record = "3-10"
###context:CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR) ###human: What was the record on April 7? ###assistant: SELECT record FROM table_name_63 WHERE date = "april 7"
###context:CREATE TABLE table_name_58 (object_type VARCHAR, declination___j2000__ VARCHAR) ###human: What Object Type has a °03′32″ Declination (J2000)? ###assistant: SELECT object_type FROM table_name_58 WHERE declination___j2000__ = "°03′32″"
###context:CREATE TABLE table_name_27 (constellation VARCHAR, right_ascension___j2000__ VARCHAR) ###human: What Constellation has a 20h56m40s Right Ascension (J2000)? ###assistant: SELECT constellation FROM table_name_27 WHERE right_ascension___j2000__ = "20h56m40s"
###context:CREATE TABLE table_name_14 (right_ascension___j2000__ VARCHAR, declination___j2000__ VARCHAR, ngc_number VARCHAR, object_type VARCHAR) ###human: What is the Right Ascension with a Diffuse Nebula Object Type has a °42′30″ Declination and a NGC less than 6995? ###assistant: SELECT right_ascension___j2000__ FROM table_name_14 WHERE ngc_number < 6995 AND object_type = "diffuse nebula" AND declination___j2000__ = "°42′30″"
###context:CREATE TABLE table_name_81 (object_type VARCHAR, ngc_number VARCHAR, right_ascension___j2000__ VARCHAR) ###human: What Object Type has a 21h01m37.7s Right Ascension (J2000) and 6995 or greater NGC? ###assistant: SELECT object_type FROM table_name_81 WHERE ngc_number > 6995 AND right_ascension___j2000__ = "21h01m37.7s"
###context:CREATE TABLE table_name_62 (size__steps_ INTEGER, interval_name VARCHAR) ###human: Tell me the average size for minor third ###assistant: SELECT AVG(size__steps_) FROM table_name_62 WHERE interval_name = "minor third"
###context:CREATE TABLE table_name_25 (losing_team VARCHAR, date VARCHAR) ###human: Who was the losing team on June 16? ###assistant: SELECT losing_team FROM table_name_25 WHERE date = "june 16"
###context:CREATE TABLE table_name_81 (score VARCHAR, date VARCHAR) ###human: What was the score of the game on June 28? ###assistant: SELECT score FROM table_name_81 WHERE date = "june 28"
###context:CREATE TABLE table_name_68 (winning_team VARCHAR, losing_team VARCHAR, score VARCHAR) ###human: Who beat the Marlins with a score of 4-0? ###assistant: SELECT winning_team FROM table_name_68 WHERE losing_team = "marlins" AND score = "4-0"
###context:CREATE TABLE table_name_43 (date VARCHAR, venue VARCHAR, score VARCHAR) ###human: What is the date of the game at the Pro Player Stadium that had a score of 4-1? ###assistant: SELECT date FROM table_name_43 WHERE venue = "pro player stadium" AND score = "4-1"
###context:CREATE TABLE table_name_16 (peak VARCHAR, hk_viewers VARCHAR, finale VARCHAR) ###human: With 1.97 million HK viewers and a finale more than 33, what was the total number of peaks? ###assistant: SELECT COUNT(peak) FROM table_name_16 WHERE hk_viewers = "1.97 million" AND finale > 33
###context:CREATE TABLE table_name_11 (date VARCHAR, opponents VARCHAR, score VARCHAR) ###human: When were scottish football league xi the opponents with a score of 1-5? ###assistant: SELECT date FROM table_name_11 WHERE opponents = "scottish football league xi" AND score = "1-5"
###context:CREATE TABLE table_name_59 (score VARCHAR, date VARCHAR) ###human: What's the score on 17/03/1956? ###assistant: SELECT score FROM table_name_59 WHERE date = "17/03/1956"
###context:CREATE TABLE table_name_19 (opponents VARCHAR, result VARCHAR) ###human: When the result is d, who are the opponents? ###assistant: SELECT opponents FROM table_name_19 WHERE result = "d"
###context:CREATE TABLE table_name_10 (result VARCHAR, score VARCHAR) ###human: What's the result when the score is 2-2? ###assistant: SELECT result FROM table_name_10 WHERE score = "2-2"
###context:CREATE TABLE table_name_39 (score VARCHAR) ###human: What's in third place that's going 1-0? ###assistant: SELECT 3 AS rd_place FROM table_name_39 WHERE score = "1-0"
###context:CREATE TABLE table_name_9 (winners VARCHAR, score VARCHAR) ###human: Who is in third place when the kaizer chiefs won 1-0? ###assistant: SELECT 3 AS rd_place FROM table_name_9 WHERE winners = "kaizer chiefs" AND score = "1-0"
###context:CREATE TABLE table_name_40 (year INTEGER, mixed_doubles VARCHAR) ###human: Which is the earliest year that had mixed doubles for wang wei lu ying? ###assistant: SELECT MIN(year) FROM table_name_40 WHERE mixed_doubles = "wang wei lu ying"
###context:CREATE TABLE table_name_34 (Id VARCHAR) ###human: What is the 2011 value that has ATP Masters Series in 2007? ###assistant: SELECT 2011 FROM table_name_34 WHERE 2007 = "atp masters series"
###context:CREATE TABLE table_name_62 (Id VARCHAR) ###human: What is the 2011 value that has a 2r in 2008 and a 4r in 2012? ###assistant: SELECT 2011 FROM table_name_62 WHERE 2008 = "2r" AND 2012 = "4r"
###context:CREATE TABLE table_name_60 (tournament VARCHAR) ###human: What is the 2012 value with an A value in 2007 and A value in 2010 in the Canada Masters? ###assistant: SELECT 2012 FROM table_name_60 WHERE 2007 = "a" AND 2010 = "a" AND tournament = "canada masters"
###context:CREATE TABLE table_name_16 (Id VARCHAR) ###human: What is the 2012 value with 1r in 2011, 2007 of A, 2010 of 1r, and 2009 of A? ###assistant: SELECT 2012 FROM table_name_16 WHERE 2011 = "1r" AND 2007 = "a" AND 2010 = "1r" AND 2009 = "a"
###context:CREATE TABLE table_name_87 (Id VARCHAR) ###human: What is the 2007 value with NMS in 2011? ###assistant: SELECT 2007 FROM table_name_87 WHERE 2011 = "nms"
###context:CREATE TABLE table_name_74 (team VARCHAR, drivers VARCHAR) ###human: Christian Fittipaldi drove in what team? ###assistant: SELECT team FROM table_name_74 WHERE drivers = "christian fittipaldi"
###context:CREATE TABLE table_name_34 (drivers VARCHAR, races VARCHAR) ###human: What driver had a 15-20 record? ###assistant: SELECT drivers FROM table_name_34 WHERE races = "15-20"
###context:CREATE TABLE table_name_28 (drivers VARCHAR, engine VARCHAR, races VARCHAR) ###human: Who drove a race car with a Mercedes IC 108e engine and has an 8-10 record? ###assistant: SELECT drivers FROM table_name_28 WHERE engine = "mercedes ic 108e" AND races = "8-10"
###context:CREATE TABLE table_name_95 (races VARCHAR, chassis VARCHAR, engine VARCHAR) ###human: Which person drove a Reynard 2ki with a Honda Hrk engine? ###assistant: SELECT races FROM table_name_95 WHERE chassis = "reynard 2ki" AND engine = "honda hrk"
###context:CREATE TABLE table_name_82 (artist VARCHAR, format VARCHAR, single VARCHAR) ###human: What artist had a single called Alien Rock b/w Combat, The Remix on 12 inch Vinyl format? ###assistant: SELECT artist FROM table_name_82 WHERE format = "12 inch vinyl" AND single = "alien rock b/w combat, the remix"
###context:CREATE TABLE table_name_17 (single VARCHAR, artist VARCHAR) ###human: What single was written by the artist cap D? ###assistant: SELECT single FROM table_name_17 WHERE artist = "cap d"
###context:CREATE TABLE table_name_46 (date VARCHAR, opponent_in_final VARCHAR) ###human: What date was the opponent in the final Virginie Pichet? ###assistant: SELECT date FROM table_name_46 WHERE opponent_in_final = "virginie pichet"
###context:CREATE TABLE table_name_25 (time VARCHAR, game VARCHAR) ###human: What time was game 7? ###assistant: SELECT time FROM table_name_25 WHERE game = 7
###context:CREATE TABLE table_name_58 (home_team VARCHAR, venue VARCHAR) ###human: When the game was played at the Venue of Lake Oval, what was the home team score? ###assistant: SELECT home_team AS score FROM table_name_58 WHERE venue = "lake oval"
###context:CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR) ###human: When the Venue was Glenferrie Oval, who is the Away team? ###assistant: SELECT away_team FROM table_name_3 WHERE venue = "glenferrie oval"
###context:CREATE TABLE table_name_46 (crowd VARCHAR, away_team VARCHAR) ###human: When North Melbourne is the Away team, what is the total number of the Crowd? ###assistant: SELECT COUNT(crowd) FROM table_name_46 WHERE away_team = "north melbourne"
###context:CREATE TABLE table_name_2 (away_team VARCHAR) ###human: When Richmond is the Away team, what did they score? ###assistant: SELECT away_team AS score FROM table_name_2 WHERE away_team = "richmond"
###context:CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR) ###human: When Geelong is the Away team, what did the Home team score? ###assistant: SELECT home_team AS score FROM table_name_2 WHERE away_team = "geelong"
###context:CREATE TABLE table_name_36 (races VARCHAR, poles VARCHAR, team_name VARCHAR) ###human: Which race has a pole of test driver and a team name of Lucky Strike Honda Racing f1 team? ###assistant: SELECT races FROM table_name_36 WHERE poles = "test driver" AND team_name = "lucky strike honda racing f1 team"
###context:CREATE TABLE table_name_90 (poles VARCHAR, season VARCHAR, points VARCHAR) ###human: Which pole has a Season of 2009 and points of test driver? ###assistant: SELECT poles FROM table_name_90 WHERE season = 2009 AND points = "test driver"
###context:CREATE TABLE table_name_62 (date VARCHAR, margin_of_victory VARCHAR) ###human: What is the date of the tournament with 5 strokes as the margin of victory? ###assistant: SELECT date FROM table_name_62 WHERE margin_of_victory = "5 strokes"
###context:CREATE TABLE table_name_34 (margin_of_victory VARCHAR, date VARCHAR) ###human: What is the margin of victory of the tournament on 15 Jul 2007? ###assistant: SELECT margin_of_victory FROM table_name_34 WHERE date = "15 jul 2007"
###context:CREATE TABLE table_name_82 (margin_of_victory VARCHAR, winning_score VARCHAR) ###human: What is the margin of victory of the tournament with a winning score of 70-67-64-71=272? ###assistant: SELECT margin_of_victory FROM table_name_82 WHERE winning_score = 70 - 67 - 64 - 71 = 272
###context:CREATE TABLE table_name_23 (points INTEGER, tyres VARCHAR, chassis VARCHAR) ###human: Tell me the average points with tyres of b and chassis of tf109 ###assistant: SELECT AVG(points) FROM table_name_23 WHERE tyres = "b" AND chassis = "tf109"
###context:CREATE TABLE table_name_2 (points VARCHAR, chassis VARCHAR) ###human: Tell me the total number of points with chassis of tf103 ###assistant: SELECT COUNT(points) FROM table_name_2 WHERE chassis = "tf103"
###context:CREATE TABLE table_name_61 (partner VARCHAR, outcome VARCHAR, tournament VARCHAR) ###human: Which partners were runner-up in the tournament in Mons, Belgium? ###assistant: SELECT partner FROM table_name_61 WHERE outcome = "runner-up" AND tournament = "mons, belgium"
###context:CREATE TABLE table_name_25 (track VARCHAR, translation VARCHAR) ###human: What is the total track that is translated in brussels? ###assistant: SELECT COUNT(track) FROM table_name_25 WHERE translation = "brussels"
###context:CREATE TABLE table_name_67 (title VARCHAR, track VARCHAR, translation VARCHAR) ###human: Which title has tracks smaller than 7 with translation of an island? ###assistant: SELECT title FROM table_name_67 WHERE track < 7 AND translation = "an island"
###context:CREATE TABLE table_name_84 (recorded VARCHAR, translation VARCHAR) ###human: What is the record for Brussels translations? ###assistant: SELECT recorded FROM table_name_84 WHERE translation = "brussels"
###context:CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR) ###human: What's the largest crowd that attended a game at junction oval? ###assistant: SELECT MAX(crowd) FROM table_name_36 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_3 (school_club_team VARCHAR, player VARCHAR) ###human: Who did mark eaton play for? ###assistant: SELECT school_club_team FROM table_name_3 WHERE player = "mark eaton"
###context:CREATE TABLE table_name_78 (position VARCHAR, years_for_jazz VARCHAR) ###human: What position did someone play from 1982-84? ###assistant: SELECT position FROM table_name_78 WHERE years_for_jazz = "1982-84"
###context:CREATE TABLE table_name_15 (school_club_team VARCHAR, player VARCHAR) ###human: Who does jeremy evans play for? ###assistant: SELECT school_club_team FROM table_name_15 WHERE player = "jeremy evans"
###context:CREATE TABLE table_name_51 (nationality VARCHAR, position VARCHAR, player VARCHAR) ###human: What nationality is mark eaton, center position? ###assistant: SELECT nationality FROM table_name_51 WHERE position = "center" AND player = "mark eaton"
###context:CREATE TABLE table_name_81 (position VARCHAR, school_club_team VARCHAR) ###human: What's the position listed for the east carolina team? ###assistant: SELECT position FROM table_name_81 WHERE school_club_team = "east carolina"
###context:CREATE TABLE table_name_68 (home_away VARCHAR, field VARCHAR, date VARCHAR) ###human: What is the home/away of the game at Nickerson Field at July 10? ###assistant: SELECT home_away FROM table_name_68 WHERE field = "nickerson field" AND date = "july 10"
###context:CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, home_away VARCHAR) ###human: What is the date of the game away against Pride? ###assistant: SELECT date FROM table_name_35 WHERE opponent = "pride" AND home_away = "away"
###context:CREATE TABLE table_name_25 (result VARCHAR, home_away VARCHAR, date VARCHAR) ###human: What is the result of the home game on August 14? ###assistant: SELECT result FROM table_name_25 WHERE home_away = "home" AND date = "august 14"
###context:CREATE TABLE table_name_18 (date VARCHAR, opponent VARCHAR, result VARCHAR) ###human: What is the date of the game against the Lizards with a result of w 18-17? ###assistant: SELECT date FROM table_name_18 WHERE opponent = "lizards" AND result = "w 18-17"
###context:CREATE TABLE table_name_7 (field VARCHAR, date VARCHAR) ###human: What is the field of the game on July 22? ###assistant: SELECT field FROM table_name_7 WHERE date = "july 22"
###context:CREATE TABLE table_name_57 (name VARCHAR, marriage VARCHAR) ###human: Who had a disputed marriage? ###assistant: SELECT name FROM table_name_57 WHERE marriage = "disputed"
###context:CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR) ###human: On October 25, when the visitor was Colorado, what is the score? ###assistant: SELECT score FROM table_name_64 WHERE visitor = "colorado" AND date = "october 25"
###context:CREATE TABLE table_name_90 (richmond_ VARCHAR, staten_is VARCHAR, the_bronx VARCHAR) ###human: How many voters were in Manhattan when 181,639 people voted in the Bronx? ###assistant: SELECT richmond_[staten_is] FROM table_name_90 WHERE the_bronx = "181,639"
###context:CREATE TABLE table_name_53 (brooklyn VARCHAR, richmond_ VARCHAR, staten_is VARCHAR) ###human: When Richmond had a total count of 2,293, what was the total count of Brooklyn? ###assistant: SELECT brooklyn FROM table_name_53 WHERE richmond_[staten_is] = "2,293"
###context:CREATE TABLE table_name_96 (earnings___ INTEGER, rank VARCHAR, country VARCHAR, wins VARCHAR) ###human: What is the average earnings of the player from the United States with a win smaller than 2 and a rank larger than 3? ###assistant: SELECT AVG(earnings___) AS $__ FROM table_name_96 WHERE country = "united states" AND wins < 2 AND rank > 3
###context:CREATE TABLE table_name_55 (events INTEGER, player VARCHAR, wins VARCHAR) ###human: What is the average events that Al Geiberger played with wins smaller than 1? ###assistant: SELECT AVG(events) FROM table_name_55 WHERE player = "al geiberger" AND wins < 1
###context:CREATE TABLE table_name_65 (rank VARCHAR, events VARCHAR) ###human: What is the rank where the events is 31? ###assistant: SELECT rank FROM table_name_65 WHERE events = 31
###context:CREATE TABLE table_name_42 (events VARCHAR, player VARCHAR, earnings___$__ VARCHAR) ###human: What is the total number of events that Al Geiberger has played with earnings larger than 527,033? ###assistant: SELECT COUNT(events) FROM table_name_42 WHERE player = "al geiberger" AND earnings___$__ > 527 OFFSET 033
###context:CREATE TABLE table_name_11 (events INTEGER, rank VARCHAR, wins VARCHAR) ###human: What is the average events where the rank is smaller than 2 and wins are smaller than 5? ###assistant: SELECT AVG(events) FROM table_name_11 WHERE rank < 2 AND wins < 5
###context:CREATE TABLE table_name_32 (home VARCHAR, visitor VARCHAR) ###human: Who did team phoenix visit in their home? ###assistant: SELECT home FROM table_name_32 WHERE visitor = "phoenix"
###context:CREATE TABLE table_name_80 (round INTEGER, location VARCHAR, event VARCHAR) ###human: What is the highest round in the Wec 25 match in Las Vegas, Nevada, United States? ###assistant: SELECT MAX(round) FROM table_name_80 WHERE location = "las vegas, nevada, united states" AND event = "wec 25"
###context:CREATE TABLE table_name_9 (event VARCHAR, round VARCHAR, record VARCHAR) ###human: What event had 1 round and a record of 6-2? ###assistant: SELECT event FROM table_name_9 WHERE round = 1 AND record = "6-2"
###context:CREATE TABLE table_name_71 (school VARCHAR, round VARCHAR, player VARCHAR) ###human: Which school has more than 3 rounds with jason odom? ###assistant: SELECT school FROM table_name_71 WHERE round > 3 AND player = "jason odom"
###context:CREATE TABLE table_name_25 (evening_gown INTEGER, swimsuit VARCHAR, interview VARCHAR) ###human: Name the least evening gown for interview more than 7.97 and swimsui of 7.24 ###assistant: SELECT MIN(evening_gown) FROM table_name_25 WHERE swimsuit = 7.24 AND interview > 7.97
###context:CREATE TABLE table_name_86 (nationality VARCHAR, player VARCHAR) ###human: What is the nationality of Mattias Modig? ###assistant: SELECT nationality FROM table_name_86 WHERE player = "mattias modig"
###context:CREATE TABLE table_name_52 (crowd VARCHAR, home_team VARCHAR) ###human: In the game where the home team was St Kilda, what was the attendance? ###assistant: SELECT crowd FROM table_name_52 WHERE home_team = "st kilda"
###context:CREATE TABLE table_name_22 (crowd VARCHAR, venue VARCHAR) ###human: In the game with the venue of mcg, what was the attendance? ###assistant: SELECT crowd FROM table_name_22 WHERE venue = "mcg"
###context:CREATE TABLE table_name_24 (home_team VARCHAR, venue VARCHAR) ###human: In the game that took place at junction oval, how much did the home team score? ###assistant: SELECT home_team AS score FROM table_name_24 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_22 (visitor VARCHAR, home VARCHAR) ###human: Who was the visiting team when the home team was Seattle? ###assistant: SELECT visitor FROM table_name_22 WHERE home = "seattle"
###context:CREATE TABLE table_name_63 (record VARCHAR, date VARCHAR) ###human: What was the record on 12 march 2008? ###assistant: SELECT record FROM table_name_63 WHERE date = "12 march 2008"
###context:CREATE TABLE table_name_83 (home VARCHAR, date VARCHAR) ###human: Who was the home team on 27 march 2008? ###assistant: SELECT home FROM table_name_83 WHERE date = "27 march 2008"
###context:CREATE TABLE table_name_23 (score VARCHAR, visitor VARCHAR) ###human: What was the score when the mavericks were visitors? ###assistant: SELECT score FROM table_name_23 WHERE visitor = "mavericks"