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