Marvel Comic Books Dataset
A complete dataset of all existing Marvel Comics.
@kaggle.deepcontractor_marvel_comic_books
A complete dataset of all existing Marvel Comics.
@kaggle.deepcontractor_marvel_comic_books
The dataset contains info on all the comic books ever released in the Marvel Universe.
Following are the columns:
Comic name: Name of the comic series.
Active years: Years between which the comic series was active.
Issue title: Tv shows have episodes, comic books have issues. For eg, Spiderman comic series has xyz number of issues.
Publish date: Date of publish for the comic issue.
Issue_description: Description of the issue.
Penciler: Penciper of the comic issue.
Writer: Original writer.
Cover artist: Person responsible for cover art of the comic.
Imprint: An imprint of a publisher is a trade name under which it publishes a work
Format: Comic format.
Rating: Age Rating.
Price: Price of the comic.
CREATE TABLE marvel_comics (
"comic_name" VARCHAR,
"active_years" VARCHAR,
"issue_title" VARCHAR,
"publish_date" VARCHAR,
"issue_description" VARCHAR,
"penciler" VARCHAR,
"writer" VARCHAR,
"cover_artist" VARCHAR,
"imprint" VARCHAR,
"format" VARCHAR,
"rating" VARCHAR,
"price" VARCHAR
);Anyone who has the link will be able to view this.