training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_85 (opponent VARCHAR, round VARCHAR) ###human: Which opponent had round 1? ###assistant: SELECT opponent FROM table_name_85 WHERE round = "1"
###context:CREATE TABLE table_name_52 (date VARCHAR, ground VARCHAR, opponent VARCHAR, tournament VARCHAR) ###human: Which date's opponent was Dender when the tournament was in the Jupiler League and the ground was a? ###assistant: SELECT date FROM table_name_52 WHERE opponent = "dender" AND tournament = "jupiler league" AND ground = "a"
###context:CREATE TABLE table_name_17 (ground VARCHAR, round VARCHAR) ###human: Which ground's round was 33? ###assistant: SELECT ground FROM table_name_17 WHERE round = "33"
###context:CREATE TABLE table_name_68 (competition VARCHAR, final_position___round VARCHAR) ###human: Which competition had a final position/round of 2? ###assistant: SELECT competition FROM table_name_68 WHERE final_position___round = "2"
###context:CREATE TABLE table_name_72 (first_match VARCHAR, final_position___round VARCHAR) ###human: Which first match had a final position/round in the third qualifying round? ###assistant: SELECT first_match FROM table_name_72 WHERE final_position___round = "third qualifying round"
###context:CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, total VARCHAR) ###human: What is the lowest number of bronze medals for nations with over 6 total and 2 golds? ###assistant: SELECT MIN(bronze) FROM table_name_71 WHERE gold = 2 AND total > 6
###context:CREATE TABLE table_name_33 (silver VARCHAR, sport VARCHAR, gold VARCHAR) ###human: What is the total number of silver medals for karate athletes with over 2 golds? ###assistant: SELECT COUNT(silver) FROM table_name_33 WHERE sport = "karate" AND gold > 2
###context:CREATE TABLE table_name_20 (Id VARCHAR) ###human: What is the 2009 value with a 1r in 2010 and A in 2011? ###assistant: SELECT 2009 FROM table_name_20 WHERE 2010 = "1r" AND 2011 = "a"
###context:CREATE TABLE table_name_79 (Id VARCHAR) ###human: What is the 2009 value with a 2010 A value? ###assistant: SELECT 2009 FROM table_name_79 WHERE 2010 = "a"
###context:CREATE TABLE table_name_50 (Id VARCHAR) ###human: What is the 2010 value with A in 2008, A in 2011, and 2r in 2012? ###assistant: SELECT 2010 FROM table_name_50 WHERE 2008 = "a" AND 2011 = "a" AND 2012 = "2r"
###context:CREATE TABLE table_name_86 (attendance INTEGER, date VARCHAR) ###human: What is the average attendance on april 24? ###assistant: SELECT AVG(attendance) FROM table_name_86 WHERE date = "april 24"
###context:CREATE TABLE table_name_85 (away_team VARCHAR) ###human: What was the score of the away team when Richmond played? ###assistant: SELECT away_team AS score FROM table_name_85 WHERE away_team = "richmond"
###context:CREATE TABLE table_name_47 (constructor VARCHAR, laps VARCHAR, grid VARCHAR) ###human: What company was Constructor when there were 16 laps and grid was 9? ###assistant: SELECT constructor FROM table_name_47 WHERE laps = 16 AND grid = 9
###context:CREATE TABLE table_name_99 (time_retired VARCHAR, constructor VARCHAR, laps VARCHAR) ###human: What is the Time/Retired when lotus - ford was constructor and the laps were less than 17? ###assistant: SELECT time_retired FROM table_name_99 WHERE constructor = "lotus - ford" AND laps < 17
###context:CREATE TABLE table_name_25 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ###human: What is the number of the grid when there was a Time/Retired of engine and less than 9 laps? ###assistant: SELECT SUM(grid) FROM table_name_25 WHERE time_retired = "engine" AND laps < 9
###context:CREATE TABLE table_name_34 (attendance INTEGER, venue VARCHAR, result VARCHAR) ###human: what was the attendance for a home venue and a w 3-0 result? ###assistant: SELECT AVG(attendance) FROM table_name_34 WHERE venue = "home" AND result = "w 3-0"
###context:CREATE TABLE table_name_99 (attendance INTEGER, venue VARCHAR, result VARCHAR) ###human: what was the attendance at the home venue with result w 3-1? ###assistant: SELECT MAX(attendance) FROM table_name_99 WHERE venue = "home" AND result = "w 3-1"
###context:CREATE TABLE table_name_77 (venue VARCHAR, opponent VARCHAR) ###human: where did rochdale play as opponent? ###assistant: SELECT venue FROM table_name_77 WHERE opponent = "rochdale"
###context:CREATE TABLE table_name_14 (away_team VARCHAR, stadium VARCHAR) ###human: Which team was hosted at Adelaide Oval? ###assistant: SELECT away_team FROM table_name_14 WHERE stadium = "adelaide oval"
###context:CREATE TABLE table_name_29 (year VARCHAR, report VARCHAR) ###human: When was a report not held? ###assistant: SELECT year FROM table_name_29 WHERE report = "not held"
###context:CREATE TABLE table_name_77 (visitor VARCHAR, home VARCHAR) ###human: Who was the visitor when vancouver was at home? ###assistant: SELECT visitor FROM table_name_77 WHERE home = "vancouver"
###context:CREATE TABLE table_name_96 (decision VARCHAR, visitor VARCHAR) ###human: What is the decision when new jersey was away? ###assistant: SELECT decision FROM table_name_96 WHERE visitor = "new jersey"
###context:CREATE TABLE table_name_90 (scale VARCHAR, name VARCHAR) ###human: What is URA Index scale? ###assistant: SELECT scale FROM table_name_90 WHERE name = "ura index"
###context:CREATE TABLE table_name_8 (scale VARCHAR, word__number VARCHAR, name VARCHAR) ###human: What is the scale of sv_health with a word number smaller than 4? ###assistant: SELECT scale FROM table_name_8 WHERE word__number < 4 AND name = "sv_health"
###context:CREATE TABLE table_name_55 (team VARCHAR, sport VARCHAR, nation_of_citizenship VARCHAR) ###human: Which tennis team is from the United States? ###assistant: SELECT team FROM table_name_55 WHERE sport = "tennis" AND nation_of_citizenship = "united states"
###context:CREATE TABLE table_name_12 (nation_of_citizenship VARCHAR, year_of_award INTEGER) ###human: What is the nation of citizenship for athletes later than 2011 year of award? ###assistant: SELECT nation_of_citizenship FROM table_name_12 WHERE year_of_award > 2011
###context:CREATE TABLE table_name_62 (constructor VARCHAR, grid VARCHAR, driver VARCHAR) ###human: What Constructor did Michael Schumacher have with a Grid smaller than 5? ###assistant: SELECT constructor FROM table_name_62 WHERE grid < 5 AND driver = "michael schumacher"
###context:CREATE TABLE table_name_66 (driver VARCHAR, time_retired VARCHAR) ###human: Which driver has a Time/Retired of +1 lap? ###assistant: SELECT driver FROM table_name_66 WHERE time_retired = "+1 lap"
###context:CREATE TABLE table_name_38 (apparatus VARCHAR, score_final INTEGER) ###human: Which apparatus had a final score that was more than 17.75? ###assistant: SELECT apparatus FROM table_name_38 WHERE score_final > 17.75
###context:CREATE TABLE table_name_46 (competition_description VARCHAR, apparatus VARCHAR) ###human: Which competition description's apparatus was ribbon? ###assistant: SELECT competition_description FROM table_name_46 WHERE apparatus = "ribbon"
###context:CREATE TABLE table_name_94 (score_qualifying VARCHAR, apparatus VARCHAR) ###human: Which Qualifying score had hoop as an apparatus? ###assistant: SELECT score_qualifying FROM table_name_94 WHERE apparatus = "hoop"
###context:CREATE TABLE table_name_7 (score_qualifying VARCHAR, score_final VARCHAR) ###human: What is the sum of qualifying scores when the final score is 16.625? ###assistant: SELECT COUNT(score_qualifying) FROM table_name_7 WHERE score_final = 16.625
###context:CREATE TABLE table_name_20 (date VARCHAR, venue VARCHAR) ###human: When was the game played at Princes Park? ###assistant: SELECT date FROM table_name_20 WHERE venue = "princes park"
###context:CREATE TABLE table_name_88 (home_team VARCHAR) ###human: What did Melbourne score as the home team? ###assistant: SELECT home_team AS score FROM table_name_88 WHERE home_team = "melbourne"
###context:CREATE TABLE table_name_40 (position VARCHAR, high_school VARCHAR) ###human: What position does the player from malvern prep play? ###assistant: SELECT position FROM table_name_40 WHERE high_school = "malvern prep"
###context:CREATE TABLE table_name_44 (team VARCHAR, points VARCHAR, games VARCHAR) ###human: What team scored more than 572 points and had more than 29 games? ###assistant: SELECT team FROM table_name_44 WHERE points > 572 AND games > 29
###context:CREATE TABLE table_name_88 (games INTEGER, rank VARCHAR, name VARCHAR) ###human: What is the least amount of games for Luis scola with a rank greater than 1? ###assistant: SELECT MIN(games) FROM table_name_88 WHERE rank > 1 AND name = "luis scola"
###context:CREATE TABLE table_name_48 (identity VARCHAR, builder VARCHAR) ###human: What is the identity of the brighton works built train? ###assistant: SELECT identity FROM table_name_48 WHERE builder = "brighton works"
###context:CREATE TABLE table_name_76 (attendance VARCHAR, date VARCHAR) ###human: What was the attendance on May 13? ###assistant: SELECT attendance FROM table_name_76 WHERE date = "may 13"
###context:CREATE TABLE table_name_84 (quantity INTEGER, ptrd_nos VARCHAR) ###human: What is the highest Quantity for PTRD Nos. 3, 15? ###assistant: SELECT MAX(quantity) FROM table_name_84 WHERE ptrd_nos = "3, 15"
###context:CREATE TABLE table_name_85 (hosted VARCHAR, average VARCHAR) ###human: How many were hosted whene the average attendance was 27,638? ###assistant: SELECT COUNT(hosted) FROM table_name_85 WHERE average = 27 OFFSET 638
###context:CREATE TABLE table_name_87 (last_year INTEGER, hosted INTEGER) ###human: What is the lowest attendance last year when more than 176 were hosted? ###assistant: SELECT MIN(last_year) FROM table_name_87 WHERE hosted > 176
###context:CREATE TABLE table_name_49 (Id VARCHAR) ###human: How many 1990 growth numbers had less than 10,522 in 1970? ###assistant: SELECT COUNT(1990) FROM table_name_49 WHERE 1970 < 10 OFFSET 522
###context:CREATE TABLE table_name_61 (Id VARCHAR) ###human: Which is the lowest 1980 growth that had 2,610 in 1970? ###assistant: SELECT MIN(1980) FROM table_name_61 WHERE 1970 = 2 OFFSET 610
###context:CREATE TABLE table_name_3 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ###human: What is the high lap total that has a grid of less than 4 and a Time/Retired of + 1 lap? ###assistant: SELECT MAX(laps) FROM table_name_3 WHERE grid < 4 AND time_retired = "+ 1 lap"
###context:CREATE TABLE table_name_62 (laps VARCHAR, time_retired VARCHAR) ###human: How many laps associated with a Time/Retired of + 1:25.475? ###assistant: SELECT COUNT(laps) FROM table_name_62 WHERE time_retired = "+ 1:25.475"
###context:CREATE TABLE table_name_76 (home_team VARCHAR, venue VARCHAR) ###human: What was the home teams score when the VFL played Princes Park? ###assistant: SELECT home_team AS score FROM table_name_76 WHERE venue = "princes park"
###context:CREATE TABLE table_name_99 (away_team VARCHAR, home_team VARCHAR) ###human: What was the opponents score when Geelong played as home team? ###assistant: SELECT away_team AS score FROM table_name_99 WHERE home_team = "geelong"
###context:CREATE TABLE table_name_80 (home_team VARCHAR, venue VARCHAR) ###human: What was the home teams score when the VFL played at Kardinia Park? ###assistant: SELECT home_team AS score FROM table_name_80 WHERE venue = "kardinia park"
###context:CREATE TABLE table_name_70 (date VARCHAR, away_team VARCHAR) ###human: When did Fitzroy play as the away team? ###assistant: SELECT date FROM table_name_70 WHERE away_team = "fitzroy"
###context:CREATE TABLE table_name_13 (goals INTEGER, apps VARCHAR, rank VARCHAR) ###human: What is the average number of goals of the player with 234 apps and a rank above 8? ###assistant: SELECT AVG(goals) FROM table_name_13 WHERE apps = 234 AND rank < 8
###context:CREATE TABLE table_name_51 (avg_game INTEGER, goals VARCHAR, rank VARCHAR) ###human: What is the average avg/game of the player with 97 goals and a rank above 7? ###assistant: SELECT AVG(avg_game) FROM table_name_51 WHERE goals = 97 AND rank < 7
###context:CREATE TABLE table_name_85 (won__pg_ INTEGER, goals_conceded__gc_ VARCHAR, played__pj_ VARCHAR) ###human: What is the highest number of games won where less than 21 games were conceded and less than 18 games were actually played? ###assistant: SELECT MAX(won__pg_) FROM table_name_85 WHERE goals_conceded__gc_ < 21 AND played__pj_ < 18
###context:CREATE TABLE table_name_80 (goals_conceded__gc_ INTEGER, draw__pe_ VARCHAR, goals_scored__gf_ VARCHAR, points__pts_ VARCHAR) ###human: What is the average number of goals conceded where more than 19 goals were scored, the team had 31 points, and more than 7 draws? ###assistant: SELECT AVG(goals_conceded__gc_) FROM table_name_80 WHERE goals_scored__gf_ > 19 AND points__pts_ = 31 AND draw__pe_ > 7
###context:CREATE TABLE table_name_32 (goals_conceded__gc_ VARCHAR, lost__pp_ VARCHAR, team__equipo_ VARCHAR) ###human: How many goals were conceded against the Chepo F.C. team where they lost 7 games? ###assistant: SELECT goals_conceded__gc_ FROM table_name_32 WHERE lost__pp_ = 7 AND team__equipo_ = "chepo f.c."
###context:CREATE TABLE table_name_61 (crowd INTEGER, venue VARCHAR) ###human: What was the smallest crowd at junction oval? ###assistant: SELECT MIN(crowd) FROM table_name_61 WHERE venue = "junction oval"
###context:CREATE TABLE table_name_49 (state VARCHAR, member VARCHAR) ###human: What state has Richard Foster as a member? ###assistant: SELECT state FROM table_name_49 WHERE member = "richard foster"
###context:CREATE TABLE table_name_16 (member VARCHAR, electorate VARCHAR) ###human: Which member has Cook as the electorate? ###assistant: SELECT member FROM table_name_16 WHERE electorate = "cook"
###context:CREATE TABLE table_name_72 (driver VARCHAR, chassis VARCHAR) ###human: Who was the driver with chassis 625 553 500? ###assistant: SELECT driver FROM table_name_72 WHERE chassis = "625 553 500"
###context:CREATE TABLE table_name_77 (tyre VARCHAR, constructor VARCHAR, driver VARCHAR) ###human: What was tyre that was made by cooper - bristol that was driven by bob gerard? ###assistant: SELECT tyre FROM table_name_77 WHERE constructor = "cooper - bristol" AND driver = "bob gerard"
###context:CREATE TABLE table_name_77 (constructor VARCHAR, entrant VARCHAR, driver VARCHAR) ###human: Who was the constructor of the officine alfieri maserati that was driven by Sergio Mantovani? ###assistant: SELECT constructor FROM table_name_77 WHERE entrant = "officine alfieri maserati" AND driver = "sergio mantovani"
###context:CREATE TABLE table_name_91 (tyre VARCHAR, driver VARCHAR) ###human: What tyre had Sergio Mantovani as a driver? ###assistant: SELECT tyre FROM table_name_91 WHERE driver = "sergio mantovani"
###context:CREATE TABLE table_name_86 (entrant VARCHAR, driver VARCHAR, chassis VARCHAR, constructor VARCHAR, tyre VARCHAR) ###human: Can you say what was the entrant of maserati built item with a Tyre of p with a chassis of 250f a6gcm that was driven by Luigi Villoresi? ###assistant: SELECT entrant FROM table_name_86 WHERE constructor = "maserati" AND tyre = "p" AND chassis = "250f a6gcm" AND driver = "luigi villoresi"
###context:CREATE TABLE table_name_18 (dutch VARCHAR, english VARCHAR) ###human: What is the dutch word for one? ###assistant: SELECT dutch FROM table_name_18 WHERE english = "one"
###context:CREATE TABLE table_name_20 (middle_german___luxemburgish__ VARCHAR, ein VARCHAR, Limburgish VARCHAR) ###human: What is the Middle German (Luxemburgish) word for ein? ###assistant: SELECT middle_german___luxemburgish__ FROM table_name_20 WHERE DUTCH(Limburgish) = ein
###context:CREATE TABLE table_name_58 (middle_german___luxemburgish__ VARCHAR, english VARCHAR) ###human: What is the Middle German (Luxemburgish) word for stone? ###assistant: SELECT middle_german___luxemburgish__ FROM table_name_58 WHERE english = "stone"
###context:CREATE TABLE table_name_68 (dutch VARCHAR, Groningen VARCHAR, høvd VARCHAR, høvur VARCHAR) ###human: What is the Dutch waord for høvd / høvur? ###assistant: SELECT dutch FROM table_name_68 WHERE LOW_GERMAN(Groningen) = høvd / høvur
###context:CREATE TABLE table_name_43 (english VARCHAR, twie VARCHAR, Limburgish VARCHAR) ###human: What is the English word for twie? ###assistant: SELECT english FROM table_name_43 WHERE DUTCH(Limburgish) = twie
###context:CREATE TABLE table_name_54 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR) ###human: What is the constructor on the team with 8 rounds and a chassis of 156 158 1512? ###assistant: SELECT constructor FROM table_name_54 WHERE rounds = "8" AND chassis = "156 158 1512"
###context:CREATE TABLE table_name_92 (driver VARCHAR, rounds VARCHAR, tyre VARCHAR, chassis VARCHAR) ###human: Who is the driver of the team with tyre d, bt11 chassis, and 8 rounds? ###assistant: SELECT driver FROM table_name_92 WHERE tyre = "d" AND chassis = "bt11" AND rounds = "8"
###context:CREATE TABLE table_name_51 (bronze INTEGER, silver VARCHAR, gold VARCHAR) ###human: What is the number of bronze that silver is smaller than 1 and gold bigger than 0? ###assistant: SELECT AVG(bronze) FROM table_name_51 WHERE silver < 1 AND gold > 0
###context:CREATE TABLE table_name_55 (name VARCHAR, points VARCHAR, nation VARCHAR, pts_game VARCHAR) ###human: what is the name when the nation is France, the pts/game is more than 3 and points is less than 33? ###assistant: SELECT name FROM table_name_55 WHERE nation = "france" AND pts_game > 3 AND points < 33
###context:CREATE TABLE table_name_78 (pts_game VARCHAR, games VARCHAR, name VARCHAR) ###human: what is the pts/game for Charlotte barras and the games is 5? ###assistant: SELECT pts_game FROM table_name_78 WHERE games = 5 AND name = "charlotte barras"
###context:CREATE TABLE table_name_97 (points INTEGER, nation VARCHAR, pts_game VARCHAR) ###human: what is the average points when the nation is wales and the pts/game is more than 5? ###assistant: SELECT AVG(points) FROM table_name_97 WHERE nation = "wales" AND pts_game > 5
###context:CREATE TABLE table_name_35 (year INTEGER, venue VARCHAR) ###human: When is the earliest year for it is in barcelona, spain? ###assistant: SELECT MIN(year) FROM table_name_35 WHERE venue = "barcelona, spain"
###context:CREATE TABLE table_name_57 (year INTEGER, position VARCHAR, venue VARCHAR) ###human: What is the average year they finished 5th in santiago, chile? ###assistant: SELECT AVG(year) FROM table_name_57 WHERE position = "5th" AND venue = "santiago, chile"
###context:CREATE TABLE table_name_42 (pick INTEGER, player VARCHAR) ###human: Which pick was MIchael Holper? ###assistant: SELECT MIN(pick) FROM table_name_42 WHERE player = "michael holper"
###context:CREATE TABLE table_name_99 (gold INTEGER, nation VARCHAR, silver VARCHAR) ###human: What is the average Gold where the Nation is Russia (rus) and the number of silver is less than 2? ###assistant: SELECT AVG(gold) FROM table_name_99 WHERE nation = "russia (rus)" AND silver < 2
###context:CREATE TABLE table_name_45 (total INTEGER, nation VARCHAR, bronze VARCHAR) ###human: What is the total where the nation is South Africa (rsa) and bronze is less than 1? ###assistant: SELECT SUM(total) FROM table_name_45 WHERE nation = "south africa (rsa)" AND bronze < 1
###context:CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) ###human: Which nation has 0 gold, a rank greater than 14, a total of 1, and silver less than 1? ###assistant: SELECT nation FROM table_name_10 WHERE gold = 0 AND rank > 14 AND total = 1 AND silver < 1
###context:CREATE TABLE table_name_21 (home_team VARCHAR, venue VARCHAR) ###human: Tell me the home team for vfl park venue ###assistant: SELECT home_team FROM table_name_21 WHERE venue = "vfl park"
###context:CREATE TABLE table_name_70 (home_team VARCHAR, venue VARCHAR) ###human: Tell me the home team for venue of mcg ###assistant: SELECT home_team FROM table_name_70 WHERE venue = "mcg"
###context:CREATE TABLE table_name_39 (crowd INTEGER, venue VARCHAR) ###human: Tell me the most crowd for arden street oval venue ###assistant: SELECT MAX(crowd) FROM table_name_39 WHERE venue = "arden street oval"
###context:CREATE TABLE table_name_51 (away_team VARCHAR, home_team VARCHAR) ###human: What was the away team's score when South Melbourne was the home team? ###assistant: SELECT away_team AS score FROM table_name_51 WHERE home_team = "south melbourne"
###context:CREATE TABLE table_name_92 (placings VARCHAR, nation VARCHAR) ###human: What was the placing of the nation of East Germany? ###assistant: SELECT COUNT(placings) FROM table_name_92 WHERE nation = "east germany"
###context:CREATE TABLE table_name_96 (level INTEGER, team VARCHAR, season VARCHAR) ###human: What's the highest level of team Astana since 2007? ###assistant: SELECT MAX(level) FROM table_name_96 WHERE team = "astana" AND season > 2007
###context:CREATE TABLE table_name_52 (away_team VARCHAR, venue VARCHAR) ###human: Who was the away team at Western Oval? ###assistant: SELECT away_team FROM table_name_52 WHERE venue = "western oval"
###context:CREATE TABLE table_name_90 (home_team VARCHAR, away_team VARCHAR) ###human: Who was the home team that played against Collingwood? ###assistant: SELECT home_team FROM table_name_90 WHERE away_team = "collingwood"
###context:CREATE TABLE table_name_2 (crowd INTEGER, home_team VARCHAR) ###human: What is the average crowd size for Richmond home games? ###assistant: SELECT AVG(crowd) FROM table_name_2 WHERE home_team = "richmond"
###context:CREATE TABLE table_name_48 (crowd INTEGER, home_team VARCHAR) ###human: What is the largest crowd for North Melbourne home games? ###assistant: SELECT MAX(crowd) FROM table_name_48 WHERE home_team = "north melbourne"
###context:CREATE TABLE table_name_62 (venue VARCHAR, home_team VARCHAR) ###human: In which venue does Melbourne play as the home team? ###assistant: SELECT venue FROM table_name_62 WHERE home_team = "melbourne"
###context:CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR) ###human: Which Grid has a Driver of johnny dumfries? ###assistant: SELECT grid FROM table_name_85 WHERE driver = "johnny dumfries"
###context:CREATE TABLE table_name_24 (score VARCHAR, date VARCHAR) ###human: What is the score on 22 September 1972? ###assistant: SELECT score FROM table_name_24 WHERE date = "22 september 1972"
###context:CREATE TABLE table_name_57 (venue VARCHAR, date VARCHAR) ###human: What is the venue on 3 September 1972? ###assistant: SELECT venue FROM table_name_57 WHERE date = "3 september 1972"
###context:CREATE TABLE table_name_2 (series VARCHAR, date VARCHAR) ###human: Name the series for april 30 ###assistant: SELECT series FROM table_name_2 WHERE date = "april 30"
###context:CREATE TABLE table_name_35 (game INTEGER, high_assists VARCHAR) ###human: Name the highest game for west (8) high assists ###assistant: SELECT MAX(game) FROM table_name_35 WHERE high_assists = "west (8)"
###context:CREATE TABLE table_name_11 (year INTEGER, date VARCHAR) ###human: Which Year has a Date of 14 February? ###assistant: SELECT MIN(year) FROM table_name_11 WHERE date = "14 february"
###context:CREATE TABLE table_name_48 (label VARCHAR, date VARCHAR) ###human: Which Label has a Date of 20 July? ###assistant: SELECT label FROM table_name_48 WHERE date = "20 july"
###context:CREATE TABLE table_name_56 (label VARCHAR, date VARCHAR) ###human: Which Label has a Date of 14 February? ###assistant: SELECT label FROM table_name_56 WHERE date = "14 february"
###context:CREATE TABLE table_name_94 (choreographer_s_ VARCHAR, style VARCHAR, partner VARCHAR) ###human: Who choreographed the smooth waltz with lacey schwimmer? ###assistant: SELECT choreographer_s_ FROM table_name_94 WHERE style = "smooth waltz" AND partner = "lacey schwimmer"