Baselight

Movie Name And Review Data Set

Movie Name and Review Data set

@kaggle.meetnagadia_movie_rating

Loading...
Loading...

About this Dataset

Movie Name And Review Data Set

Context

This dataset contains :

  1. movieid: it is the id of the movie and is also connected with rating.csv
  2. title: It is the movie name
  3. genres: a style or category of movie

Tables

Movies

@kaggle.meetnagadia_movie_rating.movies
  • 291.38 KB
  • 10329 rows
  • 3 columns
Loading...

CREATE TABLE movies (
  "movieid" BIGINT,
  "title" VARCHAR,
  "genres" VARCHAR
);

Ratings

@kaggle.meetnagadia_movie_rating.ratings
  • 865.94 KB
  • 105339 rows
  • 4 columns
Loading...

CREATE TABLE ratings (
  "userid" BIGINT,
  "movieid" BIGINT,
  "rating" DOUBLE,
  "timestamp" BIGINT
);

Share link

Anyone who has the link will be able to view this.