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