Video Game Sales
Video game sales from North America,Japan, the EU, Africa, and rest of the World
@kaggle.siddharth0935_video_game_sales
Video game sales from North America,Japan, the EU, Africa, and rest of the World
@kaggle.siddharth0935_video_game_sales
Video game sales from North America, Japan, the EU, Africa, and the rest of the world for 64,016 titles released from 1971-2024, including information like critic's score, genre, console, and more.
Recommended Analysis
Which titles sold the most worldwide?
Which year had the highest sales? Has the industry grown over time?
Do any consoles seem to specialize in a particular genre?
What titles are popular in one region but flop in another?
CREATE TABLE vgchartz_2024 (
"img" VARCHAR,
"title" VARCHAR,
"console" VARCHAR,
"genre" VARCHAR,
"publisher" VARCHAR,
"developer" VARCHAR,
"critic_score" DOUBLE,
"total_sales" DOUBLE,
"na_sales" DOUBLE,
"jp_sales" DOUBLE,
"pal_sales" DOUBLE,
"other_sales" DOUBLE,
"release_date" TIMESTAMP,
"last_update" TIMESTAMP
);
CREATE TABLE vg_data_dictionary (
"field" VARCHAR,
"description" VARCHAR
);
Anyone who has the link will be able to view this.