Netflix "Top 10" TV Shows And Films
Dataset of Top 10 Netflix films and TV shows globally and by countries
@kaggle.dhruvildave_netflix_top_10_tv_shows_and_films
Dataset of Top 10 Netflix films and TV shows globally and by countries
@kaggle.dhruvildave_netflix_top_10_tv_shows_and_films
CREATE TABLE all_weeks_countries (
"country_name" VARCHAR,
"country_iso2" VARCHAR,
"week" TIMESTAMP,
"category" VARCHAR,
"weekly_rank" BIGINT,
"show_title" VARCHAR,
"season_title" VARCHAR,
"cumulative_weeks_in_top_10" BIGINT
);
CREATE TABLE all_weeks_global (
"week" TIMESTAMP,
"category" VARCHAR,
"weekly_rank" BIGINT,
"show_title" VARCHAR,
"season_title" VARCHAR,
"weekly_hours_viewed" BIGINT,
"cumulative_weeks_in_top_10" BIGINT
);
CREATE TABLE most_popular (
"category" VARCHAR,
"rank" BIGINT,
"show_title" VARCHAR,
"season_title" VARCHAR,
"hours_viewed_first_28_days" BIGINT
);
Anyone who has the link will be able to view this.