Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
8,300
<question>: Which titles have been published by Gamehouse Live? <context>: CREATE TABLE table_28621502_1 (title VARCHAR, publisher VARCHAR)
SELECT title FROM table_28621502_1 WHERE publisher = "GameHouse Live"
8,301
<question>: What was pinky's bmi at the reunion? <context>: CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR)
SELECT reunion_bmi FROM table_28654454_5 WHERE contestant = "Pinky"
8,302
<question>: What was miles's bmi att the reunion? <context>: CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR)
SELECT COUNT(reunion_bmi) FROM table_28654454_5 WHERE contestant = "Miles"
8,303
<question>: How many lbs were lost at the reunion by the contestant whose finale weight was 151.4? <context>: CREATE TABLE table_28654454_5 (lbs_lost_reunion VARCHAR, finale_weight VARCHAR)
SELECT lbs_lost_reunion FROM table_28654454_5 WHERE finale_weight = "151.4"
8,304
<question>: How many contestants had a starting bmi of 33.1? <context>: CREATE TABLE table_28654454_5 (finale_weight VARCHAR, starting_bmi VARCHAR)
SELECT COUNT(finale_weight) FROM table_28654454_5 WHERE starting_bmi = "33.1"
8,305
<question>: What is the reunion weight of the contestant that lost 52 lbs at the reunion? <context>: CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_reunion VARCHAR)
SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_reunion = 52
8,306
<question>: What is the reunion weight of the contestant who lost 74.4 lbs at the finale? <context>: CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_finale VARCHAR)
SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_finale = "74.4"
8,307
<question>: Who is the team when the category is blocks per game? <context>: CREATE TABLE table_28628309_8 (team VARCHAR, category VARCHAR)
SELECT team FROM table_28628309_8 WHERE category = "Blocks per game"
8,308
<question>: What is the listed in games played when the player is jimmy alapag? <context>: CREATE TABLE table_28628309_8 (games_played VARCHAR, player VARCHAR)
SELECT games_played FROM table_28628309_8 WHERE player = "Jimmy Alapag"
8,309
<question>: What is the team when player is listed as Ronjay Buenafe? <context>: CREATE TABLE table_28628309_8 (team VARCHAR, player VARCHAR)
SELECT team FROM table_28628309_8 WHERE player = "Ronjay Buenafe"
8,310
<question>: What is the name of the player when the category is listed as field goal percentage? <context>: CREATE TABLE table_28628309_8 (player VARCHAR, category VARCHAR)
SELECT player FROM table_28628309_8 WHERE category = "Field goal percentage"
8,311
<question>: What is the games played when the category is points per game? <context>: CREATE TABLE table_28628309_8 (games_played INTEGER, category VARCHAR)
SELECT MIN(games_played) FROM table_28628309_8 WHERE category = "Points per game"
8,312
<question>: Who is the player when the category is steals per game? <context>: CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)
SELECT player FROM table_28628309_9 WHERE category = "Steals per game"
8,313
<question>: What are the names of the categories when the player is olsen racela? <context>: CREATE TABLE table_28628309_9 (category VARCHAR, player VARCHAR)
SELECT category FROM table_28628309_9 WHERE player = "Olsen Racela"
8,314
<question>: How many times is a total listed when the player is Jay Washington? <context>: CREATE TABLE table_28628309_9 (totals VARCHAR, player VARCHAR)
SELECT COUNT(totals) FROM table_28628309_9 WHERE player = "Jay Washington"
8,315
<question>: What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage? <context>: CREATE TABLE table_28628309_9 (totals VARCHAR, average VARCHAR, category VARCHAR)
SELECT totals FROM table_28628309_9 WHERE average = "0.667" AND category = "3-pt field goal percentage"
8,316
<question>: What is the name of the player when the category is 3-pt field goal percentage? <context>: CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR)
SELECT player FROM table_28628309_9 WHERE category = "3-pt field goal percentage"
8,317
<question>: What are the titles of episodes with 5.66 million US viewers? <context>: CREATE TABLE table_2866514_1 (title VARCHAR, us_viewers__million_ VARCHAR)
SELECT title FROM table_2866514_1 WHERE us_viewers__million_ = "5.66"
8,318
<question>: What are the titles of episodes directed by whitney ransick? <context>: CREATE TABLE table_2866514_1 (title VARCHAR, directed_by VARCHAR)
SELECT title FROM table_2866514_1 WHERE directed_by = "Whitney Ransick"
8,319
<question>: Who wrote the episode with 3.96 million US viewers? <context>: CREATE TABLE table_2866514_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_2866514_1 WHERE us_viewers__million_ = "3.96"
8,320
<question>: What was the maximum value that Christer Tornell gave when Trine Dehli Cleve gave a 9? <context>: CREATE TABLE table_28677723_8 (christer_tornell INTEGER, trine_dehli_cleve VARCHAR)
SELECT MAX(christer_tornell) FROM table_28677723_8 WHERE trine_dehli_cleve = 9
8,321
<question>: How many games did Robert Peare play? <context>: CREATE TABLE table_28693349_2 (games INTEGER, player VARCHAR)
SELECT MAX(games) FROM table_28693349_2 WHERE player = "Robert Peare"
8,322
<question>: How many free throws did Charles Pearman score? <context>: CREATE TABLE table_28693349_2 (free_throws INTEGER, player VARCHAR)
SELECT MAX(free_throws) FROM table_28693349_2 WHERE player = "Charles Pearman"
8,323
<question>: How many shared titles does the club whose last final was 2012 have? <context>: CREATE TABLE table_2869837_1 (Shared VARCHAR, last_final VARCHAR)
SELECT Shared AS titles FROM table_2869837_1 WHERE last_final = 2012
8,324
<question>: What was the year of the last final for the club whose last title was 1990? <context>: CREATE TABLE table_2869837_1 (last_final VARCHAR, last_title VARCHAR)
SELECT last_final FROM table_2869837_1 WHERE last_title = "1990"
8,325
<question>: What is the minimum number of shared titles for the club whose last final was in 2006? <context>: CREATE TABLE table_2869837_1 (Shared INTEGER, last_final VARCHAR)
SELECT MIN(Shared) AS titles FROM table_2869837_1 WHERE last_final = 2006
8,326
<question>: What is the latest year of last final for the club whose last title was in 1994? <context>: CREATE TABLE table_2869837_1 (last_final INTEGER, last_title VARCHAR)
SELECT MAX(last_final) FROM table_2869837_1 WHERE last_title = "1994"
8,327
<question>: What are the number of runners up for Royal School Dungannon? <context>: CREATE TABLE table_2869837_1 (runners_up VARCHAR, school VARCHAR)
SELECT runners_up FROM table_2869837_1 WHERE school = "Royal school Dungannon"
8,328
<question>: What is the track whent the vocal percussionist is unknown? <context>: CREATE TABLE table_28715942_5 (track VARCHAR, vocal_percussionist VARCHAR)
SELECT track FROM table_28715942_5 WHERE vocal_percussionist = "unknown"
8,329
<question>: Who is the arranger when the vocal percussionist is Alexei Kalveks and Dave Brennan? <context>: CREATE TABLE table_28715942_5 (arranger_s_ VARCHAR, vocal_percussionist VARCHAR)
SELECT arranger_s_ FROM table_28715942_5 WHERE vocal_percussionist = "Alexei Kalveks and Dave Brennan"
8,330
<question>: What is the original artist when the vocal percussionist is Alexei Kalveks? <context>: CREATE TABLE table_28715942_5 (original_artist VARCHAR, vocal_percussionist VARCHAR)
SELECT original_artist FROM table_28715942_5 WHERE vocal_percussionist = "Alexei Kalveks"
8,331
<question>: How few km 2 does the area with Nay Pyi Taw as capital cover? <context>: CREATE TABLE table_28741_1 (area__km_2__ INTEGER, capital VARCHAR)
SELECT MIN(area__km_2__) FROM table_28741_1 WHERE capital = "Nay Pyi Taw"
8,332
<question>: What is the 2012 population of Indonesia? <context>: CREATE TABLE table_28741_1 (population_2012_ VARCHAR, country VARCHAR)
SELECT population_2012_ FROM table_28741_1 WHERE country = "Indonesia"
8,333
<question>: What are the numbers for GDP (nominal) per capita and USD (2012) of the area with Phnom Penh as capital? <context>: CREATE TABLE table_28741_1 (_usd__2012_ VARCHAR, gdp__nominal__per_capita VARCHAR, capital VARCHAR)
SELECT COUNT(gdp__nominal__per_capita), _usd__2012_ FROM table_28741_1 WHERE capital = "Phnom Penh"
8,334
<question>: What is the distance of jockey Jason Titley? <context>: CREATE TABLE table_28750142_1 (distance VARCHAR, jockey VARCHAR)
SELECT distance FROM table_28750142_1 WHERE jockey = "Jason Titley"
8,335
<question>: What is the name of the jockey for Pink Gin? <context>: CREATE TABLE table_28750142_1 (jockey VARCHAR, name VARCHAR)
SELECT jockey FROM table_28750142_1 WHERE name = "Pink Gin"
8,336
<question>: The location attendance is ford center 17,021 on what dates? <context>: CREATE TABLE table_28768469_10 (date VARCHAR, location_attendance VARCHAR)
SELECT date FROM table_28768469_10 WHERE location_attendance = "Ford Center 17,021"
8,337
<question>: In game 73, what were the total number of high assists? <context>: CREATE TABLE table_28768469_10 (high_assists VARCHAR, game VARCHAR)
SELECT COUNT(high_assists) FROM table_28768469_10 WHERE game = 73
8,338
<question>: What is the location for the game on October 20 with it's corresponding attendance? <context>: CREATE TABLE table_28768469_2 (location_attendance VARCHAR, date VARCHAR)
SELECT location_attendance FROM table_28768469_2 WHERE date = "October 20"
8,339
<question>: Who directed episode 11 of the season? <context>: CREATE TABLE table_28785738_1 (director VARCHAR, no_in_season VARCHAR)
SELECT director FROM table_28785738_1 WHERE no_in_season = 11
8,340
<question>: How many episode titles does episode 19 in the season have? <context>: CREATE TABLE table_28802668_3 (title VARCHAR, no_in_season VARCHAR)
SELECT COUNT(title) FROM table_28802668_3 WHERE no_in_season = 19
8,341
<question>: if the bbi is 4/39 what is the average <context>: CREATE TABLE table_28798161_3 (average VARCHAR, bbi VARCHAR)
SELECT average FROM table_28798161_3 WHERE bbi = "4/39"
8,342
<question>: if the economy is 3.63 what is the bbi <context>: CREATE TABLE table_28798161_3 (bbi VARCHAR, economy VARCHAR)
SELECT bbi FROM table_28798161_3 WHERE economy = "3.63"
8,343
<question>: in the leage what was the minimum 4wi <context>: CREATE TABLE table_28798161_3 (Id VARCHAR)
SELECT MIN(4 AS wi) FROM table_28798161_3
8,344
<question>: What is the poor law union on Marshalstown? <context>: CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR)
SELECT poor_law_union FROM table_28802165_1 WHERE townland = "Marshalstown"
8,345
<question>: What is the maximum acres in Castledermot? <context>: CREATE TABLE table_28802165_1 (s_acre INTEGER, civil_parish VARCHAR)
SELECT MAX(s_acre) FROM table_28802165_1 WHERE civil_parish = "Castledermot"
8,346
<question>: What is the civil parish of Aghafullim? <context>: CREATE TABLE table_28802165_1 (civil_parish VARCHAR, townland VARCHAR)
SELECT civil_parish FROM table_28802165_1 WHERE townland = "Aghafullim"
8,347
<question>: How many acres is the townland of Maddenstown Middle? <context>: CREATE TABLE table_28802165_1 (s_acre VARCHAR, townland VARCHAR)
SELECT s_acre FROM table_28802165_1 WHERE townland = "Maddenstown Middle"
8,348
<question>: How many original air dates did the episode directed by Bethany rooney have? <context>: CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT COUNT(original_air_date) FROM table_28859177_3 WHERE directed_by = "Bethany Rooney"
8,349
<question>: What is the production code for the episode that aired on October 15, 2004? <context>: CREATE TABLE table_28859177_3 (production_code VARCHAR, original_air_date VARCHAR)
SELECT production_code FROM table_28859177_3 WHERE original_air_date = "October 15, 2004"
8,350
<question>: What is the original air date for episode graeme clifford directed and lindsay sturman wrote? <context>: CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_28859177_3 WHERE directed_by = "Graeme Clifford" AND written_by = "Lindsay Sturman"
8,351
<question>: Who was the player that was picked by Los Angeles Kings? <context>: CREATE TABLE table_2886617_6 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2886617_6 WHERE nhl_team = "Los Angeles Kings"
8,352
<question>: What nationality was peter slamiar? <context>: CREATE TABLE table_2886617_6 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_2886617_6 WHERE player = "Peter Slamiar"
8,353
<question>: What team did the New York Rangers recruit a player from? <context>: CREATE TABLE table_2886617_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_2886617_4 WHERE nhl_team = "New York Rangers"
8,354
<question>: How many countries had players named Marc Savard get picked? <context>: CREATE TABLE table_2886617_4 (nationality VARCHAR, player VARCHAR)
SELECT COUNT(nationality) FROM table_2886617_4 WHERE player = "Marc Savard"
8,355
<question>: What country does the player who joined the Vancouver Canucks originally hail from? <context>: CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR)
SELECT nationality FROM table_2886617_4 WHERE nhl_team = "Vancouver Canucks"
8,356
<question>: How many times did Alyn McCauley get picked? <context>: CREATE TABLE table_2886617_4 (pick VARCHAR, player VARCHAR)
SELECT COUNT(pick) FROM table_2886617_4 WHERE player = "Alyn McCauley"
8,357
<question>: Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)? <context>: CREATE TABLE table_2886617_3 (nationality VARCHAR, position VARCHAR, college_junior_club_team VARCHAR)
SELECT nationality FROM table_2886617_3 WHERE position = "Left Wing" AND college_junior_club_team = "Portland Winterhawks (WHL)"
8,358
<question>: Which nhl team has the player kevin mckay? <context>: CREATE TABLE table_2886617_3 (nhl_team VARCHAR, player VARCHAR)
SELECT nhl_team FROM table_2886617_3 WHERE player = "Kevin McKay"
8,359
<question>: How many picks have canada as the nationality and larry courville is the player? <context>: CREATE TABLE table_2886617_3 (pick VARCHAR, nationality VARCHAR, player VARCHAR)
SELECT COUNT(pick) FROM table_2886617_3 WHERE nationality = "Canada" AND player = "Larry Courville"
8,360
<question>: Which pick has marko makinen as the player? <context>: CREATE TABLE table_2886617_3 (pick VARCHAR, player VARCHAR)
SELECT pick FROM table_2886617_3 WHERE player = "Marko Makinen"
8,361
<question>: What college club team did the Dallas Stars choose their draft pick from? <context>: CREATE TABLE table_2886617_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR)
SELECT college_junior_club_team FROM table_2886617_9 WHERE nhl_team = "Dallas Stars"
8,362
<question>: Who was picked for the draft by St. Louis Blues? <context>: CREATE TABLE table_2886617_9 (player VARCHAR, nhl_team VARCHAR)
SELECT player FROM table_2886617_9 WHERE nhl_team = "St. Louis Blues"
8,363
<question>: Which stadium is located in Adelaide, South Australia? <context>: CREATE TABLE table_28885977_1 (stadium VARCHAR, location VARCHAR)
SELECT stadium FROM table_28885977_1 WHERE location = "Adelaide, South Australia"
8,364
<question>: In what location was a stadium built for the St Kilda Football Club? <context>: CREATE TABLE table_28885977_1 (location VARCHAR, built_for VARCHAR)
SELECT location FROM table_28885977_1 WHERE built_for = "St Kilda Football Club"
8,365
<question>: What is the location of the Moorabbin Oval stadium? <context>: CREATE TABLE table_28885977_1 (location VARCHAR, stadium VARCHAR)
SELECT location FROM table_28885977_1 WHERE stadium = "Moorabbin Oval"
8,366
<question>: What was the stadium in Adelaide, South Australia built for? <context>: CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)
SELECT built_for FROM table_28885977_1 WHERE location = "Adelaide, South Australia"
8,367
<question>: What was the stadium in Moorabbin, Victoria built for? <context>: CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR)
SELECT built_for FROM table_28885977_1 WHERE location = "Moorabbin, Victoria"
8,368
<question>: What was the capacity at construction of the stadium in Gold Coast, Queensland? <context>: CREATE TABLE table_28885977_1 (capacity_at_construction VARCHAR, location VARCHAR)
SELECT capacity_at_construction FROM table_28885977_1 WHERE location = "Gold Coast, Queensland"
8,369
<question>: how many total number of moto2/250cc when country is united states <context>: CREATE TABLE table_2889810_2 (moto2_250cc VARCHAR, country VARCHAR)
SELECT COUNT(moto2_250cc) FROM table_2889810_2 WHERE country = "United States"
8,370
<question>: how many minimum 350cc has <context>: CREATE TABLE table_2889810_2 (Id VARCHAR)
SELECT MIN(350 AS cc) FROM table_2889810_2
8,371
<question>: how many country has moto3/125cc with 15 <context>: CREATE TABLE table_2889810_2 (country VARCHAR, moto3_125cc VARCHAR)
SELECT country FROM table_2889810_2 WHERE moto3_125cc = 15
8,372
<question>: When arthur collins is the winner what is the reason? <context>: CREATE TABLE table_28898948_3 (reason VARCHAR, winner VARCHAR)
SELECT reason FROM table_28898948_3 WHERE winner = "Arthur Collins"
8,373
<question>: When ihaia tainui is the incumbent what is the date? <context>: CREATE TABLE table_28898948_3 (date VARCHAR, incumbent VARCHAR)
SELECT date FROM table_28898948_3 WHERE incumbent = "Ihaia Tainui"
8,374
<question>: When rangitikei is the electorate who is the winner? <context>: CREATE TABLE table_28898948_3 (winner VARCHAR, electorate VARCHAR)
SELECT winner FROM table_28898948_3 WHERE electorate = "Rangitikei"
8,375
<question>: When waikaia is the electorate what is the highest by-election? <context>: CREATE TABLE table_28898948_3 (by_election INTEGER, electorate VARCHAR)
SELECT MAX(by_election) FROM table_28898948_3 WHERE electorate = "Waikaia"
8,376
<question>: When 1881 is the by-election and death is the reason who is the incumbent? <context>: CREATE TABLE table_28898948_3 (incumbent VARCHAR, reason VARCHAR, by_election VARCHAR)
SELECT incumbent FROM table_28898948_3 WHERE reason = "Death" AND by_election = 1881
8,377
<question>: What is the name of the partner that has a winner outcome and a hard surface? <context>: CREATE TABLE table_28948937_3 (partner VARCHAR, outcome VARCHAR, surface VARCHAR)
SELECT partner FROM table_28948937_3 WHERE outcome = "Winner" AND surface = "Hard"
8,378
<question>: How many week 2 scores have a week 7 score of 40 + 40 = 80? <context>: CREATE TABLE table_28946565_2 (week_2 VARCHAR, week_7 VARCHAR)
SELECT COUNT(week_2) FROM table_28946565_2 WHERE week_7 = 40 + 40 = 80
8,379
<question>: What is the smallest week 3 score? <context>: CREATE TABLE table_28946565_2 (week_3 INTEGER)
SELECT MIN(week_3) FROM table_28946565_2
8,380
<question>: Which couple had a week 2 score of exactly 23? <context>: CREATE TABLE table_28946565_2 (couple VARCHAR, week_2 VARCHAR)
SELECT couple FROM table_28946565_2 WHERE week_2 = 23
8,381
<question>: when 68 is the episode number what is the series number? <context>: CREATE TABLE table_28967275_3 (series__number VARCHAR, episode__number VARCHAR)
SELECT series__number FROM table_28967275_3 WHERE episode__number = 68
8,382
<question>: when 69 is the episode number what is the air date? <context>: CREATE TABLE table_28967275_3 (original_air_date VARCHAR, episode__number VARCHAR)
SELECT original_air_date FROM table_28967275_3 WHERE episode__number = 69
8,383
<question>: What draft pick is a goaltender? <context>: CREATE TABLE table_2897457_1 (pick__number VARCHAR, position VARCHAR)
SELECT pick__number FROM table_2897457_1 WHERE position = "Goaltender"
8,384
<question>: What position does Olaf Kolzig play? <context>: CREATE TABLE table_2897457_1 (position VARCHAR, player VARCHAR)
SELECT position FROM table_2897457_1 WHERE player = "Olaf Kolzig"
8,385
<question>: What team drafted a player from Sweden? <context>: CREATE TABLE table_2897457_1 (nhl_team VARCHAR, nationality VARCHAR)
SELECT nhl_team FROM table_2897457_1 WHERE nationality = "Sweden"
8,386
<question>: How many company commanders were commissioned or elected on November 12, 1861? <context>: CREATE TABLE table_29023680_2 (company VARCHAR, date_of_election_commission VARCHAR)
SELECT COUNT(company) AS Commander FROM table_29023680_2 WHERE date_of_election_commission = "November 12, 1861"
8,387
<question>: In the 250 series on clay what were the scores? <context>: CREATE TABLE table_29026564_10 (score VARCHAR, surface VARCHAR, category VARCHAR)
SELECT score FROM table_29026564_10 WHERE surface = "Clay" AND category = "250 series"
8,388
<question>: what is the most amount of cattle where they live in british columbia <context>: CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)
SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "British Columbia"
8,389
<question>: what is the most number where cattle is 13000 <context>: CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_cows VARCHAR)
SELECT COUNT(province) FROM table_29012710_1 WHERE number_of_dairy_cows = 13000
8,390
<question>: what is the amount where the area is new brunswick <context>: CREATE TABLE table_29012710_1 (production__hectolitres_ VARCHAR, province VARCHAR)
SELECT production__hectolitres_ FROM table_29012710_1 WHERE province = "New Brunswick"
8,391
<question>: what is the location where there are over 200 cattle businesses <context>: CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_farms VARCHAR)
SELECT province FROM table_29012710_1 WHERE number_of_dairy_farms = 200
8,392
<question>: what is the least amount of cattle head <context>: CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER)
SELECT MIN(number_of_dairy_cows) FROM table_29012710_1
8,393
<question>: what is the least amount of milk cattle in ontario <context>: CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR)
SELECT MIN(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "Ontario"
8,394
<question>: What is the production code of the episode that was watched by 3.81 million U.S. viewers? <context>: CREATE TABLE table_29054902_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT production_code FROM table_29054902_1 WHERE us_viewers__million_ = "3.81"
8,395
<question>: Who wrote the episode with a production code of 116? <context>: CREATE TABLE table_29087004_2 (written_by VARCHAR, production_code VARCHAR)
SELECT written_by FROM table_29087004_2 WHERE production_code = 116
8,396
<question>: What number episode in the series had and original United States air date of December 24, 2010? <context>: CREATE TABLE table_29087004_2 (series__number INTEGER, united_states_original_airdate VARCHAR)
SELECT MAX(series__number) FROM table_29087004_2 WHERE united_states_original_airdate = "December 24, 2010"
8,397
<question>: Who wrote the episode directed by Jos Humphrey that had an original Canadian air date that was unknown and a United States original air date of August 27, 2011? <context>: CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR)
SELECT written_by FROM table_29087004_2 WHERE directed_by = "Jos Humphrey" AND canada_original_airdate = "Unknown" AND united_states_original_airdate = "August 27, 2011"
8,398
<question>: What is the original United States air date of the episode written by Mike Ferris? <context>: CREATE TABLE table_29087004_2 (united_states_original_airdate VARCHAR, written_by VARCHAR)
SELECT united_states_original_airdate FROM table_29087004_2 WHERE written_by = "Mike Ferris"
8,399
<question>: Who was Andrew and Georgies guest when Jamie and Johns guest was Joe Calzaghe? <context>: CREATE TABLE table_29141354_2 (andrew_and_georgies_guest VARCHAR, jamie_and_johns_guest VARCHAR)
SELECT andrew_and_georgies_guest FROM table_29141354_2 WHERE jamie_and_johns_guest = "Joe Calzaghe"