Goodbooks-10k
Ten thousand books, one million ratings. Also books marked to read, and tags.
@kaggle.zygmunt_goodbooks_10k
Ten thousand books, one million ratings. Also books marked to read, and tags.
@kaggle.zygmunt_goodbooks_10k
CREATE TABLE books (
"id" BIGINT,
"book_id" BIGINT,
"best_book_id" BIGINT,
"work_id" BIGINT,
"books_count" BIGINT,
"isbn" VARCHAR,
"isbn13" DOUBLE,
"authors" VARCHAR,
"original_publication_year" DOUBLE,
"original_title" VARCHAR,
"title" VARCHAR,
"language_code" VARCHAR,
"average_rating" DOUBLE,
"ratings_count" BIGINT,
"work_ratings_count" BIGINT,
"work_text_reviews_count" BIGINT,
"ratings_1" BIGINT,
"ratings_2" BIGINT,
"ratings_3" BIGINT,
"ratings_4" BIGINT,
"ratings_5" BIGINT,
"image_url" VARCHAR,
"small_image_url" VARCHAR
);
CREATE TABLE book_tags (
"goodreads_book_id" BIGINT,
"tag_id" BIGINT,
"count" BIGINT
);
CREATE TABLE ratings (
"book_id" BIGINT,
"user_id" BIGINT,
"rating" BIGINT
);
CREATE TABLE tags (
"tag_id" BIGINT,
"tag_name" VARCHAR
);
CREATE TABLE to_read (
"user_id" BIGINT,
"book_id" BIGINT
);
Anyone who has the link will be able to view this.