training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_67 (votes VARCHAR, seats INTEGER)
###human: What is the number of votes for the party which got more than 28 seats?
###assistant: SELECT COUNT(votes) FROM table_name_67 WHERE seats > 28 |
###context:CREATE TABLE table_name_86 (votes INTEGER, party VARCHAR)
###human: What is the number of votes for the Party of Labour?
###assistant: SELECT MIN(votes) FROM table_name_86 WHERE party = "labour" |
###context:CREATE TABLE table_name_15 (percentage VARCHAR, seats VARCHAR)
###human: What is the percentage of votes for the party that has Seats of 80?
###assistant: SELECT percentage FROM table_name_15 WHERE seats = 80 |
###context:CREATE TABLE table_name_18 (leader VARCHAR, votes VARCHAR, seats VARCHAR, percentage VARCHAR)
###human: Who is the leader of the party which has Seats less than 28, a percentage of votes 54.03, and more votes than 120,801?
###assistant: SELECT leader FROM table_name_18 WHERE seats < 28 AND percentage = "54.03" AND votes > 120 OFFSET 801 |
###context:CREATE TABLE table_name_83 (seats INTEGER, votes VARCHAR)
###human: Which highest number of Seats has votes of 244,867?
###assistant: SELECT MAX(seats) FROM table_name_83 WHERE votes = 244 OFFSET 867 |
###context:CREATE TABLE table_name_89 (date VARCHAR, home_team VARCHAR)
###human: What was the Date of the game of the Home team of melbourne?
###assistant: SELECT date FROM table_name_89 WHERE home_team = "melbourne" |
###context:CREATE TABLE table_name_29 (home_team VARCHAR, away_team VARCHAR)
###human: What was the score of the Home team in the game that had the Away team of south melbourne?
###assistant: SELECT home_team AS score FROM table_name_29 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_60 (away_team VARCHAR, home_team VARCHAR)
###human: what was the away team for the north melbourne home team?
###assistant: SELECT away_team FROM table_name_60 WHERE home_team = "north melbourne" |
###context:CREATE TABLE table_name_31 (away_team VARCHAR, home_team VARCHAR)
###human: what was the away team score in a game with north melbourne as home team?
###assistant: SELECT away_team AS score FROM table_name_31 WHERE home_team = "melbourne" |
###context:CREATE TABLE table_name_15 (away_team VARCHAR)
###human: what was the away team with st kilda as the away team?
###assistant: SELECT away_team AS score FROM table_name_15 WHERE away_team = "st kilda" |
###context:CREATE TABLE table_name_25 (yards INTEGER, solo VARCHAR, sack VARCHAR)
###human: How many yards for the player with 1 solo tackle and over 0 sacks?
###assistant: SELECT MAX(yards) FROM table_name_25 WHERE solo = 1 AND sack > 0 |
###context:CREATE TABLE table_name_34 (hand VARCHAR)
###human: What does a hand of Theoretical return have as a 3 credit?
###assistant: SELECT 3 AS _credits FROM table_name_34 WHERE hand = "theoretical return" |
###context:CREATE TABLE table_name_58 (hand VARCHAR)
###human: What does full house have as a 5 credits?
###assistant: SELECT 5 AS _credits FROM table_name_58 WHERE hand = "full house" |
###context:CREATE TABLE table_name_28 (hand VARCHAR)
###human: What would be the 4 credits result of a straight?
###assistant: SELECT 4 AS _credits FROM table_name_28 WHERE hand = "straight" |
###context:CREATE TABLE table_name_96 (home VARCHAR, score VARCHAR)
###human: Who was the home team at the game that had a score of 2 β 2?
###assistant: SELECT home FROM table_name_96 WHERE score = "2 β 2" |
###context:CREATE TABLE table_name_36 (date VARCHAR, visitor VARCHAR, home VARCHAR)
###human: What was the date of the game when Colorado was the visiting team and Chicago was the home team?
###assistant: SELECT date FROM table_name_36 WHERE visitor = "colorado" AND home = "chicago" |
###context:CREATE TABLE table_name_34 (date VARCHAR, record VARCHAR)
###human: What was the date of the game when the Avalanche had a record of 8β3β1?
###assistant: SELECT date FROM table_name_34 WHERE record = "8β3β1" |
###context:CREATE TABLE table_name_3 (opponents VARCHAR, wicket_partnership VARCHAR)
###human: Who was the opponents of the 5th Wicket Partnership?
###assistant: SELECT opponents FROM table_name_3 WHERE wicket_partnership = "5th" |
###context:CREATE TABLE table_name_70 (season VARCHAR, competition VARCHAR)
###human: In which season was there a competition in the Champions League?
###assistant: SELECT season FROM table_name_70 WHERE competition = "champions league" |
###context:CREATE TABLE table_name_68 (score VARCHAR, club VARCHAR)
###human: What scores did the RSC Anderlecht club have?
###assistant: SELECT score FROM table_name_68 WHERE club = "rsc anderlecht" |
###context:CREATE TABLE table_name_42 (opening_week_nett_gross INTEGER, rank VARCHAR, studio_s_ VARCHAR)
###human: What is the highest opening week net gross of the movie ranked higher than 5 from Reliance Entertainment?
###assistant: SELECT MAX(opening_week_nett_gross) FROM table_name_42 WHERE rank < 5 AND studio_s_ = "reliance entertainment" |
###context:CREATE TABLE table_name_86 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
###human: Tell me the total number of Grid for Bob Evans and Laps less than 68
###assistant: SELECT COUNT(grid) FROM table_name_86 WHERE driver = "bob evans" AND laps < 68 |
###context:CREATE TABLE table_name_52 (constructor VARCHAR, driver VARCHAR, laps VARCHAR, grid VARCHAR)
###human: Tell me constructor for Laps less than 17 and Grid more than 11 for alan jones
###assistant: SELECT constructor FROM table_name_52 WHERE laps < 17 AND grid > 11 AND driver = "alan jones" |
###context:CREATE TABLE table_name_7 (laps INTEGER, grid VARCHAR, driver VARCHAR)
###human: I want the sum of Laps with Grid less than 11 for jean-pierre jarier
###assistant: SELECT SUM(laps) FROM table_name_7 WHERE grid < 11 AND driver = "jean-pierre jarier" |
###context:CREATE TABLE table_name_39 (constructor VARCHAR, time_retired VARCHAR, grid VARCHAR)
###human: I want the constructor for brakes and grid less than 14
###assistant: SELECT constructor FROM table_name_39 WHERE time_retired = "brakes" AND grid < 14 |
###context:CREATE TABLE table_name_22 (episodes VARCHAR, season_no VARCHAR)
###human: How may episodes did season 1 have?
###assistant: SELECT COUNT(episodes) FROM table_name_22 WHERE season_no = 1 |
###context:CREATE TABLE table_name_41 (chassis VARCHAR, entrant VARCHAR, driver VARCHAR)
###human: Which chassis did Aguri Suzuki drive with an entrant of Larrousse F1?
###assistant: SELECT chassis FROM table_name_41 WHERE entrant = "larrousse f1" AND driver = "aguri suzuki" |
###context:CREATE TABLE table_name_70 (entrant VARCHAR, rounds VARCHAR, constructor VARCHAR)
###human: What was the entrant in round 16 were Ferrari was the constructor?
###assistant: SELECT entrant FROM table_name_70 WHERE rounds = "16" AND constructor = "ferrari" |
###context:CREATE TABLE table_name_71 (country VARCHAR, icao VARCHAR)
###human: Tell me the country with ICAO of zgha
###assistant: SELECT country FROM table_name_71 WHERE icao = "zgha" |
###context:CREATE TABLE table_name_51 (icao VARCHAR, city VARCHAR)
###human: I want the ICAO for city of xi'an
###assistant: SELECT icao FROM table_name_51 WHERE city = "xi'an" |
###context:CREATE TABLE table_name_32 (iata VARCHAR, icao VARCHAR)
###human: I want the IATA for ICAO of zgkl
###assistant: SELECT iata FROM table_name_32 WHERE icao = "zgkl" |
###context:CREATE TABLE table_name_28 (region VARCHAR, icao VARCHAR)
###human: I want the region for ICAO of vmmc
###assistant: SELECT region FROM table_name_28 WHERE icao = "vmmc" |
###context:CREATE TABLE table_name_29 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###human: What is the high grid number for a Time/Retired of + 3 laps, and a Laps smaller than 57?
###assistant: SELECT MAX(grid) FROM table_name_29 WHERE time_retired = "+ 3 laps" AND laps < 57 |
###context:CREATE TABLE table_name_66 (constructor VARCHAR, time_retired VARCHAR)
###human: Who built the car that has a Time/Retired of 1:36:38.887?
###assistant: SELECT constructor FROM table_name_66 WHERE time_retired = "1:36:38.887" |
###context:CREATE TABLE table_name_99 (leading_scorer VARCHAR, date VARCHAR)
###human: Who was the leading scorer on 9 January 2008?
###assistant: SELECT leading_scorer FROM table_name_99 WHERE date = "9 january 2008" |
###context:CREATE TABLE table_name_2 (played INTEGER, club VARCHAR, wins VARCHAR)
###human: What is the number played for the Barcelona B club, with wins under 11?
###assistant: SELECT SUM(played) FROM table_name_2 WHERE club = "barcelona b" AND wins < 11 |
###context:CREATE TABLE table_name_29 (draws INTEGER, points VARCHAR, wins VARCHAR)
###human: What was the biggest draws, for wins under 4, and points of 20-18?
###assistant: SELECT MAX(draws) FROM table_name_29 WHERE points = "20-18" AND wins < 4 |
###context:CREATE TABLE table_name_68 (goals_against INTEGER, goals_for VARCHAR, goal_difference VARCHAR)
###human: What is the average of goals against, where overall goals are more than 35 and the goal difference is 20?
###assistant: SELECT AVG(goals_against) FROM table_name_68 WHERE goals_for > 35 AND goal_difference = 20 |
###context:CREATE TABLE table_name_41 (crowd INTEGER, away_team VARCHAR)
###human: What is the Crowd number for the Away team of Richmond?
###assistant: SELECT SUM(crowd) FROM table_name_41 WHERE away_team = "richmond" |
###context:CREATE TABLE table_name_31 (home_team VARCHAR, venue VARCHAR)
###human: What is the Home team score for the Venue named Glenferrie Oval?
###assistant: SELECT home_team AS score FROM table_name_31 WHERE venue = "glenferrie oval" |
###context:CREATE TABLE table_name_96 (crowd INTEGER, venue VARCHAR)
###human: What is the smallest Crowd number for the Venue named Princes Park?
###assistant: SELECT MIN(crowd) FROM table_name_96 WHERE venue = "princes park" |
###context:CREATE TABLE table_name_72 (notes VARCHAR, result VARCHAR, method VARCHAR, event VARCHAR)
###human: Tell me the notes with method of points and event of adcc 2001 absolute with result of loss
###assistant: SELECT notes FROM table_name_72 WHERE method = "points" AND event = "adcc 2001 absolute" AND result = "loss" |
###context:CREATE TABLE table_name_59 (date INTEGER, notes VARCHAR, result VARCHAR, method VARCHAR)
###human: Tell me the lowest date for result of win and method of points with notes of opening round
###assistant: SELECT MIN(date) FROM table_name_59 WHERE result = "win" AND method = "points" AND notes = "opening round" |
###context:CREATE TABLE table_name_65 (result VARCHAR, notes VARCHAR, event VARCHAR)
###human: Name the result with notes of quarter-finals and event of adcc 2001 absolute
###assistant: SELECT result FROM table_name_65 WHERE notes = "quarter-finals" AND event = "adcc 2001 absolute" |
###context:CREATE TABLE table_name_16 (event VARCHAR, method VARCHAR, notes VARCHAR)
###human: I want the event for method of points with notes of opening round
###assistant: SELECT event FROM table_name_16 WHERE method = "points" AND notes = "opening round" |
###context:CREATE TABLE table_name_71 (wins VARCHAR, events VARCHAR, rank VARCHAR)
###human: How many win total which has the rank smaller than 3 and events smaller than 22
###assistant: SELECT COUNT(wins) FROM table_name_71 WHERE events < 22 AND rank < 3 |
###context:CREATE TABLE table_name_5 (denomination VARCHAR, location VARCHAR)
###human: What denomination is mt lawley?
###assistant: SELECT denomination FROM table_name_5 WHERE location = "mt lawley" |
###context:CREATE TABLE table_name_84 (day_boarding VARCHAR, location VARCHAR)
###human: Is mt lawley day or boarding?
###assistant: SELECT day_boarding FROM table_name_84 WHERE location = "mt lawley" |
###context:CREATE TABLE table_name_6 (founded INTEGER, location VARCHAR)
###human: What is the average year founded for schools in claremont?
###assistant: SELECT AVG(founded) FROM table_name_6 WHERE location = "claremont" |
###context:CREATE TABLE table_name_32 (away_team VARCHAR, home_team VARCHAR)
###human: When north melbourne was the home team who was the Away team?
###assistant: SELECT away_team FROM table_name_32 WHERE home_team = "north melbourne" |
###context:CREATE TABLE table_name_88 (away_team VARCHAR, home_team VARCHAR)
###human: When collingwood played as the home team who was the away team?
###assistant: SELECT away_team FROM table_name_88 WHERE home_team = "collingwood" |
###context:CREATE TABLE table_name_52 (home_team VARCHAR, away_team VARCHAR)
###human: When the Away team was south melbourne what was the home team?
###assistant: SELECT home_team FROM table_name_52 WHERE away_team = "south melbourne" |
###context:CREATE TABLE table_name_24 (lowest INTEGER, average INTEGER)
###human: What is the lowest attendance for a stadium that has an average smaller than 307?
###assistant: SELECT AVG(lowest) FROM table_name_24 WHERE average < 307 |
###context:CREATE TABLE table_name_64 (away_team VARCHAR, home_team VARCHAR)
###human: When the home team was South Melbourne, what did the away team score?
###assistant: SELECT away_team AS score FROM table_name_64 WHERE home_team = "south melbourne" |
###context:CREATE TABLE table_name_15 (rank INTEGER, gold VARCHAR, bronze VARCHAR, total VARCHAR)
###human: What is the average rank of a country with less than 13 bronze medals, a total of 11 medals, and more than 4 gold?
###assistant: SELECT AVG(rank) FROM table_name_15 WHERE bronze < 13 AND total = 11 AND gold > 4 |
###context:CREATE TABLE table_name_58 (bronze INTEGER, gold VARCHAR, silver VARCHAR, total VARCHAR)
###human: What is the lowest bronze a team with 9 silvers, a total larger than 13, and more than 13 gold medals has?
###assistant: SELECT MIN(bronze) FROM table_name_58 WHERE silver = 9 AND total > 13 AND gold > 13 |
###context:CREATE TABLE table_name_6 (silver INTEGER, total INTEGER)
###human: What is the highest number of silvers a team with more than 95 total medals has?
###assistant: SELECT MAX(silver) FROM table_name_6 WHERE total > 95 |
###context:CREATE TABLE table_name_96 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
###human: What is the highest total medals a team with less than 15 gold, less than 5 bronze, and a rank larger than 10 has?
###assistant: SELECT MAX(total) FROM table_name_96 WHERE gold < 15 AND bronze < 5 AND rank > 10 |
###context:CREATE TABLE table_name_95 (home_team VARCHAR, venue VARCHAR)
###human: Who is the home team who plays at Glenferrie Oval?
###assistant: SELECT home_team FROM table_name_95 WHERE venue = "glenferrie oval" |
###context:CREATE TABLE table_name_29 (away_team VARCHAR)
###human: What did the away team Carlton score?
###assistant: SELECT away_team AS score FROM table_name_29 WHERE away_team = "carlton" |
###context:CREATE TABLE table_name_58 (position VARCHAR, player VARCHAR, tries VARCHAR, points VARCHAR)
###human: What position did Lee Gilmour play while having more than 4 Tries and 20 points?
###assistant: SELECT position FROM table_name_58 WHERE tries > 4 AND points = 20 AND player = "lee gilmour" |
###context:CREATE TABLE table_name_29 (host VARCHAR, ratings VARCHAR)
###human: Who was the host that garnered ratings of 9.4/27?
###assistant: SELECT host FROM table_name_29 WHERE ratings = "9.4/27" |
###context:CREATE TABLE table_name_29 (lap_by_lap VARCHAR, year VARCHAR, ratings VARCHAR)
###human: Who was the lap-by-lap broadcaster before 1994 who garnered ratings of 8.0/21?
###assistant: SELECT lap_by_lap FROM table_name_29 WHERE year < 1994 AND ratings = "8.0/21" |
###context:CREATE TABLE table_name_30 (host VARCHAR, ratings VARCHAR)
###human: Who was the host that garnered ratings of 9.6/26?
###assistant: SELECT host FROM table_name_30 WHERE ratings = "9.6/26" |
###context:CREATE TABLE table_name_83 (ratings VARCHAR, host VARCHAR, viewers VARCHAR)
###human: What were the ratings for host Chris Economaki who had 12.3 million viewers?
###assistant: SELECT ratings FROM table_name_83 WHERE host = "chris economaki" AND viewers = "12.3 million" |
###context:CREATE TABLE table_name_74 (network VARCHAR, host VARCHAR, viewers VARCHAR)
###human: Who was the network who had Ken Squier as a host and 13.9 million viewers?
###assistant: SELECT network FROM table_name_74 WHERE host = "ken squier" AND viewers = "13.9 million" |
###context:CREATE TABLE table_name_1 (attendance INTEGER, date VARCHAR)
###human: What was the lowest Attendance for Games played on the Date of February 5?
###assistant: SELECT MIN(attendance) FROM table_name_1 WHERE date = "february 5" |
###context:CREATE TABLE table_name_61 (attendance INTEGER, visitor VARCHAR)
###human: What was the total Attendance for Games while Chicago was the visiting Team?
###assistant: SELECT SUM(attendance) FROM table_name_61 WHERE visitor = "chicago" |
###context:CREATE TABLE table_name_30 (pole_position VARCHAR, fastest_lap VARCHAR, round VARCHAR)
###human: What pole position was Rubens Barrichello when he had the fastest lap and a round larger than 11?
###assistant: SELECT pole_position FROM table_name_30 WHERE fastest_lap = "rubens barrichello" AND round > 11 |
###context:CREATE TABLE table_name_58 (grand_prix VARCHAR, round VARCHAR, winning_driver VARCHAR, pole_position VARCHAR)
###human: Which Grand Prix did David Coulthard win with Michael Schumacher in the pole position before round 9?
###assistant: SELECT grand_prix FROM table_name_58 WHERE winning_driver = "david coulthard" AND pole_position = "michael schumacher" AND round < 9 |
###context:CREATE TABLE table_name_32 (fastest_lap VARCHAR, pole_position VARCHAR, winning_driver VARCHAR)
###human: Who had the fastest lap when David Coulthard had pole position and Michael Schumacher as a winning driver.
###assistant: SELECT fastest_lap FROM table_name_32 WHERE pole_position = "david coulthard" AND winning_driver = "michael schumacher" |
###context:CREATE TABLE table_name_36 (fastest_lap VARCHAR, grand_prix VARCHAR)
###human: Who had the fastest lap at the Australian Grand Prix?
###assistant: SELECT fastest_lap FROM table_name_36 WHERE grand_prix = "australian grand prix" |
###context:CREATE TABLE table_name_46 (team_2 VARCHAR, team_1 VARCHAR)
###human: Tell me the team 2 for team 1 being la nuova piovese (veneto a)
###assistant: SELECT team_2 FROM table_name_46 WHERE team_1 = "la nuova piovese (veneto a)" |
###context:CREATE TABLE table_name_8 (team_1 VARCHAR, team_2 VARCHAR)
###human: Tell me the team 1 for team 2 being civitavecchiese (latium a)
###assistant: SELECT team_1 FROM table_name_8 WHERE team_2 = "civitavecchiese (latium a)" |
###context:CREATE TABLE table_name_55 (team_1 VARCHAR)
###human: Tell me the 1st leg for team being budoni (Sardinia)
###assistant: SELECT 1 AS st_leg FROM table_name_55 WHERE team_1 = "budoni (sardinia)" |
###context:CREATE TABLE table_name_88 (attendance VARCHAR, location VARCHAR, time VARCHAR)
###human: How many attended the game at Busch Stadium (ii) when the time was 3:54?
###assistant: SELECT attendance FROM table_name_88 WHERE location = "busch stadium (ii)" AND time = "3:54" |
###context:CREATE TABLE table_name_56 (date VARCHAR, game INTEGER)
###human: What dates were the games after game 6 played?
###assistant: SELECT date FROM table_name_56 WHERE game > 6 |
###context:CREATE TABLE table_name_9 (Id VARCHAR)
###human: What is the 1977 value that had Grand Slam Tournaments in 1972?
###assistant: SELECT 1977 FROM table_name_9 WHERE 1972 = "grand slam tournaments" |
###context:CREATE TABLE table_name_13 (tournament VARCHAR)
###human: What is the tournament that had Grand Slam Tournaments in 1976?
###assistant: SELECT tournament FROM table_name_13 WHERE 1976 = "grand slam tournaments" |
###context:CREATE TABLE table_name_35 (tournament VARCHAR)
###human: What is the 1976 value of the Australian Open?
###assistant: SELECT 1976 FROM table_name_35 WHERE tournament = "australian open" |
###context:CREATE TABLE table_name_65 (Id VARCHAR)
###human: What is the 1977 value that has a 1974 a value?
###assistant: SELECT 1977 FROM table_name_65 WHERE 1974 = "a" |
###context:CREATE TABLE table_name_87 (week VARCHAR, record VARCHAR)
###human: Which week led to a record of 4-10?
###assistant: SELECT week FROM table_name_87 WHERE record = "4-10" |
###context:CREATE TABLE table_name_91 (week VARCHAR, opponent VARCHAR)
###human: Which week was the game against the San Diego Chargers?
###assistant: SELECT week FROM table_name_91 WHERE opponent = "san diego chargers" |
###context:CREATE TABLE table_name_93 (height VARCHAR, hometown VARCHAR)
###human: What is the height of the player who is from Huntington, WV?
###assistant: SELECT height FROM table_name_93 WHERE hometown = "huntington, wv" |
###context:CREATE TABLE table_name_45 (school VARCHAR, hometown VARCHAR)
###human: What school is the player who has a hometown of Chicago, IL from?
###assistant: SELECT school FROM table_name_45 WHERE hometown = "chicago, il" |
###context:CREATE TABLE table_name_67 (college VARCHAR, school VARCHAR)
###human: Which college is the player from South Medford High School headed to?
###assistant: SELECT college FROM table_name_67 WHERE school = "south medford high school" |
###context:CREATE TABLE table_name_68 (school VARCHAR, college VARCHAR)
###human: Which school is the player who is headed to Duke from?
###assistant: SELECT school FROM table_name_68 WHERE college = "duke" |
###context:CREATE TABLE table_name_83 (hometown VARCHAR, college VARCHAR)
###human: What is the hometown of the player who is headed to Duke?
###assistant: SELECT hometown FROM table_name_83 WHERE college = "duke" |
###context:CREATE TABLE table_name_83 (louise VARCHAR, dainty_june VARCHAR)
###human: Who was Louise when Tracy Venner was Dainty June?
###assistant: SELECT louise FROM table_name_83 WHERE dainty_june = "tracy venner" |
###context:CREATE TABLE table_name_5 (dainty_june VARCHAR, louise VARCHAR)
###human: Who was Dainty June when Tammy Blanchard was Louise?
###assistant: SELECT dainty_june FROM table_name_5 WHERE louise = "tammy blanchard" |
###context:CREATE TABLE table_name_27 (dainty_june VARCHAR, herbie VARCHAR)
###human: Who was Dainty June when Boyd Gaines was Herbie?
###assistant: SELECT dainty_june FROM table_name_27 WHERE herbie = "boyd gaines" |
###context:CREATE TABLE table_name_53 (productions VARCHAR, rose VARCHAR, herbie VARCHAR)
###human: What production had Angela Lansbury as Rose and Barrie Ingham as Herbie?
###assistant: SELECT productions FROM table_name_53 WHERE rose = "angela lansbury" AND herbie = "barrie ingham" |
###context:CREATE TABLE table_name_60 (rose VARCHAR, productions VARCHAR)
###human: Who was rose in the 1975 Broadway Revival?
###assistant: SELECT rose FROM table_name_60 WHERE productions = "1975 broadway revival" |
###context:CREATE TABLE table_name_96 (productions VARCHAR, herbie VARCHAR)
###human: Which production had Rex Robbins as Herbie?
###assistant: SELECT productions FROM table_name_96 WHERE herbie = "rex robbins" |
###context:CREATE TABLE table_name_50 (date VARCHAR, venue VARCHAR)
###human: On what date was the venue VFL Park?
###assistant: SELECT date FROM table_name_50 WHERE venue = "vfl park" |
###context:CREATE TABLE table_name_92 (date VARCHAR, home_team VARCHAR)
###human: What date did Footscray play at home?
###assistant: SELECT date FROM table_name_92 WHERE home_team = "footscray" |
###context:CREATE TABLE table_name_10 (home_team VARCHAR, away_team VARCHAR)
###human: What did the home team score when they played the away team of Geelong?
###assistant: SELECT home_team AS score FROM table_name_10 WHERE away_team = "geelong" |
###context:CREATE TABLE table_name_5 (pick INTEGER, team VARCHAR)
###human: What was the lowest pick number for the Boston Celtics?
###assistant: SELECT MIN(pick) FROM table_name_5 WHERE team = "boston celtics" |
###context:CREATE TABLE table_name_98 (visitor VARCHAR, date VARCHAR)
###human: Who is the visitor team on 23 November 2007?
###assistant: SELECT visitor FROM table_name_98 WHERE date = "23 november 2007" |
###context:CREATE TABLE table_name_61 (leading_scorer VARCHAR, date VARCHAR)
###human: Who is the leading scorer of the game on 20 November 2007?
###assistant: SELECT leading_scorer FROM table_name_61 WHERE date = "20 november 2007" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.