text
stringlengths
114
1.06k
### question: what round saw the ground of telstra dome and shaun burgoyne as nominees? ### answer: SELECT MAX(round) FROM table_name_79 WHERE ground = "telstra dome" AND nominees = "shaun burgoyne" ### context: CREATE TABLE table_name_79 (round INTEGER, ground VARCHAR, nominees VARCHAR)
### question: What has the lowest number of wins with GA smaller than 39, more than 2 losses, and ties greater than 0? ### answer: SELECT MIN(wins) FROM table_name_17 WHERE goals_against < 39 AND losses > 2 AND ties > 0 ### context: CREATE TABLE table_name_17 (wins INTEGER, ties VARCHAR, goals_against VARCHAR, losses VARCHAR)
### question: Which team has the most ties with fewer than 4 losses and GA smaller than 20? ### answer: SELECT MAX(ties) FROM table_name_56 WHERE losses < 4 AND goals_against < 20 ### context: CREATE TABLE table_name_56 (ties INTEGER, losses VARCHAR, goals_against VARCHAR)
### question: How many games did the team lose that played 7 games and has a GA of less than 27? ### answer: SELECT COUNT(losses) FROM table_name_1 WHERE games_played = 7 AND goals_against < 27 ### context: CREATE TABLE table_name_1 (losses VARCHAR, games_played VARCHAR, goals_against VARCHAR)
### question: what date saw the chicago bears lose in green bay earlier than 1931? ### answer: SELECT date FROM table_name_12 WHERE loser = "chicago bears" AND location = "green bay" AND year < 1931 ### context: CREATE TABLE table_name_12 (date VARCHAR, year VARCHAR, loser VARCHAR, location VARCHAR)
### question: What is the Away team score for Away team Melbourne? ### answer: SELECT away_team AS score FROM table_name_89 WHERE away_team = "melbourne" ### context: CREATE TABLE table_name_89 (away_team VARCHAR)
### question: what is the years for the displacement 4.0l (242cid)? ### answer: SELECT years FROM table_name_35 WHERE displacement = "4.0l (242cid)" ### context: CREATE TABLE table_name_35 (years VARCHAR, displacement VARCHAR)
### question: Which engine has a torgue of lb·ft (n·m)? ### answer: SELECT engine FROM table_name_67 WHERE torque = "lb·ft (n·m)" ### context: CREATE TABLE table_name_67 (engine VARCHAR, torque VARCHAR)
### question: How many years for the team with under 31 ties and a percentage of 0.5451? ### answer: SELECT years FROM table_name_15 WHERE tied < 31 AND pct = 0.5451 ### context: CREATE TABLE table_name_15 (years VARCHAR, tied VARCHAR, pct VARCHAR)
### question: How many games tied for the air force with over 57 years participating? ### answer: SELECT COUNT(tied) FROM table_name_69 WHERE mountain_west = "air force" AND years > 57 ### context: CREATE TABLE table_name_69 (tied VARCHAR, mountain_west VARCHAR, years VARCHAR)
### question: What is the description where the date is 1911? ### answer: SELECT description FROM table_name_58 WHERE date = 1911 ### context: CREATE TABLE table_name_58 (description VARCHAR, date VARCHAR)
### question: What is the number and name where the date is earlier than 1905? ### answer: SELECT number_ & _name FROM table_name_37 WHERE date < 1905 ### context: CREATE TABLE table_name_37 (number_ VARCHAR, _name VARCHAR, date INTEGER)
### question: What year was the name mount roskill grammar school? ### answer: SELECT years FROM table_name_35 WHERE name = "mount roskill grammar school" ### context: CREATE TABLE table_name_35 (years VARCHAR, name VARCHAR)
### question: When melbourne played as the home team, who did they play? ### answer: SELECT away_team FROM table_name_41 WHERE home_team = "melbourne" ### context: CREATE TABLE table_name_41 (away_team VARCHAR, home_team VARCHAR)
### question: When the home team was geelong, who played as the away team? ### answer: SELECT away_team FROM table_name_80 WHERE home_team = "geelong" ### context: CREATE TABLE table_name_80 (away_team VARCHAR, home_team VARCHAR)
### question: If north melbourne played as the home team, who was the away team they played? ### answer: SELECT away_team FROM table_name_93 WHERE home_team = "north melbourne" ### context: CREATE TABLE table_name_93 (away_team VARCHAR, home_team VARCHAR)
### question: When st kilda was playing at home what was the away teams score? ### answer: SELECT away_team AS score FROM table_name_23 WHERE home_team = "st kilda" ### context: CREATE TABLE table_name_23 (away_team VARCHAR, home_team VARCHAR)
### question: What is the production code of the episode before season 8, with a series number less than 31, and aired on September 21, 1995? ### answer: SELECT production_code FROM table_name_1 WHERE season__number < 8 AND series__number < 31 AND original_air_date = "september 21, 1995" ### context: CREATE TABLE table_name_1 (production_code VARCHAR, original_air_date VARCHAR, season__number VARCHAR, series__number VARCHAR)
### question: What is the smallest amount of spectators when the away team was Hawthorn? ### answer: SELECT MIN(crowd) FROM table_name_93 WHERE away_team = "hawthorn" ### context: CREATE TABLE table_name_93 (crowd INTEGER, away_team VARCHAR)
### question: How many people attended when the away team was Richmond? ### answer: SELECT SUM(crowd) FROM table_name_54 WHERE away_team = "richmond" ### context: CREATE TABLE table_name_54 (crowd INTEGER, away_team VARCHAR)
### question: What was the score when the record was 18–14–4 with a toivonen decision? ### answer: SELECT score FROM table_name_11 WHERE decision = "toivonen" AND record = "18–14–4" ### context: CREATE TABLE table_name_11 (score VARCHAR, decision VARCHAR, record VARCHAR)
### question: What's the sum of the attendance for the calgary home team? ### answer: SELECT SUM(attendance) FROM table_name_23 WHERE home = "calgary" ### context: CREATE TABLE table_name_23 (attendance INTEGER, home VARCHAR)
### question: What was the record when chicago was the visiting team? ### answer: SELECT record FROM table_name_98 WHERE visitor = "chicago" ### context: CREATE TABLE table_name_98 (record VARCHAR, visitor VARCHAR)
### question: What was the date of the game when the record of the series was 0–1? ### answer: SELECT date FROM table_name_10 WHERE series = "0–1" ### context: CREATE TABLE table_name_10 (date VARCHAR, series VARCHAR)
### question: What is the score for the away team when South Melbourne was the home team? ### answer: SELECT away_team AS score FROM table_name_58 WHERE home_team = "south melbourne" ### context: CREATE TABLE table_name_58 (away_team VARCHAR, home_team VARCHAR)
### question: What was the score of the 2001 game held at Network Associates Coliseum? ### answer: SELECT result FROM table_name_66 WHERE year = 2001 AND location = "network associates coliseum" ### context: CREATE TABLE table_name_66 (result VARCHAR, year VARCHAR, location VARCHAR)
### question: What region has giuseppe sivori as a home venue? ### answer: SELECT region FROM table_name_52 WHERE home_venue = "giuseppe sivori" ### context: CREATE TABLE table_name_52 (region VARCHAR, home_venue VARCHAR)
### question: What city has the nickname of pontisola? ### answer: SELECT city FROM table_name_67 WHERE short_name = "pontisola" ### context: CREATE TABLE table_name_67 (city VARCHAR, short_name VARCHAR)
### question: What squad plays at comunale in darfo boario terme? ### answer: SELECT name FROM table_name_40 WHERE home_venue = "comunale" AND city = "darfo boario terme" ### context: CREATE TABLE table_name_40 (name VARCHAR, home_venue VARCHAR, city VARCHAR)
### question: What pick was Scott Glennie from the Western hockey league ### answer: SELECT pick__number FROM table_name_62 WHERE league_from = "western hockey league" AND player = "scott glennie" ### context: CREATE TABLE table_name_62 (pick__number VARCHAR, league_from VARCHAR, player VARCHAR)
### question: What player from the United States played in the western collegiate hockey association? ### answer: SELECT player FROM table_name_40 WHERE nationality = "united states" AND league_from = "western collegiate hockey association" ### context: CREATE TABLE table_name_40 (player VARCHAR, nationality VARCHAR, league_from VARCHAR)
### question: Where the time/retired is +1 lap, the constructor is BRM, and the grid is above 1, what's the highest laps recorded? ### answer: SELECT MAX(laps) FROM table_name_25 WHERE time_retired = "+1 lap" AND constructor = "brm" AND grid > 1 ### context: CREATE TABLE table_name_25 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, constructor VARCHAR)
### question: When the laps driven were under 9 and the time/retired recorded was engine, what's the total number of grid values? ### answer: SELECT COUNT(grid) FROM table_name_69 WHERE laps < 9 AND time_retired = "engine" ### context: CREATE TABLE table_name_69 (grid VARCHAR, laps VARCHAR, time_retired VARCHAR)
### question: Which driver has a grid of 3? ### answer: SELECT driver FROM table_name_59 WHERE grid = 3 ### context: CREATE TABLE table_name_59 (driver VARCHAR, grid VARCHAR)
### question: When the laps are 31 and the constructor was honda, what's the sum of all grid values? ### answer: SELECT SUM(grid) FROM table_name_58 WHERE constructor = "honda" AND laps = 31 ### context: CREATE TABLE table_name_58 (grid INTEGER, constructor VARCHAR, laps VARCHAR)
### question: What is the chassis for all rounds on the entrant Benson and Hedges Jordan driven by Damon Hill? ### answer: SELECT chassis FROM table_name_69 WHERE rounds = "all" AND entrant = "benson and hedges jordan" AND driver = "damon hill" ### context: CREATE TABLE table_name_69 (chassis VARCHAR, driver VARCHAR, rounds VARCHAR, entrant VARCHAR)
### question: What is the constructor of driver Alexander Wurz? ### answer: SELECT constructor FROM table_name_84 WHERE driver = "alexander wurz" ### context: CREATE TABLE table_name_84 (constructor VARCHAR, driver VARCHAR)
### question: Who was the driver that had all rounds and a f399 chassis? ### answer: SELECT driver FROM table_name_53 WHERE rounds = "all" AND chassis = "f399" ### context: CREATE TABLE table_name_53 (driver VARCHAR, rounds VARCHAR, chassis VARCHAR)
### question: What were the rounds on the Engine † of the Ferrari 048? ### answer: SELECT rounds FROM table_name_33 WHERE engine_† = "ferrari 048" ### context: CREATE TABLE table_name_33 (rounds VARCHAR, engine_† VARCHAR)
### question: Which Semifinal has an Event of team? ### answer: SELECT semifinal FROM table_name_47 WHERE event = "team" ### context: CREATE TABLE table_name_47 (semifinal VARCHAR, event VARCHAR)
### question: Which Quarterfinal has a Rank larger than 9? ### answer: SELECT quarterfinal FROM table_name_28 WHERE rank > 9 ### context: CREATE TABLE table_name_28 (quarterfinal VARCHAR, rank INTEGER)
### question: What is the pick number of the DB? ### answer: SELECT COUNT(pick__number) FROM table_name_46 WHERE position = "db" ### context: CREATE TABLE table_name_46 (pick__number VARCHAR, position VARCHAR)
### question: What college did the T who was pick after 13 go to? ### answer: SELECT college FROM "t" AS able_name_20 WHERE pick__number > 13 AND position = "t" ### context: CREATE TABLE t (Id VARCHAR)
### question: Which CFL team drafted a pick from Boston College? ### answer: SELECT cfl_team FROM table_name_5 WHERE college = "boston college" ### context: CREATE TABLE table_name_5 (cfl_team VARCHAR, college VARCHAR)
### question: What position did the Saskatchewan player get drafted as? ### answer: SELECT position FROM table_name_51 WHERE college = "saskatchewan" ### context: CREATE TABLE table_name_51 (position VARCHAR, college VARCHAR)
### question: When the laps are over 53, what's the average grid? ### answer: SELECT AVG(grid) FROM table_name_32 WHERE laps > 53 ### context: CREATE TABLE table_name_32 (grid INTEGER, laps INTEGER)
### question: What's the average laps driven by david coulthard? ### answer: SELECT AVG(laps) FROM table_name_75 WHERE driver = "david coulthard" ### context: CREATE TABLE table_name_75 (laps INTEGER, driver VARCHAR)
### question: who is the opponent in the final when the year is before 1883? ### answer: SELECT opponent_in_the_final FROM table_name_8 WHERE year < 1883 ### context: CREATE TABLE table_name_8 (opponent_in_the_final VARCHAR, year INTEGER)
### question: what is the outcome for the 1887? ### answer: SELECT outcome FROM table_name_4 WHERE year = 1887 ### context: CREATE TABLE table_name_4 (outcome VARCHAR, year VARCHAR)
### question: what is the outcome when the opponent in the final is william renshaw after year 1882? ### answer: SELECT outcome FROM table_name_24 WHERE year > 1882 AND opponent_in_the_final = "william renshaw" ### context: CREATE TABLE table_name_24 (outcome VARCHAR, year VARCHAR, opponent_in_the_final VARCHAR)
### question: what is the score when the outcome is runner-up, the opponent in the final is herbert lawford and the year is after 1882? ### answer: SELECT score FROM table_name_39 WHERE year > 1882 AND outcome = "runner-up" AND opponent_in_the_final = "herbert lawford" ### context: CREATE TABLE table_name_39 (score VARCHAR, opponent_in_the_final VARCHAR, year VARCHAR, outcome VARCHAR)
### question: What artist has a mintage of greater than 34,135? ### answer: SELECT artist FROM table_name_29 WHERE mintage > 34 OFFSET 135 ### context: CREATE TABLE table_name_29 (artist VARCHAR, mintage INTEGER)
### question: What artist was released in 2005? ### answer: SELECT artist FROM table_name_71 WHERE year = 2005 ### context: CREATE TABLE table_name_71 (artist VARCHAR, year VARCHAR)
### question: What's melbourne's average year? ### answer: SELECT AVG(year) FROM table_name_35 WHERE team = "melbourne" ### context: CREATE TABLE table_name_35 (year INTEGER, team VARCHAR)
### question: Who was ashley sampi's opponent? ### answer: SELECT opponent FROM table_name_71 WHERE player = "ashley sampi" ### context: CREATE TABLE table_name_71 (opponent VARCHAR, player VARCHAR)
### question: Which team did daniel bradshaw play for after 1935? ### answer: SELECT team FROM table_name_59 WHERE year > 1935 AND player = "daniel bradshaw" ### context: CREATE TABLE table_name_59 (team VARCHAR, year VARCHAR, player VARCHAR)
### question: Who played in 1992? ### answer: SELECT player FROM table_name_25 WHERE year = 1992 ### context: CREATE TABLE table_name_25 (player VARCHAR, year VARCHAR)
### question: What date was fitzroy the away team? ### answer: SELECT date FROM table_name_65 WHERE away_team = "fitzroy" ### context: CREATE TABLE table_name_65 (date VARCHAR, away_team VARCHAR)
### question: Name the surface when the partner is carlos berlocq ### answer: SELECT surface FROM table_name_13 WHERE partner = "carlos berlocq" ### context: CREATE TABLE table_name_13 (surface VARCHAR, partner VARCHAR)
### question: Name the date for clay surface and score of 0–6, 0–6 ### answer: SELECT date FROM table_name_75 WHERE surface = "clay" AND score = "0–6, 0–6" ### context: CREATE TABLE table_name_75 (date VARCHAR, surface VARCHAR, score VARCHAR)
### question: Name the partner with score of 6–3, 6–2 ### answer: SELECT partner FROM table_name_80 WHERE score = "6–3, 6–2" ### context: CREATE TABLE table_name_80 (partner VARCHAR, score VARCHAR)
### question: Name the tournament for clay surface and outcome is winner with score is 6–3, 6–2 ### answer: SELECT tournament FROM table_name_99 WHERE surface = "clay" AND outcome = "winner" AND score = "6–3, 6–2" ### context: CREATE TABLE table_name_99 (tournament VARCHAR, score VARCHAR, surface VARCHAR, outcome VARCHAR)
### question: Name the outcome on 6 october 2013 ### answer: SELECT outcome FROM table_name_70 WHERE date = "6 october 2013" ### context: CREATE TABLE table_name_70 (outcome VARCHAR, date VARCHAR)
### question: What is the song with more than 9 points and 44 (11) jury (points)? ### answer: SELECT song FROM table_name_55 WHERE total_points > 9 AND jury__points_ = "44 (11)" ### context: CREATE TABLE table_name_55 (song VARCHAR, total_points VARCHAR, jury__points_ VARCHAR)
### question: Who is the artist with 2153 (5) televotes (points)? ### answer: SELECT artist FROM table_name_11 WHERE televotes__points_ = "2153 (5)" ### context: CREATE TABLE table_name_11 (artist VARCHAR, televotes__points_ VARCHAR)
### question: What is the lowest total points Karine Trécy has with less than 4 draws? ### answer: SELECT MIN(total_points) FROM table_name_8 WHERE draw < 4 AND artist = "karine trécy" ### context: CREATE TABLE table_name_8 (total_points INTEGER, draw VARCHAR, artist VARCHAR)
### question: What is the lowest total points Karine Trécy has with a less than 12 place? ### answer: SELECT MIN(total_points) FROM table_name_84 WHERE artist = "karine trécy" AND place < 12 ### context: CREATE TABLE table_name_84 (total_points INTEGER, artist VARCHAR, place VARCHAR)
### question: What is the average rating of viewers 18 to 49 where the total viewer count is 3.93 million and share less than 4? ### answer: SELECT AVG(18 AS _49) FROM table_name_96 WHERE viewers__m_ = 3.93 AND share < 4 ### context: CREATE TABLE table_name_96 (viewers__m_ VARCHAR, share VARCHAR)
### question: What is the total number of ratings among the 18 to 49 group that was aired on January 7, 2009? ### answer: SELECT COUNT(18 AS _49) FROM table_name_47 WHERE air_date = "january 7, 2009" ### context: CREATE TABLE table_name_47 (air_date VARCHAR)
### question: What was Mike Hailwood's highest laps when he had a grid more than 7? ### answer: SELECT MAX(laps) FROM table_name_16 WHERE driver = "mike hailwood" AND grid > 7 ### context: CREATE TABLE table_name_16 (laps INTEGER, driver VARCHAR, grid VARCHAR)
### question: What is the name of the site with a CERCLIS ID of prd980512362? ### answer: SELECT name FROM table_name_77 WHERE cerclis_id = "prd980512362" ### context: CREATE TABLE table_name_77 (name VARCHAR, cerclis_id VARCHAR)
### question: What is the site for Florida? ### answer: SELECT listed FROM table_name_22 WHERE municipality = "florida" ### context: CREATE TABLE table_name_22 (listed VARCHAR, municipality VARCHAR)
### question: What site in the RCA Del Caribe was deleted? ### answer: SELECT deleted FROM table_name_8 WHERE name = "rca del caribe" ### context: CREATE TABLE table_name_8 (deleted VARCHAR, name VARCHAR)
### question: Where is the partially deleted site of fibers public supply wells located? ### answer: SELECT partially_deleted FROM table_name_65 WHERE name = "fibers public supply wells" ### context: CREATE TABLE table_name_65 (partially_deleted VARCHAR, name VARCHAR)
### question: The proposed 03/08/2004 site is in what municipality? ### answer: SELECT municipality FROM table_name_35 WHERE proposed = "03/08/2004" ### context: CREATE TABLE table_name_35 (municipality VARCHAR, proposed VARCHAR)
### question: What is the release format for titles after 1983? ### answer: SELECT release_format FROM table_name_55 WHERE release_date > 1983 ### context: CREATE TABLE table_name_55 (release_format VARCHAR, release_date INTEGER)
### question: What venue is the home of the Carlton team? ### answer: SELECT venue FROM table_name_39 WHERE home_team = "carlton" ### context: CREATE TABLE table_name_39 (venue VARCHAR, home_team VARCHAR)
### question: Which driver had a grid of 18 with 68 laps? ### answer: SELECT driver FROM table_name_88 WHERE laps = "68" AND grid = "18" ### context: CREATE TABLE table_name_88 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
### question: Which driver had a grid of 18? ### answer: SELECT driver FROM table_name_58 WHERE grid = "18" ### context: CREATE TABLE table_name_58 (driver VARCHAR, grid VARCHAR)
### question: Which driver had a grid of 22? ### answer: SELECT driver FROM table_name_43 WHERE grid = "22" ### context: CREATE TABLE table_name_43 (driver VARCHAR, grid VARCHAR)
### question: Which season is the wicket 2nd partnership in? ### answer: SELECT season FROM table_name_41 WHERE wicket_partnership = "2nd" ### context: CREATE TABLE table_name_41 (season VARCHAR, wicket_partnership VARCHAR)
### question: Where did v kent play? ### answer: SELECT venue FROM table_name_4 WHERE opponents = "v kent" ### context: CREATE TABLE table_name_4 (venue VARCHAR, opponents VARCHAR)
### question: Which runs had james bryant graeme welch as Batsmen? ### answer: SELECT runs FROM table_name_28 WHERE batsmen = "james bryant graeme welch" ### context: CREATE TABLE table_name_28 (runs VARCHAR, batsmen VARCHAR)
### question: Which clay has a Record of 2–0, and a Hard 1–0? ### answer: SELECT clay FROM table_name_36 WHERE record = "2–0" AND hard = "1–0" ### context: CREATE TABLE table_name_36 (clay VARCHAR, record VARCHAR, hard VARCHAR)
### question: Which hard has a Clay of 0–0, Grass of 0–0, Carpet of 0–0, and a Record of 1–0? ### answer: SELECT hard FROM table_name_10 WHERE clay = "0–0" AND grass = "0–0" AND carpet = "0–0" AND record = "1–0" ### context: CREATE TABLE table_name_10 (hard VARCHAR, record VARCHAR, carpet VARCHAR, clay VARCHAR, grass VARCHAR)
### question: Which carpet has a Clay of 1–0 and a Hard 1–1? ### answer: SELECT carpet FROM table_name_1 WHERE clay = "1–0" AND hard = "1–1" ### context: CREATE TABLE table_name_1 (carpet VARCHAR, clay VARCHAR, hard VARCHAR)
### question: Name the most rank for population more than 93,378 ### answer: SELECT MAX(rank) FROM table_name_5 WHERE population > 93 OFFSET 378 ### context: CREATE TABLE table_name_5 (rank INTEGER, population INTEGER)
### question: What award is featured in 1992? ### answer: SELECT award FROM table_name_18 WHERE year = 1992 ### context: CREATE TABLE table_name_18 (award VARCHAR, year VARCHAR)
### question: What award was won in the best sound category for the exorcist before 1998? ### answer: SELECT award FROM table_name_85 WHERE year < 1998 AND type = "won" AND category = "best sound" AND title = "the exorcist" ### context: CREATE TABLE table_name_85 (award VARCHAR, title VARCHAR, category VARCHAR, year VARCHAR, type VARCHAR)
### question: What was the candidate that got 1,019 votes for staten island? ### answer: SELECT 1953 FROM table_name_25 WHERE richmond_[staten_is] = "1,019" ### context: CREATE TABLE table_name_25 (richmond_ VARCHAR, staten_is VARCHAR)
### question: What was the opposing team for the game on August 29? ### answer: SELECT opponent FROM table_name_28 WHERE date = "august 29" ### context: CREATE TABLE table_name_28 (opponent VARCHAR, date VARCHAR)
### question: which player has 11 tries? ### answer: SELECT player FROM table_name_68 WHERE tries = "11" ### context: CREATE TABLE table_name_68 (player VARCHAR, tries VARCHAR)
### question: which player has a conv of 14? ### answer: SELECT player FROM table_name_45 WHERE conv = "14" ### context: CREATE TABLE table_name_45 (player VARCHAR, conv VARCHAR)
### question: on the span of 1992-2000, what was the conv ? ### answer: SELECT conv FROM table_name_19 WHERE span = "1992-2000" ### context: CREATE TABLE table_name_19 (conv VARCHAR, span VARCHAR)
### question: What is the high point toal for martine foubert placing below 2? ### answer: SELECT MAX(points) FROM table_name_32 WHERE artist = "martine foubert" AND place > 2 ### context: CREATE TABLE table_name_32 (points INTEGER, artist VARCHAR, place VARCHAR)
### question: How much did the away team Melbourne score? ### answer: SELECT away_team AS score FROM table_name_64 WHERE away_team = "melbourne" ### context: CREATE TABLE table_name_64 (away_team VARCHAR)
### question: What is the highest crowd number for the home team Richmond? ### answer: SELECT MAX(crowd) FROM table_name_5 WHERE home_team = "richmond" ### context: CREATE TABLE table_name_5 (crowd INTEGER, home_team VARCHAR)
### question: What home team played at Glenferrie Oval? ### answer: SELECT home_team FROM table_name_76 WHERE venue = "glenferrie oval" ### context: CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR)
### question: How much did the away team St Kilda score? ### answer: SELECT away_team AS score FROM table_name_51 WHERE away_team = "st kilda" ### context: CREATE TABLE table_name_51 (away_team VARCHAR)
### question: Which Crowd has an Away team of st kilda? ### answer: SELECT crowd FROM table_name_28 WHERE away_team = "st kilda" ### context: CREATE TABLE table_name_28 (crowd VARCHAR, away_team VARCHAR)