combined_text
stringlengths
106
1.05k
###question:What is the Time/Retired for a Grid smaller than 10, a Laps larger than 20, and a Constructor of talbot-lago - talbot?###answer:SELECT time_retired FROM table_name_89 WHERE grid < 10 AND laps > 20 AND constructor = "talbot-lago - talbot"###context:CREATE TABLE table_name_89 (time_retired VARCHAR, constructo...
###question:What is the high grid total for maserati?###answer:SELECT MAX(grid) FROM table_name_68 WHERE constructor = "maserati"###context:CREATE TABLE table_name_68 (grid INTEGER, constructor VARCHAR)
###question:What is the high grid total for maserati with under 35 laps?###answer:SELECT MAX(grid) FROM table_name_64 WHERE laps < 35 AND constructor = "maserati"###context:CREATE TABLE table_name_64 (grid INTEGER, laps VARCHAR, constructor VARCHAR)
###question:What is the Pole Position of the Brazilian Grand Prix race?###answer:SELECT pole_position FROM table_name_28 WHERE race = "brazilian grand prix"###context:CREATE TABLE table_name_28 (pole_position VARCHAR, race VARCHAR)
###question:Who was the winner of the race in monza?###answer:SELECT race AS Winner FROM table_name_89 WHERE location = "monza"###context:CREATE TABLE table_name_89 (race VARCHAR, location VARCHAR)
###question:What position for chris moreno?###answer:SELECT position FROM table_name_18 WHERE player = "chris moreno"###context:CREATE TABLE table_name_18 (position VARCHAR, player VARCHAR)
###question:When was brian lemay born?###answer:SELECT date_of_birth__age_ FROM table_name_1 WHERE player = "brian lemay"###context:CREATE TABLE table_name_1 (date_of_birth__age_ VARCHAR, player VARCHAR)
###question:Tell me the player for 7 round###answer:SELECT player FROM table_name_74 WHERE round = 7###context:CREATE TABLE table_name_74 (player VARCHAR, round VARCHAR)
###question:Which Superfund site has the CERCLIS ID fld980494959?###answer:SELECT partially_deleted FROM table_name_78 WHERE cerclis_id = "fld980494959"###context:CREATE TABLE table_name_78 (partially_deleted VARCHAR, cerclis_id VARCHAR)
###question:Which site has the CERCLIS ID fld004092532?###answer:SELECT name FROM table_name_88 WHERE cerclis_id = "fld004092532"###context:CREATE TABLE table_name_88 (name VARCHAR, cerclis_id VARCHAR)
###question:What is the CERCLIS ID of the site in Polk County, with the date 08/04/2009?###answer:SELECT cerclis_id FROM table_name_96 WHERE county = "polk" AND deleted = "08/04/2009"###context:CREATE TABLE table_name_96 (cerclis_id VARCHAR, county VARCHAR, deleted VARCHAR)
###question:When is the tournament of konica san jose classic?###answer:SELECT date FROM table_name_41 WHERE tournament = "konica san jose classic"###context:CREATE TABLE table_name_41 (date VARCHAR, tournament VARCHAR)
###question:Which tournament had a playoff with a margin of victory?###answer:SELECT tournament FROM table_name_49 WHERE margin_of_victory = "playoff"###context:CREATE TABLE table_name_49 (tournament VARCHAR, margin_of_victory VARCHAR)
###question:Who was the runner up in the konica san jose classic Tournament?###answer:SELECT runner_up FROM table_name_60 WHERE tournament = "konica san jose classic"###context:CREATE TABLE table_name_60 (runner_up VARCHAR, tournament VARCHAR)
###question:What was the highest crowd size at the Western Oval?###answer:SELECT MAX(crowd) FROM table_name_48 WHERE venue = "western oval"###context:CREATE TABLE table_name_48 (crowd INTEGER, venue VARCHAR)
###question:Which name had an order number of 1?###answer:SELECT name FROM table_name_4 WHERE order = 1###context:CREATE TABLE table_name_4 (name VARCHAR, order VARCHAR)
###question:Who was the entrant for Gabriele Tarquini with all rounds and a JH24 JH25 Chassis?###answer:SELECT entrant FROM table_name_65 WHERE rounds = "all" AND chassis = "jh24 jh25" AND driver = "gabriele tarquini"###context:CREATE TABLE table_name_65 (entrant VARCHAR, driver VARCHAR, rounds VARCHAR, chassis VARCHAR...
###question:Who was the entrant for Gary Brabham?###answer:SELECT entrant FROM table_name_5 WHERE driver = "gary brabham"###context:CREATE TABLE table_name_5 (entrant VARCHAR, driver VARCHAR)
###question:Who constructed Aguri Suzuki's car?###answer:SELECT constructor FROM table_name_4 WHERE driver = "aguri suzuki"###context:CREATE TABLE table_name_4 (constructor VARCHAR, driver VARCHAR)
###question:What was the highest average point rating for a modern suspense show with 21 episodes?###answer:SELECT SUM(highest_average_point_ratings) FROM table_name_29 WHERE genre = "modern suspense" AND number_of_episodes = 21###context:CREATE TABLE table_name_29 (highest_average_point_ratings INTEGER, genre VARCHAR,...
###question:Where was the game with the result of 22-20 played?###answer:SELECT venue FROM table_name_81 WHERE result = "22-20"###context:CREATE TABLE table_name_81 (venue VARCHAR, result VARCHAR)
###question:Where was the game with a higher score than 1 played?###answer:SELECT venue FROM table_name_85 WHERE scored > 1###context:CREATE TABLE table_name_85 (venue VARCHAR, scored INTEGER)
###question:What tournament did the Crusaders play in?###answer:SELECT tournament FROM table_name_98 WHERE opponent = "crusaders"###context:CREATE TABLE table_name_98 (tournament VARCHAR, opponent VARCHAR)
###question:What was the home score at Lake Oval?###answer:SELECT home_team AS score FROM table_name_78 WHERE venue = "lake oval"###context:CREATE TABLE table_name_78 (home_team VARCHAR, venue VARCHAR)
###question:What is the highest metal total when there are 2 Gold medals, 0 Bronze metals, and the rank is smaller than 2?###answer:SELECT MAX(total) FROM table_name_24 WHERE gold = 2 AND bronze = 0 AND rank < 2###context:CREATE TABLE table_name_24 (total INTEGER, rank VARCHAR, gold VARCHAR, bronze VARCHAR)
###question:What is the total number of silver medals when there are 0 Bronze medals, and the nation is the United Kingdom?###answer:SELECT COUNT(silver) FROM table_name_71 WHERE bronze = 0 AND nation = "united kingdom"###context:CREATE TABLE table_name_71 (silver VARCHAR, bronze VARCHAR, nation VARCHAR)
###question:What is the highest rank when the metal total is 1 and the nation is the United Kingdom?###answer:SELECT MAX(rank) FROM table_name_99 WHERE total = 1 AND nation = "united kingdom"###context:CREATE TABLE table_name_99 (rank INTEGER, total VARCHAR, nation VARCHAR)
###question:What is the lowest metal total when the Bronze metals are larger than 0, the Gold medals are smaller than 1, and the nation is Switzerland?###answer:SELECT MIN(total) FROM table_name_18 WHERE bronze > 0 AND nation = "switzerland" AND gold < 1###context:CREATE TABLE table_name_18 (total INTEGER, gold VARCHAR...
###question:What is the highest Bronze medal count when the Gold medals are larger than 1 and the silver are smaller than 0?###answer:SELECT MAX(bronze) FROM table_name_71 WHERE gold > 1 AND silver < 0###context:CREATE TABLE table_name_71 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
###question:When was the swiss grand prix?###answer:SELECT date FROM table_name_91 WHERE race = "swiss grand prix"###context:CREATE TABLE table_name_91 (date VARCHAR, race VARCHAR)
###question:What was the circuit for alberto ascari josé froilán gonzález?###answer:SELECT circuit FROM table_name_83 WHERE fastest_lap = "alberto ascari josé froilán gonzález"###context:CREATE TABLE table_name_83 (circuit VARCHAR, fastest_lap VARCHAR)
###question:Name the date of the italian grand prix###answer:SELECT date FROM table_name_34 WHERE race = "italian grand prix"###context:CREATE TABLE table_name_34 (date VARCHAR, race VARCHAR)
###question:Name the constructor for the belgian grand prix###answer:SELECT constructor FROM table_name_69 WHERE race = "belgian grand prix"###context:CREATE TABLE table_name_69 (constructor VARCHAR, race VARCHAR)
###question:Name the date for the italian grand prix###answer:SELECT date FROM table_name_67 WHERE race = "italian grand prix"###context:CREATE TABLE table_name_67 (date VARCHAR, race VARCHAR)
###question:Who's the opposition at westpac stadium when the attendance is 31,853?###answer:SELECT opposition FROM table_name_56 WHERE stadium = "westpac stadium" AND attendance = "31,853"###context:CREATE TABLE table_name_56 (opposition VARCHAR, stadium VARCHAR, attendance VARCHAR)
###question:When was the opposition sydney fc on round 19?###answer:SELECT date FROM table_name_33 WHERE opposition = "sydney fc" AND round = "round 19"###context:CREATE TABLE table_name_33 (date VARCHAR, opposition VARCHAR, round VARCHAR)
###question:What round was adelaide united the opposition with an attendance of 18,345?###answer:SELECT round FROM table_name_32 WHERE opposition = "adelaide united" AND attendance = "18,345"###context:CREATE TABLE table_name_32 (round VARCHAR, opposition VARCHAR, attendance VARCHAR)
###question:Who was the opposition at 11,682 excl. exhibition match?###answer:SELECT opposition FROM table_name_39 WHERE stadium = "11,682 excl. exhibition match"###context:CREATE TABLE table_name_39 (opposition VARCHAR, stadium VARCHAR)
###question:What round has an attendance of 12,127?###answer:SELECT round FROM table_name_55 WHERE attendance = "12,127"###context:CREATE TABLE table_name_55 (round VARCHAR, attendance VARCHAR)
###question:What is the result against everton?###answer:SELECT result FROM table_name_73 WHERE opponent = "everton"###context:CREATE TABLE table_name_73 (result VARCHAR, opponent VARCHAR)
###question:François Gendron was in which party?###answer:SELECT party FROM table_name_3 WHERE name = "françois gendron"###context:CREATE TABLE table_name_3 (party VARCHAR, name VARCHAR)
###question:The deputy that left office in 2003 took office in which year?###answer:SELECT took_office FROM table_name_90 WHERE left_office = "2003"###context:CREATE TABLE table_name_90 (took_office VARCHAR, left_office VARCHAR)
###question:Which deputy took office in 1976?###answer:SELECT name FROM table_name_97 WHERE took_office = "1976"###context:CREATE TABLE table_name_97 (name VARCHAR, took_office VARCHAR)
###question:Which film took place in 2000?###answer:SELECT film FROM table_name_64 WHERE year = "2000"###context:CREATE TABLE table_name_64 (film VARCHAR, year VARCHAR)
###question:Which song named Tan Dun was nominated?###answer:SELECT song FROM table_name_76 WHERE status = "nominated" AND name = "tan dun"###context:CREATE TABLE table_name_76 (song VARCHAR, status VARCHAR, name VARCHAR)
###question:Who was the constructor when the grid was 11?###answer:SELECT constructor FROM table_name_74 WHERE grid = 11###context:CREATE TABLE table_name_74 (constructor VARCHAR, grid VARCHAR)
###question:How many laps were completed by Piers Courage when BRM was the constructor and the grid is larger than 8?###answer:SELECT COUNT(laps) FROM table_name_25 WHERE constructor = "brm" AND driver = "piers courage" AND grid > 8###context:CREATE TABLE table_name_25 (laps VARCHAR, grid VARCHAR, constructor VARCHAR, ...
###question:What is the short name for a channelgreater than 63.4?###answer:SELECT psip_short_name FROM table_name_55 WHERE channel > 63.4###context:CREATE TABLE table_name_55 (psip_short_name VARCHAR, channel INTEGER)
###question:For the channel smaller than 63.2, what was the programming?###answer:SELECT programming FROM table_name_16 WHERE channel < 63.2###context:CREATE TABLE table_name_16 (programming VARCHAR, channel INTEGER)
###question:Tell me the horse with faults of 0 when the total is 4.1###answer:SELECT horse FROM table_name_15 WHERE faults = "0" AND total = 4.1###context:CREATE TABLE table_name_15 (horse VARCHAR, faults VARCHAR, total VARCHAR)
###question:Tell me the horse when the faults are 9 and the total is 46.36###answer:SELECT horse FROM table_name_11 WHERE faults = "9" AND total = 46.36###context:CREATE TABLE table_name_11 (horse VARCHAR, faults VARCHAR, total VARCHAR)
###question:Tell me the highest total when the horse is spender s###answer:SELECT MAX(total) FROM table_name_99 WHERE horse = "spender s"###context:CREATE TABLE table_name_99 (total INTEGER, horse VARCHAR)
###question:Name the round 1 +2A points for horse of poncorde###answer:SELECT round_1_ + _2a_points FROM table_name_61 WHERE horse = "poncorde"###context:CREATE TABLE table_name_61 (round_1_ VARCHAR, _2a_points VARCHAR, horse VARCHAR)
###question:Name the total number of total when round 1 +2A points of 19.620###answer:SELECT COUNT(total) FROM table_name_48 WHERE round_1_ + _2a_points = "19.620"###context:CREATE TABLE table_name_48 (total VARCHAR, round_1_ VARCHAR, _2a_points VARCHAR)
###question:Which Home team has an Away team of melbourne?###answer:SELECT home_team FROM table_name_54 WHERE away_team = "melbourne"###context:CREATE TABLE table_name_54 (home_team VARCHAR, away_team VARCHAR)
###question:What is the away team at corio oval?###answer:SELECT away_team FROM table_name_26 WHERE venue = "corio oval"###context:CREATE TABLE table_name_26 (away_team VARCHAR, venue VARCHAR)
###question:What is the away team at lake oval?###answer:SELECT away_team FROM table_name_28 WHERE venue = "lake oval"###context:CREATE TABLE table_name_28 (away_team VARCHAR, venue VARCHAR)
###question:What is the away team score with geelong home team?###answer:SELECT away_team AS score FROM table_name_68 WHERE home_team = "geelong"###context:CREATE TABLE table_name_68 (away_team VARCHAR, home_team VARCHAR)
###question:What is the home team score when the home team is Collingwood?###answer:SELECT home_team AS score FROM table_name_79 WHERE home_team = "collingwood"###context:CREATE TABLE table_name_79 (home_team VARCHAR)
###question:What is the date of the game when the venue is Princes Park?###answer:SELECT date FROM table_name_40 WHERE venue = "princes park"###context:CREATE TABLE table_name_40 (date VARCHAR, venue VARCHAR)
###question:What position does the player from texas a&m play?###answer:SELECT position FROM table_name_32 WHERE school = "texas a&m"###context:CREATE TABLE table_name_32 (position VARCHAR, school VARCHAR)
###question:What is the time for 18 laps and 5 grids?###answer:SELECT time FROM table_name_52 WHERE laps = 18 AND grid = 5###context:CREATE TABLE table_name_52 (time VARCHAR, laps VARCHAR, grid VARCHAR)
###question:On which date was the Dodge Dealers Grand Prix GTS class race?###answer:SELECT date FROM table_name_46 WHERE race = "dodge dealers grand prix" AND class = "gts"###context:CREATE TABLE table_name_46 (date VARCHAR, race VARCHAR, class VARCHAR)
###question:Which race was on the Las Vegas Motor Speedway for 2 hours?###answer:SELECT race FROM table_name_36 WHERE circuit = "las vegas motor speedway" AND length = "2 hours"###context:CREATE TABLE table_name_36 (race VARCHAR, circuit VARCHAR, length VARCHAR)
###question:Which class was on the Las Vegas Motor Speedway for 2 hours?###answer:SELECT class FROM table_name_3 WHERE length = "2 hours" AND circuit = "las vegas motor speedway"###context:CREATE TABLE table_name_3 (class VARCHAR, length VARCHAR, circuit VARCHAR)
###question:What circuit was on June 1 with a class of both?###answer:SELECT circuit FROM table_name_16 WHERE class = "both" AND date = "june 1"###context:CREATE TABLE table_name_16 (circuit VARCHAR, class VARCHAR, date VARCHAR)
###question:Which date was a GTS class on the Mosport International Raceway?###answer:SELECT date FROM table_name_98 WHERE class = "gts" AND circuit = "mosport international raceway"###context:CREATE TABLE table_name_98 (date VARCHAR, class VARCHAR, circuit VARCHAR)
###question:What is the average prom (m) when the height (m) is more than 733, the class is Hewitt, and the peak is Kirk Fell East Top?###answer:SELECT AVG(prom__m_) FROM table_name_75 WHERE height__m_ > 733 AND class = "hewitt" AND peak = "kirk fell east top"###context:CREATE TABLE table_name_75 (prom__m_ INTEGER, pea...
###question:What college picked someone from The Episcopal Academy?###answer:SELECT college FROM table_name_47 WHERE school = "episcopal academy"###context:CREATE TABLE table_name_47 (college VARCHAR, school VARCHAR)
###question:When was the game at Moorabbin Oval?###answer:SELECT date FROM table_name_98 WHERE venue = "moorabbin oval"###context:CREATE TABLE table_name_98 (date VARCHAR, venue VARCHAR)
###question:Who did Hawthorn play against at their home match?###answer:SELECT away_team FROM table_name_8 WHERE home_team = "hawthorn"###context:CREATE TABLE table_name_8 (away_team VARCHAR, home_team VARCHAR)
###question:What season has a 6th north finish and more than 21 points?###answer:SELECT season FROM table_name_18 WHERE points > 21 AND finish = "6th north"###context:CREATE TABLE table_name_18 (season VARCHAR, points VARCHAR, finish VARCHAR)
###question:What language does Raj Kamal speak?###answer:SELECT language FROM table_name_62 WHERE music_director = "raj kamal"###context:CREATE TABLE table_name_62 (language VARCHAR, music_director VARCHAR)
###question:What 1972 Hindi film had Ravindra Jain directing the music?###answer:SELECT film_name FROM table_name_50 WHERE year > 1972 AND language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain"###context:CREATE TABLE table_name_50 (film_name VARCHAR, music_director VARCHAR, lyricist VARC...
###question:What 1979 Hindi film had Ravindra Jain directing music?###answer:SELECT film_name FROM table_name_60 WHERE language = "hindi" AND lyricist = "ravindra jain" AND music_director = "ravindra jain" AND year = 1979###context:CREATE TABLE table_name_60 (film_name VARCHAR, year VARCHAR, music_director VARCHAR, lan...
###question:Which driver has a # smaller than 40, less than 151 points, and Winnings of $84,400?###answer:SELECT make FROM table_name_17 WHERE car__number < 40 AND points < 151 AND winnings = "$84,400"###context:CREATE TABLE table_name_17 (make VARCHAR, winnings VARCHAR, car__number VARCHAR, points VARCHAR)
###question:Which driver has less than 61 points, but winnings of $67,675?###answer:SELECT SUM(laps) FROM table_name_33 WHERE winnings = "$67,675" AND points < 61###context:CREATE TABLE table_name_33 (laps INTEGER, winnings VARCHAR, points VARCHAR)
###question:Which driver has the highest point total after winning $133,386?###answer:SELECT MAX(points) FROM table_name_28 WHERE winnings = "$133,386"###context:CREATE TABLE table_name_28 (points INTEGER, winnings VARCHAR)
###question:What is the average round for martin havlat?###answer:SELECT AVG(round) FROM table_name_38 WHERE player = "martin havlat"###context:CREATE TABLE table_name_38 (round INTEGER, player VARCHAR)
###question:Who was part of Club Munster with 1 try?###answer:SELECT name FROM table_name_38 WHERE tries = 1 AND club = "munster"###context:CREATE TABLE table_name_38 (name VARCHAR, tries VARCHAR, club VARCHAR)
###question:Who was the Visitor when the Home team was Anaheim on the Date of April 12?###answer:SELECT visitor FROM table_name_49 WHERE home = "anaheim" AND date = "april 12"###context:CREATE TABLE table_name_49 (visitor VARCHAR, home VARCHAR, date VARCHAR)
###question:What was the Decision on April 18?###answer:SELECT decision FROM table_name_89 WHERE date = "april 18"###context:CREATE TABLE table_name_89 (decision VARCHAR, date VARCHAR)
###question:What did the team score when playing south melbourne at home?###answer:SELECT home_team AS score FROM table_name_38 WHERE away_team = "south melbourne"###context:CREATE TABLE table_name_38 (home_team VARCHAR, away_team VARCHAR)
###question:Which team lives in mcg?###answer:SELECT home_team FROM table_name_26 WHERE venue = "mcg"###context:CREATE TABLE table_name_26 (home_team VARCHAR, venue VARCHAR)
###question:What was the crowd size when st kilda played home?###answer:SELECT COUNT(crowd) FROM table_name_54 WHERE home_team = "st kilda"###context:CREATE TABLE table_name_54 (crowd VARCHAR, home_team VARCHAR)
###question:What is the home field of the South Melbourne team?###answer:SELECT venue FROM table_name_19 WHERE home_team = "south melbourne"###context:CREATE TABLE table_name_19 (venue VARCHAR, home_team VARCHAR)
###question:For the player from Finland, what is the highest overall pick rank?###answer:SELECT MAX(overall) FROM table_name_64 WHERE nationality = "finland"###context:CREATE TABLE table_name_64 (overall INTEGER, nationality VARCHAR)
###question:what is the least laps when the driver is rolf stommelen and the grid is more than 18?###answer:SELECT MIN(laps) FROM table_name_99 WHERE driver = "rolf stommelen" AND grid > 18###context:CREATE TABLE table_name_99 (laps INTEGER, driver VARCHAR, grid VARCHAR)
###question:what is the most laps with a grid of 20?###answer:SELECT MAX(laps) FROM table_name_71 WHERE grid = 20###context:CREATE TABLE table_name_71 (laps INTEGER, grid VARCHAR)
###question:With a North Melbourne away team, what is the average crowd?###answer:SELECT AVG(crowd) FROM table_name_35 WHERE away_team = "north melbourne"###context:CREATE TABLE table_name_35 (crowd INTEGER, away_team VARCHAR)
###question:Which venue does Fitzroy play as an away team?###answer:SELECT venue FROM table_name_57 WHERE away_team = "fitzroy"###context:CREATE TABLE table_name_57 (venue VARCHAR, away_team VARCHAR)
###question:In the game at Glenferrie Oval, what is the home team score?###answer:SELECT home_team AS score FROM table_name_81 WHERE venue = "glenferrie oval"###context:CREATE TABLE table_name_81 (home_team VARCHAR, venue VARCHAR)
###question:In the game against Essendon at home, what did the away team score?###answer:SELECT away_team AS score FROM table_name_95 WHERE home_team = "essendon"###context:CREATE TABLE table_name_95 (away_team VARCHAR, home_team VARCHAR)
###question:What's the highest lowest number of capacity that ibrox stadium has when the average is larger than 49,143?###answer:SELECT MAX(lowest) FROM table_name_67 WHERE stadium = "ibrox stadium" AND average > 49 OFFSET 143###context:CREATE TABLE table_name_67 (lowest INTEGER, stadium VARCHAR, average VARCHAR)
###question:Which role had thulasidas direction?###answer:SELECT role FROM table_name_55 WHERE direction = "thulasidas"###context:CREATE TABLE table_name_55 (role VARCHAR, direction VARCHAR)
###question:Which role did joemon play before 1991?###answer:SELECT role FROM table_name_34 WHERE year < 1991 AND direction = "joemon"###context:CREATE TABLE table_name_34 (role VARCHAR, year VARCHAR, direction VARCHAR)
###question:What is the number of wins that has a top-10 of 2, and more events than 8, more cuts than 6?###answer:SELECT COUNT(wins) FROM table_name_52 WHERE top_10 = 2 AND events > 8 AND cuts_made > 6###context:CREATE TABLE table_name_52 (wins VARCHAR, cuts_made VARCHAR, top_10 VARCHAR, events VARCHAR)
###question:What is the highest number of wins that has a top-25 of 13 and events less than 32?###answer:SELECT MAX(wins) FROM table_name_76 WHERE top_25 = 13 AND events < 32###context:CREATE TABLE table_name_76 (wins INTEGER, top_25 VARCHAR, events VARCHAR)
###question:What is the number of Tournament of U.S. Open wins with a Top-25 smaller than 4?###answer:SELECT COUNT(wins) FROM table_name_79 WHERE tournament = "u.s. open" AND top_25 < 4###context:CREATE TABLE table_name_79 (wins VARCHAR, tournament VARCHAR, top_25 VARCHAR)
###question:For the week 1 show and order 2, what was the theme?###answer:SELECT theme FROM table_name_59 WHERE show = "week 1" AND order = "2"###context:CREATE TABLE table_name_59 (theme VARCHAR, show VARCHAR, order VARCHAR)