combined_text
stringlengths 106
1.05k
|
---|
###question:Which titles have been published by Gamehouse Live?###answer:SELECT title FROM table_28621502_1 WHERE publisher = "GameHouse Live"###context:CREATE TABLE table_28621502_1 (title VARCHAR, publisher VARCHAR) |
###question:What was pinky's bmi at the reunion?###answer:SELECT reunion_bmi FROM table_28654454_5 WHERE contestant = "Pinky"###context:CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR) |
###question:What was miles's bmi att the reunion?###answer:SELECT COUNT(reunion_bmi) FROM table_28654454_5 WHERE contestant = "Miles"###context:CREATE TABLE table_28654454_5 (reunion_bmi VARCHAR, contestant VARCHAR) |
###question:How many lbs were lost at the reunion by the contestant whose finale weight was 151.4?###answer:SELECT lbs_lost_reunion FROM table_28654454_5 WHERE finale_weight = "151.4"###context:CREATE TABLE table_28654454_5 (lbs_lost_reunion VARCHAR, finale_weight VARCHAR) |
###question:How many contestants had a starting bmi of 33.1?###answer:SELECT COUNT(finale_weight) FROM table_28654454_5 WHERE starting_bmi = "33.1"###context:CREATE TABLE table_28654454_5 (finale_weight VARCHAR, starting_bmi VARCHAR) |
###question:What is the reunion weight of the contestant that lost 52 lbs at the reunion?###answer:SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_reunion = 52###context:CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_reunion VARCHAR) |
###question:What is the reunion weight of the contestant who lost 74.4 lbs at the finale?###answer:SELECT reunion_weight FROM table_28654454_5 WHERE lbs_lost_finale = "74.4"###context:CREATE TABLE table_28654454_5 (reunion_weight VARCHAR, lbs_lost_finale VARCHAR) |
###question:Who is the team when the category is blocks per game?###answer:SELECT team FROM table_28628309_8 WHERE category = "Blocks per game"###context:CREATE TABLE table_28628309_8 (team VARCHAR, category VARCHAR) |
###question:What is the listed in games played when the player is jimmy alapag?###answer:SELECT games_played FROM table_28628309_8 WHERE player = "Jimmy Alapag"###context:CREATE TABLE table_28628309_8 (games_played VARCHAR, player VARCHAR) |
###question:What is the team when player is listed as Ronjay Buenafe?###answer:SELECT team FROM table_28628309_8 WHERE player = "Ronjay Buenafe"###context:CREATE TABLE table_28628309_8 (team VARCHAR, player VARCHAR) |
###question:What is the name of the player when the category is listed as field goal percentage?###answer:SELECT player FROM table_28628309_8 WHERE category = "Field goal percentage"###context:CREATE TABLE table_28628309_8 (player VARCHAR, category VARCHAR) |
###question:What is the games played when the category is points per game?###answer:SELECT MIN(games_played) FROM table_28628309_8 WHERE category = "Points per game"###context:CREATE TABLE table_28628309_8 (games_played INTEGER, category VARCHAR) |
###question:Who is the player when the category is steals per game?###answer:SELECT player FROM table_28628309_9 WHERE category = "Steals per game"###context:CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR) |
###question:What are the names of the categories when the player is olsen racela?###answer:SELECT category FROM table_28628309_9 WHERE player = "Olsen Racela"###context:CREATE TABLE table_28628309_9 (category VARCHAR, player VARCHAR) |
###question:How many times is a total listed when the player is Jay Washington?###answer:SELECT COUNT(totals) FROM table_28628309_9 WHERE player = "Jay Washington"###context:CREATE TABLE table_28628309_9 (totals VARCHAR, player VARCHAR) |
###question:What is the total listed when the average is 0.667 and the category is 3-pt field goal percentage?###answer:SELECT totals FROM table_28628309_9 WHERE average = "0.667" AND category = "3-pt field goal percentage"###context:CREATE TABLE table_28628309_9 (totals VARCHAR, average VARCHAR, category VARCHAR) |
###question:What is the name of the player when the category is 3-pt field goal percentage?###answer:SELECT player FROM table_28628309_9 WHERE category = "3-pt field goal percentage"###context:CREATE TABLE table_28628309_9 (player VARCHAR, category VARCHAR) |
###question:What are the titles of episodes with 5.66 million US viewers?###answer:SELECT title FROM table_2866514_1 WHERE us_viewers__million_ = "5.66"###context:CREATE TABLE table_2866514_1 (title VARCHAR, us_viewers__million_ VARCHAR) |
###question:What are the titles of episodes directed by whitney ransick?###answer:SELECT title FROM table_2866514_1 WHERE directed_by = "Whitney Ransick"###context:CREATE TABLE table_2866514_1 (title VARCHAR, directed_by VARCHAR) |
###question:Who wrote the episode with 3.96 million US viewers?###answer:SELECT written_by FROM table_2866514_1 WHERE us_viewers__million_ = "3.96"###context:CREATE TABLE table_2866514_1 (written_by VARCHAR, us_viewers__million_ VARCHAR) |
###question:What was the maximum value that Christer Tornell gave when Trine Dehli Cleve gave a 9?###answer:SELECT MAX(christer_tornell) FROM table_28677723_8 WHERE trine_dehli_cleve = 9###context:CREATE TABLE table_28677723_8 (christer_tornell INTEGER, trine_dehli_cleve VARCHAR) |
###question:How many games did Robert Peare play?###answer:SELECT MAX(games) FROM table_28693349_2 WHERE player = "Robert Peare"###context:CREATE TABLE table_28693349_2 (games INTEGER, player VARCHAR) |
###question:How many free throws did Charles Pearman score?###answer:SELECT MAX(free_throws) FROM table_28693349_2 WHERE player = "Charles Pearman"###context:CREATE TABLE table_28693349_2 (free_throws INTEGER, player VARCHAR) |
###question:How many shared titles does the club whose last final was 2012 have?###answer:SELECT Shared AS titles FROM table_2869837_1 WHERE last_final = 2012###context:CREATE TABLE table_2869837_1 (Shared VARCHAR, last_final VARCHAR) |
###question:What was the year of the last final for the club whose last title was 1990?###answer:SELECT last_final FROM table_2869837_1 WHERE last_title = "1990"###context:CREATE TABLE table_2869837_1 (last_final VARCHAR, last_title VARCHAR) |
###question:What is the minimum number of shared titles for the club whose last final was in 2006?###answer:SELECT MIN(Shared) AS titles FROM table_2869837_1 WHERE last_final = 2006###context:CREATE TABLE table_2869837_1 (Shared INTEGER, last_final VARCHAR) |
###question:What is the latest year of last final for the club whose last title was in 1994?###answer:SELECT MAX(last_final) FROM table_2869837_1 WHERE last_title = "1994"###context:CREATE TABLE table_2869837_1 (last_final INTEGER, last_title VARCHAR) |
###question:What are the number of runners up for Royal School Dungannon?###answer:SELECT runners_up FROM table_2869837_1 WHERE school = "Royal school Dungannon"###context:CREATE TABLE table_2869837_1 (runners_up VARCHAR, school VARCHAR) |
###question:What is the track whent the vocal percussionist is unknown?###answer:SELECT track FROM table_28715942_5 WHERE vocal_percussionist = "unknown"###context:CREATE TABLE table_28715942_5 (track VARCHAR, vocal_percussionist VARCHAR) |
###question:Who is the arranger when the vocal percussionist is Alexei Kalveks and Dave Brennan?###answer:SELECT arranger_s_ FROM table_28715942_5 WHERE vocal_percussionist = "Alexei Kalveks and Dave Brennan"###context:CREATE TABLE table_28715942_5 (arranger_s_ VARCHAR, vocal_percussionist VARCHAR) |
###question:What is the original artist when the vocal percussionist is Alexei Kalveks?###answer:SELECT original_artist FROM table_28715942_5 WHERE vocal_percussionist = "Alexei Kalveks"###context:CREATE TABLE table_28715942_5 (original_artist VARCHAR, vocal_percussionist VARCHAR) |
###question:How few km 2 does the area with Nay Pyi Taw as capital cover?###answer:SELECT MIN(area__km_2__) FROM table_28741_1 WHERE capital = "Nay Pyi Taw"###context:CREATE TABLE table_28741_1 (area__km_2__ INTEGER, capital VARCHAR) |
###question:What is the 2012 population of Indonesia?###answer:SELECT population_2012_ FROM table_28741_1 WHERE country = "Indonesia"###context:CREATE TABLE table_28741_1 (population_2012_ VARCHAR, country VARCHAR) |
###question:What are the numbers for GDP (nominal) per capita and USD (2012) of the area with Phnom Penh as capital?###answer:SELECT COUNT(gdp__nominal__per_capita), _usd__2012_ FROM table_28741_1 WHERE capital = "Phnom Penh"###context:CREATE TABLE table_28741_1 (_usd__2012_ VARCHAR, gdp__nominal__per_capita VARCHAR, capital VARCHAR) |
###question:What is the distance of jockey Jason Titley?###answer:SELECT distance FROM table_28750142_1 WHERE jockey = "Jason Titley"###context:CREATE TABLE table_28750142_1 (distance VARCHAR, jockey VARCHAR) |
###question:What is the name of the jockey for Pink Gin?###answer:SELECT jockey FROM table_28750142_1 WHERE name = "Pink Gin"###context:CREATE TABLE table_28750142_1 (jockey VARCHAR, name VARCHAR) |
###question:The location attendance is ford center 17,021 on what dates?###answer:SELECT date FROM table_28768469_10 WHERE location_attendance = "Ford Center 17,021"###context:CREATE TABLE table_28768469_10 (date VARCHAR, location_attendance VARCHAR) |
###question:In game 73, what were the total number of high assists?###answer:SELECT COUNT(high_assists) FROM table_28768469_10 WHERE game = 73###context:CREATE TABLE table_28768469_10 (high_assists VARCHAR, game VARCHAR) |
###question:What is the location for the game on October 20 with it's corresponding attendance?###answer:SELECT location_attendance FROM table_28768469_2 WHERE date = "October 20"###context:CREATE TABLE table_28768469_2 (location_attendance VARCHAR, date VARCHAR) |
###question:Who directed episode 11 of the season?###answer:SELECT director FROM table_28785738_1 WHERE no_in_season = 11###context:CREATE TABLE table_28785738_1 (director VARCHAR, no_in_season VARCHAR) |
###question:How many episode titles does episode 19 in the season have?###answer:SELECT COUNT(title) FROM table_28802668_3 WHERE no_in_season = 19###context:CREATE TABLE table_28802668_3 (title VARCHAR, no_in_season VARCHAR) |
###question:if the bbi is 4/39 what is the average###answer:SELECT average FROM table_28798161_3 WHERE bbi = "4/39"###context:CREATE TABLE table_28798161_3 (average VARCHAR, bbi VARCHAR) |
###question:if the economy is 3.63 what is the bbi###answer:SELECT bbi FROM table_28798161_3 WHERE economy = "3.63"###context:CREATE TABLE table_28798161_3 (bbi VARCHAR, economy VARCHAR) |
###question:in the leage what was the minimum 4wi###answer:SELECT MIN(4 AS wi) FROM table_28798161_3###context:CREATE TABLE table_28798161_3 (Id VARCHAR) |
###question:What is the poor law union on Marshalstown?###answer:SELECT poor_law_union FROM table_28802165_1 WHERE townland = "Marshalstown"###context:CREATE TABLE table_28802165_1 (poor_law_union VARCHAR, townland VARCHAR) |
###question:What is the maximum acres in Castledermot?###answer:SELECT MAX(s_acre) FROM table_28802165_1 WHERE civil_parish = "Castledermot"###context:CREATE TABLE table_28802165_1 (s_acre INTEGER, civil_parish VARCHAR) |
###question:What is the civil parish of Aghafullim?###answer:SELECT civil_parish FROM table_28802165_1 WHERE townland = "Aghafullim"###context:CREATE TABLE table_28802165_1 (civil_parish VARCHAR, townland VARCHAR) |
###question:How many acres is the townland of Maddenstown Middle?###answer:SELECT s_acre FROM table_28802165_1 WHERE townland = "Maddenstown Middle"###context:CREATE TABLE table_28802165_1 (s_acre VARCHAR, townland VARCHAR) |
###question:How many original air dates did the episode directed by Bethany rooney have?###answer:SELECT COUNT(original_air_date) FROM table_28859177_3 WHERE directed_by = "Bethany Rooney"###context:CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR) |
###question:What is the production code for the episode that aired on October 15, 2004?###answer:SELECT production_code FROM table_28859177_3 WHERE original_air_date = "October 15, 2004"###context:CREATE TABLE table_28859177_3 (production_code VARCHAR, original_air_date VARCHAR) |
###question:What is the original air date for episode graeme clifford directed and lindsay sturman wrote?###answer:SELECT original_air_date FROM table_28859177_3 WHERE directed_by = "Graeme Clifford" AND written_by = "Lindsay Sturman"###context:CREATE TABLE table_28859177_3 (original_air_date VARCHAR, directed_by VARCHAR, written_by VARCHAR) |
###question:Who was the player that was picked by Los Angeles Kings?###answer:SELECT player FROM table_2886617_6 WHERE nhl_team = "Los Angeles Kings"###context:CREATE TABLE table_2886617_6 (player VARCHAR, nhl_team VARCHAR) |
###question:What nationality was peter slamiar?###answer:SELECT nationality FROM table_2886617_6 WHERE player = "Peter Slamiar"###context:CREATE TABLE table_2886617_6 (nationality VARCHAR, player VARCHAR) |
###question:What team did the New York Rangers recruit a player from?###answer:SELECT college_junior_club_team FROM table_2886617_4 WHERE nhl_team = "New York Rangers"###context:CREATE TABLE table_2886617_4 (college_junior_club_team VARCHAR, nhl_team VARCHAR) |
###question:How many countries had players named Marc Savard get picked?###answer:SELECT COUNT(nationality) FROM table_2886617_4 WHERE player = "Marc Savard"###context:CREATE TABLE table_2886617_4 (nationality VARCHAR, player VARCHAR) |
###question:What country does the player who joined the Vancouver Canucks originally hail from?###answer:SELECT nationality FROM table_2886617_4 WHERE nhl_team = "Vancouver Canucks"###context:CREATE TABLE table_2886617_4 (nationality VARCHAR, nhl_team VARCHAR) |
###question:How many times did Alyn McCauley get picked?###answer:SELECT COUNT(pick) FROM table_2886617_4 WHERE player = "Alyn McCauley"###context:CREATE TABLE table_2886617_4 (pick VARCHAR, player VARCHAR) |
###question:Which nationality has left wing as the position and college/junior/team is portland winterhawks (whl)?###answer:SELECT nationality FROM table_2886617_3 WHERE position = "Left Wing" AND college_junior_club_team = "Portland Winterhawks (WHL)"###context:CREATE TABLE table_2886617_3 (nationality VARCHAR, position VARCHAR, college_junior_club_team VARCHAR) |
###question:Which nhl team has the player kevin mckay?###answer:SELECT nhl_team FROM table_2886617_3 WHERE player = "Kevin McKay"###context:CREATE TABLE table_2886617_3 (nhl_team VARCHAR, player VARCHAR) |
###question:How many picks have canada as the nationality and larry courville is the player?###answer:SELECT COUNT(pick) FROM table_2886617_3 WHERE nationality = "Canada" AND player = "Larry Courville"###context:CREATE TABLE table_2886617_3 (pick VARCHAR, nationality VARCHAR, player VARCHAR) |
###question:Which pick has marko makinen as the player?###answer:SELECT pick FROM table_2886617_3 WHERE player = "Marko Makinen"###context:CREATE TABLE table_2886617_3 (pick VARCHAR, player VARCHAR) |
###question:What college club team did the Dallas Stars choose their draft pick from?###answer:SELECT college_junior_club_team FROM table_2886617_9 WHERE nhl_team = "Dallas Stars"###context:CREATE TABLE table_2886617_9 (college_junior_club_team VARCHAR, nhl_team VARCHAR) |
###question:Who was picked for the draft by St. Louis Blues?###answer:SELECT player FROM table_2886617_9 WHERE nhl_team = "St. Louis Blues"###context:CREATE TABLE table_2886617_9 (player VARCHAR, nhl_team VARCHAR) |
###question:Which stadium is located in Adelaide, South Australia? ###answer:SELECT stadium FROM table_28885977_1 WHERE location = "Adelaide, South Australia"###context:CREATE TABLE table_28885977_1 (stadium VARCHAR, location VARCHAR) |
###question:In what location was a stadium built for the St Kilda Football Club?###answer:SELECT location FROM table_28885977_1 WHERE built_for = "St Kilda Football Club"###context:CREATE TABLE table_28885977_1 (location VARCHAR, built_for VARCHAR) |
###question:What is the location of the Moorabbin Oval stadium?###answer:SELECT location FROM table_28885977_1 WHERE stadium = "Moorabbin Oval"###context:CREATE TABLE table_28885977_1 (location VARCHAR, stadium VARCHAR) |
###question:What was the stadium in Adelaide, South Australia built for? ###answer:SELECT built_for FROM table_28885977_1 WHERE location = "Adelaide, South Australia"###context:CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR) |
###question:What was the stadium in Moorabbin, Victoria built for?###answer:SELECT built_for FROM table_28885977_1 WHERE location = "Moorabbin, Victoria"###context:CREATE TABLE table_28885977_1 (built_for VARCHAR, location VARCHAR) |
###question:What was the capacity at construction of the stadium in Gold Coast, Queensland? ###answer:SELECT capacity_at_construction FROM table_28885977_1 WHERE location = "Gold Coast, Queensland"###context:CREATE TABLE table_28885977_1 (capacity_at_construction VARCHAR, location VARCHAR) |
###question:how many total number of moto2/250cc when country is united states###answer:SELECT COUNT(moto2_250cc) FROM table_2889810_2 WHERE country = "United States"###context:CREATE TABLE table_2889810_2 (moto2_250cc VARCHAR, country VARCHAR) |
###question:how many minimum 350cc has###answer:SELECT MIN(350 AS cc) FROM table_2889810_2###context:CREATE TABLE table_2889810_2 (Id VARCHAR) |
###question:how many country has moto3/125cc with 15###answer:SELECT country FROM table_2889810_2 WHERE moto3_125cc = 15###context:CREATE TABLE table_2889810_2 (country VARCHAR, moto3_125cc VARCHAR) |
###question:When arthur collins is the winner what is the reason?###answer:SELECT reason FROM table_28898948_3 WHERE winner = "Arthur Collins"###context:CREATE TABLE table_28898948_3 (reason VARCHAR, winner VARCHAR) |
###question:When ihaia tainui is the incumbent what is the date?###answer:SELECT date FROM table_28898948_3 WHERE incumbent = "Ihaia Tainui"###context:CREATE TABLE table_28898948_3 (date VARCHAR, incumbent VARCHAR) |
###question:When rangitikei is the electorate who is the winner?###answer:SELECT winner FROM table_28898948_3 WHERE electorate = "Rangitikei"###context:CREATE TABLE table_28898948_3 (winner VARCHAR, electorate VARCHAR) |
###question:When waikaia is the electorate what is the highest by-election?###answer:SELECT MAX(by_election) FROM table_28898948_3 WHERE electorate = "Waikaia"###context:CREATE TABLE table_28898948_3 (by_election INTEGER, electorate VARCHAR) |
###question:When 1881 is the by-election and death is the reason who is the incumbent?###answer:SELECT incumbent FROM table_28898948_3 WHERE reason = "Death" AND by_election = 1881###context:CREATE TABLE table_28898948_3 (incumbent VARCHAR, reason VARCHAR, by_election VARCHAR) |
###question:What is the name of the partner that has a winner outcome and a hard surface?###answer:SELECT partner FROM table_28948937_3 WHERE outcome = "Winner" AND surface = "Hard"###context:CREATE TABLE table_28948937_3 (partner VARCHAR, outcome VARCHAR, surface VARCHAR) |
###question:How many week 2 scores have a week 7 score of 40 + 40 = 80?###answer:SELECT COUNT(week_2) FROM table_28946565_2 WHERE week_7 = 40 + 40 = 80###context:CREATE TABLE table_28946565_2 (week_2 VARCHAR, week_7 VARCHAR) |
###question:What is the smallest week 3 score?###answer:SELECT MIN(week_3) FROM table_28946565_2###context:CREATE TABLE table_28946565_2 (week_3 INTEGER) |
###question:Which couple had a week 2 score of exactly 23?###answer:SELECT couple FROM table_28946565_2 WHERE week_2 = 23###context:CREATE TABLE table_28946565_2 (couple VARCHAR, week_2 VARCHAR) |
###question:when 68 is the episode number what is the series number?###answer:SELECT series__number FROM table_28967275_3 WHERE episode__number = 68###context:CREATE TABLE table_28967275_3 (series__number VARCHAR, episode__number VARCHAR) |
###question:when 69 is the episode number what is the air date?###answer:SELECT original_air_date FROM table_28967275_3 WHERE episode__number = 69###context:CREATE TABLE table_28967275_3 (original_air_date VARCHAR, episode__number VARCHAR) |
###question:What draft pick is a goaltender?###answer:SELECT pick__number FROM table_2897457_1 WHERE position = "Goaltender"###context:CREATE TABLE table_2897457_1 (pick__number VARCHAR, position VARCHAR) |
###question:What position does Olaf Kolzig play?###answer:SELECT position FROM table_2897457_1 WHERE player = "Olaf Kolzig"###context:CREATE TABLE table_2897457_1 (position VARCHAR, player VARCHAR) |
###question:What team drafted a player from Sweden?###answer:SELECT nhl_team FROM table_2897457_1 WHERE nationality = "Sweden"###context:CREATE TABLE table_2897457_1 (nhl_team VARCHAR, nationality VARCHAR) |
###question:How many company commanders were commissioned or elected on November 12, 1861?###answer:SELECT COUNT(company) AS Commander FROM table_29023680_2 WHERE date_of_election_commission = "November 12, 1861"###context:CREATE TABLE table_29023680_2 (company VARCHAR, date_of_election_commission VARCHAR) |
###question:In the 250 series on clay what were the scores?###answer:SELECT score FROM table_29026564_10 WHERE surface = "Clay" AND category = "250 series"###context:CREATE TABLE table_29026564_10 (score VARCHAR, surface VARCHAR, category VARCHAR) |
###question:what is the most amount of cattle where they live in british columbia###answer:SELECT MAX(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "British Columbia"###context:CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR) |
###question:what is the most number where cattle is 13000###answer:SELECT COUNT(province) FROM table_29012710_1 WHERE number_of_dairy_cows = 13000###context:CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_cows VARCHAR) |
###question:what is the amount where the area is new brunswick###answer:SELECT production__hectolitres_ FROM table_29012710_1 WHERE province = "New Brunswick"###context:CREATE TABLE table_29012710_1 (production__hectolitres_ VARCHAR, province VARCHAR) |
###question:what is the location where there are over 200 cattle businesses###answer:SELECT province FROM table_29012710_1 WHERE number_of_dairy_farms = 200###context:CREATE TABLE table_29012710_1 (province VARCHAR, number_of_dairy_farms VARCHAR) |
###question:what is the least amount of cattle head###answer:SELECT MIN(number_of_dairy_cows) FROM table_29012710_1###context:CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER) |
###question:what is the least amount of milk cattle in ontario###answer:SELECT MIN(number_of_dairy_cows) FROM table_29012710_1 WHERE province = "Ontario"###context:CREATE TABLE table_29012710_1 (number_of_dairy_cows INTEGER, province VARCHAR) |
###question:What is the production code of the episode that was watched by 3.81 million U.S. viewers? ###answer:SELECT production_code FROM table_29054902_1 WHERE us_viewers__million_ = "3.81"###context:CREATE TABLE table_29054902_1 (production_code VARCHAR, us_viewers__million_ VARCHAR) |
###question:Who wrote the episode with a production code of 116?###answer:SELECT written_by FROM table_29087004_2 WHERE production_code = 116###context:CREATE TABLE table_29087004_2 (written_by VARCHAR, production_code VARCHAR) |
###question:What number episode in the series had and original United States air date of December 24, 2010?###answer:SELECT MAX(series__number) FROM table_29087004_2 WHERE united_states_original_airdate = "December 24, 2010"###context:CREATE TABLE table_29087004_2 (series__number INTEGER, united_states_original_airdate VARCHAR) |
###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?###answer: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"###context:CREATE TABLE table_29087004_2 (written_by VARCHAR, united_states_original_airdate VARCHAR, directed_by VARCHAR, canada_original_airdate VARCHAR) |
###question:What is the original United States air date of the episode written by Mike Ferris? ###answer:SELECT united_states_original_airdate FROM table_29087004_2 WHERE written_by = "Mike Ferris"###context:CREATE TABLE table_29087004_2 (united_states_original_airdate VARCHAR, written_by VARCHAR) |
###question:Who was Andrew and Georgies guest when Jamie and Johns guest was Joe Calzaghe?###answer:SELECT andrew_and_georgies_guest FROM table_29141354_2 WHERE jamie_and_johns_guest = "Joe Calzaghe"###context:CREATE TABLE table_29141354_2 (andrew_and_georgies_guest VARCHAR, jamie_and_johns_guest VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.