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