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