Netflix Subscription Fee In Different Countries
Which countries pay the most and least for Netflix in 2021?
@kaggle.prasertk_netflix_subscription_price_in_different_countries
Which countries pay the most and least for Netflix in 2021?
@kaggle.prasertk_netflix_subscription_price_in_different_countries
CREATE TABLE netflix_price_in_different_countries (
"country" VARCHAR,
"total_library_size" BIGINT,
"no_of_tv_shows" BIGINT,
"no_of_movies" BIGINT,
"cost_per_month_basic" DOUBLE,
"cost_per_month_standard" DOUBLE,
"cost_per_month_premium" DOUBLE
);
CREATE TABLE netflix_subscription_fee_dec_2021 (
"country_code" VARCHAR,
"country" VARCHAR,
"total_library_size" BIGINT,
"no_of_tv_shows" BIGINT,
"no_of_movies" BIGINT,
"cost_per_month_basic" DOUBLE,
"cost_per_month_standard" DOUBLE,
"cost_per_month_premium" DOUBLE
);
Anyone who has the link will be able to view this.