Finding The Right Choices Get On The Right Path
Data driven decision making to assist a new streaming service
@kaggle.jaymesantosneto_finding_the_right_choices_get_on_the_right_path
Data driven decision making to assist a new streaming service
@kaggle.jaymesantosneto_finding_the_right_choices_get_on_the_right_path
CREATE TABLE amazon_movies (
"id" VARCHAR,
"title" VARCHAR,
"type" VARCHAR,
"year" BIGINT,
"runtime" BIGINT,
"genres" VARCHAR,
"production_countries" VARCHAR,
"seasons" VARCHAR,
"imdb_id" VARCHAR,
"imdb_score" DOUBLE,
"imdb_votes" BIGINT,
"tmdb_popularity" DOUBLE,
"tmdb_score" DOUBLE
);
CREATE TABLE amazon_series (
"id" VARCHAR,
"title" VARCHAR,
"type" VARCHAR,
"year" BIGINT,
"runtime" BIGINT,
"genres" VARCHAR,
"production_countries" VARCHAR,
"seasons" BIGINT,
"imdb_id" VARCHAR,
"imdb_score" DOUBLE,
"imdb_votes" BIGINT,
"tmdb_popularity" DOUBLE,
"tmdb_score" DOUBLE
);
CREATE TABLE netflix_movies (
"id" VARCHAR,
"title" VARCHAR,
"type" VARCHAR,
"year" BIGINT,
"runtime" BIGINT,
"genres" VARCHAR,
"production_countries" VARCHAR,
"seasons" VARCHAR,
"imdb_id" VARCHAR,
"imdb_score" DOUBLE,
"imdb_votes" BIGINT,
"tmdb_popularity" DOUBLE,
"tmdb_score" DOUBLE
);
CREATE TABLE netflix_series (
"id" VARCHAR,
"title" VARCHAR,
"type" VARCHAR,
"year" BIGINT,
"runtime" BIGINT,
"genres" VARCHAR,
"production_countries" VARCHAR,
"seasons" BIGINT,
"imdb_id" VARCHAR,
"imdb_score" DOUBLE,
"imdb_votes" BIGINT,
"tmdb_popularity" DOUBLE,
"tmdb_score" DOUBLE
);
Anyone who has the link will be able to view this.