Museum Of Modern Art Collection
Title, artist, date, and medium of every artwork in the MoMA collection
@kaggle.momanyc_museum_collection
Title, artist, date, and medium of every artwork in the MoMA collection
@kaggle.momanyc_museum_collection
CREATE TABLE artists (
"artist_id" BIGINT,
"name" VARCHAR,
"nationality" VARCHAR,
"gender" VARCHAR,
"birth_year" DOUBLE,
"death_year" DOUBLE
);
CREATE TABLE artworks (
"artwork_id" BIGINT,
"title" VARCHAR,
"artist_id" VARCHAR,
"name" VARCHAR,
"date" VARCHAR,
"medium" VARCHAR,
"dimensions" VARCHAR,
"acquisition_date" VARCHAR,
"credit" VARCHAR,
"catalogue" VARCHAR,
"department" VARCHAR,
"classification" VARCHAR,
"object_number" VARCHAR,
"diameter_cm" DOUBLE,
"circumference_cm" DOUBLE,
"height_cm" DOUBLE,
"length_cm" DOUBLE,
"width_cm" DOUBLE,
"depth_cm" DOUBLE,
"weight_kg" DOUBLE,
"duration_s" DOUBLE
);
Anyone who has the link will be able to view this.