training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_14 (week VARCHAR, date VARCHAR)
###human: What week number did November 19, 1989 games fall on?
###assistant: SELECT week FROM table_name_14 WHERE date = "november 19, 1989" |
###context:CREATE TABLE table_name_58 (game_site VARCHAR, record VARCHAR)
###human: Which game site(s) had record of 2-2?
###assistant: SELECT game_site FROM table_name_58 WHERE record = "2-2" |
###context:CREATE TABLE table_name_53 (opponent VARCHAR, record VARCHAR, kickoff_ VARCHAR, a_ VARCHAR)
###human: Which game had a kickoff at 1:00 and a record of 3-7?
###assistant: SELECT opponent FROM table_name_53 WHERE kickoff_[a_] = "1:00" AND record = "3-7" |
###context:CREATE TABLE table_name_12 (date VARCHAR, attendance VARCHAR)
###human: Which game had an attendance of 56,271?
###assistant: SELECT date FROM table_name_12 WHERE attendance = "56,271" |
###context:CREATE TABLE table_name_22 (driver VARCHAR, engine VARCHAR, chassis VARCHAR)
###human: Tell me the driver for ford cosworth dfv 3.0 v8 and chassis of ts19 ts20
###assistant: SELECT driver FROM table_name_22 WHERE engine = "ford cosworth dfv 3.0 v8" AND chassis = "ts19 ts20" |
###context:CREATE TABLE table_name_3 (constructor VARCHAR, driver VARCHAR, chassis VARCHAR)
###human: Tell me the constructor for alberto colombo and chassis of a1
###assistant: SELECT constructor FROM table_name_3 WHERE driver = "alberto colombo" AND chassis = "a1" |
###context:CREATE TABLE table_name_24 (constructor VARCHAR, driver VARCHAR)
###human: Tell me the constructor for clay regazzoni
###assistant: SELECT constructor FROM table_name_24 WHERE driver = "clay regazzoni" |
###context:CREATE TABLE table_name_29 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: Tell me the chassis for team tissot ensign and driver of brett lunger
###assistant: SELECT chassis FROM table_name_29 WHERE entrant = "team tissot ensign" AND driver = "brett lunger" |
###context:CREATE TABLE table_name_46 (tyres VARCHAR, driver VARCHAR)
###human: I want the tyres for hans binder
###assistant: SELECT tyres FROM table_name_46 WHERE driver = "hans binder" |
###context:CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, driver VARCHAR)
###human: I want the constructor for divina galica rounds of 1-2
###assistant: SELECT constructor FROM table_name_54 WHERE rounds = "1-2" AND driver = "divina galica" |
###context:CREATE TABLE table_name_16 (opponent VARCHAR, date VARCHAR)
###human: What team did the Red Sox play against on June 3?
###assistant: SELECT opponent FROM table_name_16 WHERE date = "june 3" |
###context:CREATE TABLE table_name_22 (record VARCHAR, attendance VARCHAR)
###human: What was the Record at the game that had an attendance of 21,191?
###assistant: SELECT record FROM table_name_22 WHERE attendance = "21,191" |
###context:CREATE TABLE table_name_74 (score VARCHAR, date VARCHAR)
###human: What was the final score of the game on June 17?
###assistant: SELECT score FROM table_name_74 WHERE date = "june 17" |
###context:CREATE TABLE table_name_87 (total_number_of_ways VARCHAR)
###human: What is the 1st ship delivery date of 6 ways?
###assistant: SELECT 1 AS st_ship_delivery_date FROM table_name_87 WHERE total_number_of_ways = "6 ways" |
###context:CREATE TABLE table_name_44 (final VARCHAR, athlete VARCHAR)
###human: What was the final round result of Mohammad Reza Samadi?
###assistant: SELECT final FROM table_name_44 WHERE athlete = "mohammad reza samadi" |
###context:CREATE TABLE table_name_53 (home_team VARCHAR)
###human: When the Home team of footscray is playing, what's the Home team score?
###assistant: SELECT home_team AS score FROM table_name_53 WHERE home_team = "footscray" |
###context:CREATE TABLE table_name_78 (song_title VARCHAR, chart_peak VARCHAR, track VARCHAR)
###human: What was the title of the song that peaked the charts at #1 with track 20?
###assistant: SELECT song_title FROM table_name_78 WHERE chart_peak = "#1" AND track = 20 |
###context:CREATE TABLE table_name_29 (time VARCHAR, song_title VARCHAR)
###human: What is the time from the song called Treat Me Nice?
###assistant: SELECT time FROM table_name_29 WHERE song_title = "treat me nice" |
###context:CREATE TABLE table_name_7 (copyright_information VARCHAR, publisher VARCHAR)
###human: What was Random House's copyright information?
###assistant: SELECT copyright_information FROM table_name_7 WHERE publisher = "random house" |
###context:CREATE TABLE table_name_19 (release_date VARCHAR, isbn VARCHAR, year VARCHAR)
###human: What was release date in 1992 with the ISBN #0?
###assistant: SELECT release_date FROM table_name_19 WHERE isbn = 0 AND year = 1992 |
###context:CREATE TABLE table_name_70 (club_team VARCHAR, overall VARCHAR)
###human: What club team has 216 overall?
###assistant: SELECT club_team FROM table_name_70 WHERE overall = 216 |
###context:CREATE TABLE table_name_67 (round INTEGER, player VARCHAR)
###human: What is the highest round played by Chris Phillips?
###assistant: SELECT MAX(round) FROM table_name_67 WHERE player = "chris phillips" |
###context:CREATE TABLE table_name_94 (player VARCHAR, college VARCHAR)
###human: What player attended Graceland College?
###assistant: SELECT player FROM table_name_94 WHERE college = "graceland" |
###context:CREATE TABLE table_name_36 (pick__number INTEGER, cfl_team VARCHAR)
###human: What is the highest pick number of the CFL's Toronto Argonauts?
###assistant: SELECT MAX(pick__number) FROM table_name_36 WHERE cfl_team = "toronto argonauts" |
###context:CREATE TABLE table_name_89 (pick__number VARCHAR, college VARCHAR)
###human: Which pick number attended McMaster College?
###assistant: SELECT pick__number FROM table_name_89 WHERE college = "mcmaster" |
###context:CREATE TABLE table_name_98 (visitor VARCHAR, decision VARCHAR, home VARCHAR)
###human: Who was the visiting team at the game where Edmonton was the home team and the decision was Osgood?
###assistant: SELECT visitor FROM table_name_98 WHERE decision = "osgood" AND home = "edmonton" |
###context:CREATE TABLE table_name_63 (recorded VARCHAR, time VARCHAR, song_title VARCHAR)
###human: What is the date recorded for I Want to Be Free with a length of 2:12?
###assistant: SELECT recorded FROM table_name_63 WHERE time = "2:12" AND song_title = "i want to be free" |
###context:CREATE TABLE table_name_15 (track INTEGER, time VARCHAR, writer_s_ VARCHAR)
###human: What is the highest track with a length of 1:54 written by Gene Autry and Oakley Haldeman?
###assistant: SELECT MAX(track) FROM table_name_15 WHERE time = "1:54" AND writer_s_ = "gene autry and oakley haldeman" |
###context:CREATE TABLE table_name_53 (song_title VARCHAR, track VARCHAR, release_date VARCHAR)
###human: What is the title of the song with a track less than 8 released on 3/22/57?
###assistant: SELECT song_title FROM table_name_53 WHERE track < 8 AND release_date = "3/22/57" |
###context:CREATE TABLE table_name_14 (song_title VARCHAR, writer_s_ VARCHAR)
###human: What song title was written by Kal Mann and Bernie Lowe?
###assistant: SELECT song_title FROM table_name_14 WHERE writer_s_ = "kal mann and bernie lowe" |
###context:CREATE TABLE table_name_27 (date VARCHAR, away_team VARCHAR)
###human: What date did the Away team, North Melbourne, play Geelong?
###assistant: SELECT date FROM table_name_27 WHERE away_team = "north melbourne" |
###context:CREATE TABLE table_name_64 (time_retired VARCHAR, driver VARCHAR)
###human: The driver Jacky Ickx had what time/retired?
###assistant: SELECT time_retired FROM table_name_64 WHERE driver = "jacky ickx" |
###context:CREATE TABLE table_name_58 (laps INTEGER, driver VARCHAR)
###human: What is the least number of laps for the driver Jo Siffert?
###assistant: SELECT MIN(laps) FROM table_name_58 WHERE driver = "jo siffert" |
###context:CREATE TABLE table_name_64 (laps INTEGER, constructor VARCHAR, grid VARCHAR)
###human: What is the least number of laps for the constructor Ferrari and where the grid number was less than 4?
###assistant: SELECT MIN(laps) FROM table_name_64 WHERE constructor = "ferrari" AND grid < 4 |
###context:CREATE TABLE table_name_87 (grid INTEGER, laps VARCHAR, time_retired VARCHAR)
###human: What is the total amount of grid when the laps amount was smaller than 68 and the time/retired was injection?
###assistant: SELECT SUM(grid) FROM table_name_87 WHERE laps < 68 AND time_retired = "injection" |
###context:CREATE TABLE table_name_66 (baby_gender VARCHAR, congresswoman VARCHAR)
###human: What is the gender of Congresswoman Jaime Herrera Beutler's baby?
###assistant: SELECT baby_gender FROM table_name_66 WHERE congresswoman = "jaime herrera beutler" |
###context:CREATE TABLE table_name_55 (date_of_delivery VARCHAR, baby_gender VARCHAR, congresswoman VARCHAR)
###human: What was the delivery date of Congresswoman Kirsten Gillibrand's baby boy?
###assistant: SELECT date_of_delivery FROM table_name_55 WHERE baby_gender = "boy" AND congresswoman = "kirsten gillibrand" |
###context:CREATE TABLE table_name_58 (player VARCHAR, club_province VARCHAR, date_of_birth__age_ VARCHAR)
###human: Which player on the Bulls has a 6 May 1978 birthday?
###assistant: SELECT player FROM table_name_58 WHERE club_province = "bulls" AND date_of_birth__age_ = "6 may 1978" |
###context:CREATE TABLE table_name_61 (player VARCHAR, caps VARCHAR, date_of_birth__age_ VARCHAR)
###human: Which player has a 1 February 1982 birthday and more than 16 caps?
###assistant: SELECT player FROM table_name_61 WHERE caps > 16 AND date_of_birth__age_ = "1 february 1982" |
###context:CREATE TABLE table_name_88 (tournament VARCHAR)
###human: Which tournament has a 2011 of 1r?
###assistant: SELECT tournament FROM table_name_88 WHERE 2011 = "1r" |
###context:CREATE TABLE table_name_51 (tournament VARCHAR)
###human: Which 2009 tournament was french open?
###assistant: SELECT 2009 FROM table_name_51 WHERE tournament = "french open" |
###context:CREATE TABLE table_name_86 (away_team VARCHAR)
###human: When the away team was collingwood, what was the away team score?
###assistant: SELECT away_team AS score FROM table_name_86 WHERE away_team = "collingwood" |
###context:CREATE TABLE table_name_72 (home_team VARCHAR, away_team VARCHAR)
###human: Who was Richmond's home team opponent?
###assistant: SELECT home_team FROM table_name_72 WHERE away_team = "richmond" |
###context:CREATE TABLE table_name_83 (venue VARCHAR, away_team VARCHAR)
###human: Where did Essendon play as the away team?
###assistant: SELECT venue FROM table_name_83 WHERE away_team = "essendon" |
###context:CREATE TABLE table_name_21 (first_appearance VARCHAR, character VARCHAR)
###human: Where did the character of Aiden Burn csi detective first appear?
###assistant: SELECT first_appearance FROM table_name_21 WHERE character = "aiden burn csi detective" |
###context:CREATE TABLE table_name_26 (ipsos_5_25_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)
###human: Which Ipsos 5/25/09 has a TNS-Sofres 5/28/09 of 20%?
###assistant: SELECT ipsos_5_25_09 FROM table_name_26 WHERE tns_sofres_5_28_09 = "20%" |
###context:CREATE TABLE table_name_82 (tns_sofres_5_26_09 VARCHAR, ipsos_5_25_09 VARCHAR)
###human: Which TNS-Sofres 5/26/09 has an Ipsos 5/25/09 of 1%?
###assistant: SELECT tns_sofres_5_26_09 FROM table_name_82 WHERE ipsos_5_25_09 = "1%" |
###context:CREATE TABLE table_name_52 (opinionway_5_18_09 VARCHAR, ipsos_5_16_09 VARCHAR)
###human: Which OpinionWay 5/18/09 has an Ipsos 5/16/09 of 11%?
###assistant: SELECT opinionway_5_18_09 FROM table_name_52 WHERE ipsos_5_16_09 = "11%" |
###context:CREATE TABLE table_name_72 (ipsos_5_16_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)
###human: Which Ipsos 5/16/09 has a TNS-Sofres 5/28/09 of 2.5%?
###assistant: SELECT ipsos_5_16_09 FROM table_name_72 WHERE tns_sofres_5_28_09 = "2.5%" |
###context:CREATE TABLE table_name_89 (csa_5_20_09 VARCHAR, ifop__la_croix_5_15_09 VARCHAR)
###human: Which Ipsos 5/16/09 has an Ifop- La Croix 5/15/09 of 26%?
###assistant: SELECT csa_5_20_09 FROM table_name_89 WHERE ifop__la_croix_5_15_09 = "26%" |
###context:CREATE TABLE table_name_96 (viavoice_5_15_09 VARCHAR, csa_5_14_09 VARCHAR, tns_sofres_5_28_09 VARCHAR)
###human: Which Viavoice 5/15/09 has a CSA 5/14/09 of 5%, and a TNS-Sofres 5/28/09 of 4.5%?
###assistant: SELECT viavoice_5_15_09 FROM table_name_96 WHERE csa_5_14_09 = "5%" AND tns_sofres_5_28_09 = "4.5%" |
###context:CREATE TABLE table_name_75 (driver VARCHAR, laps VARCHAR)
###human: What driver has 44 laps?
###assistant: SELECT driver FROM table_name_75 WHERE laps = 44 |
###context:CREATE TABLE table_name_87 (laps INTEGER, constructor VARCHAR, grid VARCHAR, time_retired VARCHAR)
###human: What is the average laps for a grid larger than 2, for a ferrari that got in an accident?
###assistant: SELECT AVG(laps) FROM table_name_87 WHERE grid > 2 AND time_retired = "accident" AND constructor = "ferrari" |
###context:CREATE TABLE table_name_2 (goal_difference INTEGER, draw VARCHAR, played VARCHAR)
###human: Name the average goal difference for draw of 7 and played more than 18
###assistant: SELECT AVG(goal_difference) FROM table_name_2 WHERE draw = 7 AND played > 18 |
###context:CREATE TABLE table_name_4 (goal_difference VARCHAR, goals_against VARCHAR, played VARCHAR)
###human: Tell me the totla number of goal difference for goals against of 30 and played less than 18
###assistant: SELECT COUNT(goal_difference) FROM table_name_4 WHERE goals_against = 30 AND played < 18 |
###context:CREATE TABLE table_name_47 (draw VARCHAR, played INTEGER)
###human: Name the total number of draw for played more than 18
###assistant: SELECT COUNT(draw) FROM table_name_47 WHERE played > 18 |
###context:CREATE TABLE table_name_10 (pba_team VARCHAR, college VARCHAR, pick VARCHAR)
###human: What PBA team is the player from Ateneo college and a pick of 17?
###assistant: SELECT pba_team FROM table_name_10 WHERE college = "ateneo" AND pick = 17 |
###context:CREATE TABLE table_name_15 (pick INTEGER, player VARCHAR)
###human: What is Mark Joseph Kong's pick?
###assistant: SELECT AVG(pick) FROM table_name_15 WHERE player = "mark joseph kong" |
###context:CREATE TABLE table_name_65 (pba_team VARCHAR, pick VARCHAR, college VARCHAR)
###human: What PBA team is the player from Ateneo college with a pick number smaller than 15 from?
###assistant: SELECT pba_team FROM table_name_65 WHERE pick < 15 AND college = "ateneo" |
###context:CREATE TABLE table_name_29 (pick VARCHAR, player VARCHAR)
###human: What pick number is Larry Fonacier?
###assistant: SELECT pick FROM table_name_29 WHERE player = "larry fonacier" |
###context:CREATE TABLE table_name_92 (rating INTEGER, rank__timeslot_ VARCHAR, rank__night_ VARCHAR)
###human: what is the rating when the rank (timeslot) is less than 3 and the rank (night) is less than 8?
###assistant: SELECT SUM(rating) FROM table_name_92 WHERE rank__timeslot_ < 3 AND rank__night_ < 8 |
###context:CREATE TABLE table_name_29 (rank__night_ INTEGER, rating VARCHAR, viewers__millions_ VARCHAR)
###human: what is the rank (night) when the rating is more than 4.3 and the viewers (millions) is more than 10.72?
###assistant: SELECT AVG(rank__night_) FROM table_name_29 WHERE rating > 4.3 AND viewers__millions_ > 10.72 |
###context:CREATE TABLE table_name_90 (date VARCHAR, venue VARCHAR)
###human: When was Windy Hill used as a venue?
###assistant: SELECT date FROM table_name_90 WHERE venue = "windy hill" |
###context:CREATE TABLE table_name_36 (home_team VARCHAR, venue VARCHAR)
###human: Which home team plays at VFL Park?
###assistant: SELECT home_team FROM table_name_36 WHERE venue = "vfl park" |
###context:CREATE TABLE table_name_2 (home_team VARCHAR, away_team VARCHAR)
###human: Which team plays against Footscray as the home team?
###assistant: SELECT home_team FROM table_name_2 WHERE away_team = "footscray" |
###context:CREATE TABLE table_name_99 (attendance INTEGER, date VARCHAR)
###human: What is the total audience on may 28?
###assistant: SELECT SUM(attendance) FROM table_name_99 WHERE date = "may 28" |
###context:CREATE TABLE table_name_93 (attendance INTEGER, score VARCHAR)
###human: What was the the total top attendance with a score of 0 – 4?
###assistant: SELECT MAX(attendance) FROM table_name_93 WHERE score = "0 – 4" |
###context:CREATE TABLE table_name_78 (allsvenskan_titles INTEGER, introduced VARCHAR, stars_symbolizes VARCHAR, club VARCHAR)
###human: How many allsvenskan titles did club aik have after its introduction after 2000, with stars symbolizing the number of swedish championship titles ?
###assistant: SELECT SUM(allsvenskan_titles) FROM table_name_78 WHERE stars_symbolizes = "number of swedish championship titles" AND club = "aik" AND introduced > 2000 |
###context:CREATE TABLE table_name_62 (swedish_championship_titles INTEGER, introduced INTEGER)
###human: What is the highest amount of swedish championship titles for the team that was introduced before 2006?
###assistant: SELECT MAX(swedish_championship_titles) FROM table_name_62 WHERE introduced < 2006 |
###context:CREATE TABLE table_name_75 (record VARCHAR, loss VARCHAR)
###human: What is the record loss of R. Springer?
###assistant: SELECT record FROM table_name_75 WHERE loss = "r. springer" |
###context:CREATE TABLE table_name_77 (streak VARCHAR, date VARCHAR)
###human: What was the streak on April 12?
###assistant: SELECT streak FROM table_name_77 WHERE date = "april 12" |
###context:CREATE TABLE table_name_19 (date VARCHAR, loss VARCHAR, opponent VARCHAR)
###human: What was the date of A. Benes loss to the Rockies?
###assistant: SELECT date FROM table_name_19 WHERE loss = "a. benes" AND opponent = "rockies" |
###context:CREATE TABLE table_name_45 (streak VARCHAR, attendance VARCHAR)
###human: Which streak had an attendance of 33,013?
###assistant: SELECT streak FROM table_name_45 WHERE attendance = "33,013" |
###context:CREATE TABLE table_name_91 (wicket_partnership VARCHAR, season VARCHAR)
###human: What was the partnership in the season of 1928
###assistant: SELECT wicket_partnership FROM table_name_91 WHERE season = "1928" |
###context:CREATE TABLE table_name_33 (earnings___ VARCHAR, player VARCHAR, wins VARCHAR)
###human: What are the earnings for jim colbert with under 4 wins?
###assistant: SELECT COUNT(earnings___) AS $__ FROM table_name_33 WHERE player = "jim colbert" AND wins < 4 |
###context:CREATE TABLE table_name_34 (events INTEGER, player VARCHAR)
###human: How many events for bob murphy?
###assistant: SELECT MAX(events) FROM table_name_34 WHERE player = "bob murphy" |
###context:CREATE TABLE table_name_62 (rank VARCHAR, player VARCHAR, wins VARCHAR)
###human: What is the rank for bob murphy with under 4 wins?
###assistant: SELECT COUNT(rank) FROM table_name_62 WHERE player = "bob murphy" AND wins < 4 |
###context:CREATE TABLE table_name_30 (apps INTEGER, goals VARCHAR, club VARCHAR, season VARCHAR)
###human: When the club is flamengo in the 2009 season, and they scored more than 0 goals, what's the sum of the Apps?
###assistant: SELECT SUM(apps) FROM table_name_30 WHERE club = "flamengo" AND season = "2009" AND goals > 0 |
###context:CREATE TABLE table_name_43 (club VARCHAR, season VARCHAR, goals VARCHAR, apps VARCHAR)
###human: In the 2010 season what club has 0 goals and more than 0 Apps?
###assistant: SELECT club FROM table_name_43 WHERE goals = 0 AND apps > 0 AND season = "2010" |
###context:CREATE TABLE table_name_36 (round VARCHAR, event VARCHAR)
###human: What Round is the Event cage rage 17?
###assistant: SELECT round FROM table_name_36 WHERE event = "cage rage 17" |
###context:CREATE TABLE table_name_70 (event VARCHAR, time VARCHAR)
###human: What Event is at the Time 1:16?
###assistant: SELECT event FROM table_name_70 WHERE time = "1:16" |
###context:CREATE TABLE table_name_93 (title VARCHAR, track INTEGER)
###human: What is the title of the track after 11?
###assistant: SELECT title FROM table_name_93 WHERE track > 11 |
###context:CREATE TABLE table_name_92 (original_album VARCHAR, performer VARCHAR)
###human: On the title feature brad mehldau as the performer, what is the original album?
###assistant: SELECT original_album FROM table_name_92 WHERE performer = "brad mehldau" |
###context:CREATE TABLE table_name_59 (track INTEGER, original_album VARCHAR)
###human: Which track has the original album turbulent indigo?
###assistant: SELECT AVG(track) FROM table_name_59 WHERE original_album = "turbulent indigo" |
###context:CREATE TABLE table_name_8 (player VARCHAR, position VARCHAR)
###human: What Utah Jazz player played Center?
###assistant: SELECT player FROM table_name_8 WHERE position = "center" |
###context:CREATE TABLE table_name_41 (nationality VARCHAR, years_for_jazz VARCHAR)
###human: What is the nationality of all Utah Jazz Players, that played 1987-88?
###assistant: SELECT nationality FROM table_name_41 WHERE years_for_jazz = "1987-88" |
###context:CREATE TABLE table_name_53 (nationality VARCHAR, years_for_jazz VARCHAR)
###human: What is the nationality of all Utah Jazz Players, that played 2011-present?
###assistant: SELECT nationality FROM table_name_53 WHERE years_for_jazz = "2011-present" |
###context:CREATE TABLE table_name_74 (player VARCHAR, position VARCHAR, school_club_team VARCHAR)
###human: What Utah Jazz Forward played for Southern Methodist?
###assistant: SELECT player FROM table_name_74 WHERE position = "forward" AND school_club_team = "southern methodist" |
###context:CREATE TABLE table_name_52 (years_for_jazz VARCHAR, school_club_team VARCHAR)
###human: What years did the Utah Jazz Player from Southern Methodist, Play?
###assistant: SELECT years_for_jazz FROM table_name_52 WHERE school_club_team = "southern methodist" |
###context:CREATE TABLE table_name_40 (home_team VARCHAR, venue VARCHAR)
###human: Who was the home team at MCG?
###assistant: SELECT home_team FROM table_name_40 WHERE venue = "mcg" |
###context:CREATE TABLE table_name_16 (away_team VARCHAR, home_team VARCHAR)
###human: Who was Carlton's away team opponents?
###assistant: SELECT away_team FROM table_name_16 WHERE home_team = "carlton" |
###context:CREATE TABLE table_name_67 (away_team VARCHAR, home_team VARCHAR)
###human: What was home team South Melbourne's opponents score?
###assistant: SELECT away_team AS score FROM table_name_67 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_72 (record VARCHAR, attendance VARCHAR)
###human: When the Attendance was 4,516, what was the Record?
###assistant: SELECT record FROM table_name_72 WHERE attendance = "4,516" |
###context:CREATE TABLE table_name_13 (attendance VARCHAR, score VARCHAR)
###human: When the Score was 4-10, what was the Attendance?
###assistant: SELECT attendance FROM table_name_13 WHERE score = "4-10" |
###context:CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR)
###human: With a Record of 9-24, what was the Score?
###assistant: SELECT score FROM table_name_40 WHERE record = "9-24" |
###context:CREATE TABLE table_name_16 (opponent VARCHAR, score VARCHAR)
###human: When the Score was 6-2, which Opponent was played?
###assistant: SELECT opponent FROM table_name_16 WHERE score = "6-2" |
###context:CREATE TABLE table_name_82 (date VARCHAR, attendance VARCHAR)
###human: On what Date was the Attendance 16,212?
###assistant: SELECT date FROM table_name_82 WHERE attendance = "16,212" |
###context:CREATE TABLE table_name_71 (attendance VARCHAR, opponent VARCHAR, date VARCHAR)
###human: What was the Attendance on May 12, when the New York Yankees were the Opponent?
###assistant: SELECT attendance FROM table_name_71 WHERE opponent = "new york yankees" AND date = "may 12" |
###context:CREATE TABLE table_name_39 (date VARCHAR, venue VARCHAR)
###human: Which Date has a Venue of junction oval?
###assistant: SELECT date FROM table_name_39 WHERE venue = "junction oval" |
###context:CREATE TABLE table_name_79 (crowd VARCHAR, home_team VARCHAR)
###human: Which total number of Crowd has a Home team of melbourne?
###assistant: SELECT COUNT(crowd) FROM table_name_79 WHERE home_team = "melbourne" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.