Steam Releases
All Steam listing, peak players, and scores from (2006-2023)
@kaggle.whigmalwhim_steam_releases
All Steam listing, peak players, and scores from (2006-2023)
@kaggle.whigmalwhim_steam_releases
A dataset containing information about Steam games ranging from 2006-2023. Information includes publisher, technologies used, tags, developers, players, and rating metrics. A public open-source alternative to Steamdb data that is viable for use in regression tasks and applications.
"games-release-all" contains all of the information about the 65958 games on Steam, including the last time the game was updated on the Steam store.
CREATE TABLE game_data_all (
"unnamed_0" BIGINT -- Unnamed: 0,
"game" VARCHAR,
"link" VARCHAR,
"release" TIMESTAMP,
"peak_players" BIGINT,
"positive_reviews" BIGINT,
"negative_reviews" BIGINT,
"total_reviews" BIGINT,
"rating" DOUBLE,
"primary_genre" VARCHAR,
"store_genres" VARCHAR,
"publisher" VARCHAR,
"developer" VARCHAR,
"detected_technologies" VARCHAR,
"store_asset_mod_time" TIMESTAMP,
"review_percentage" DOUBLE,
"players_right_now" DOUBLE,
"n_24_hour_peak" DOUBLE -- 24 Hour Peak,
"all_time_peak" BIGINT,
"all_time_peak_date" TIMESTAMP
);CREATE TABLE games_release_all (
"unnamed_0" BIGINT -- Unnamed: 0,
"game" VARCHAR,
"link" VARCHAR,
"release" VARCHAR,
"peak_players" BIGINT,
"positive_reviews" BIGINT,
"negative_reviews" BIGINT,
"total_reviews" BIGINT,
"rating" VARCHAR
);Anyone who has the link will be able to view this.