Top 10000 Songs On Spotify 1950-Now
The best and biggest songs from ARIA & Billboard charts spanning 7 decades.
@kaggle.joebeachcapital_top_10000_spotify_songs_1960_now
The best and biggest songs from ARIA & Billboard charts spanning 7 decades.
@kaggle.joebeachcapital_top_10000_spotify_songs_1960_now
[Updated as of 14th of October 2024. Now includes songs from the 1950s till now.]
The "Top 10000 Spotify Songs - ARIA and Billboard Charts" is a comprehensive collection of 10,000 of the most popular songs that have dominated the music scene from the 1950 to the present day. This dataset was curated based on rankings from both the ARIA (Australian Recording Industry Association) and Billboard charts, ensuring a diverse representation of songs that have achieved immense commercial success and cultural significance.
The dataset encompasses various music genres and showcases the evolution of musical trends over the years, providing valuable insights into the ever-changing landscape of popular music. It includes tracks from iconic artists and bands, representing a mix of timeless classics and contemporary hits that have left a lasting impact on music lovers worldwide.
Researchers, music enthusiasts, and data analysts can use this dataset for a wide range of applications, such as analyzing trends in music popularity, studying the influence of specific artists or albums, exploring genre shifts, and building recommendation systems based on historical music preferences.
CREATE TABLE top_10000_1950_now (
"track_uri" VARCHAR,
"track_name" VARCHAR,
"artist_uri_s" VARCHAR -- Artist URI(s),
"artist_name_s" VARCHAR -- Artist Name(s),
"album_uri" VARCHAR,
"album_name" VARCHAR,
"album_artist_uri_s" VARCHAR -- Album Artist URI(s),
"album_artist_name_s" VARCHAR -- Album Artist Name(s),
"album_release_date" VARCHAR,
"album_image_url" VARCHAR,
"disc_number" BIGINT,
"track_number" BIGINT,
"track_duration_ms" BIGINT -- Track Duration (ms),
"track_preview_url" VARCHAR,
"explicit" BOOLEAN,
"popularity" BIGINT,
"isrc" VARCHAR,
"added_by" VARCHAR,
"added_at" VARCHAR,
"artist_genres" VARCHAR,
"danceability" DOUBLE,
"energy" DOUBLE,
"key" DOUBLE,
"loudness" DOUBLE,
"mode" DOUBLE,
"speechiness" DOUBLE,
"acousticness" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"time_signature" DOUBLE,
"album_genres" VARCHAR,
"label" VARCHAR,
"copyrights" VARCHAR
);CREATE TABLE top_10000_1960_now (
"track_uri" VARCHAR,
"track_name" VARCHAR,
"artist_uri_s" VARCHAR -- Artist URI(s),
"artist_name_s" VARCHAR -- Artist Name(s),
"album_uri" VARCHAR,
"album_name" VARCHAR,
"album_artist_uri_s" VARCHAR -- Album Artist URI(s),
"album_artist_name_s" VARCHAR -- Album Artist Name(s),
"album_release_date" VARCHAR,
"album_image_url" VARCHAR,
"disc_number" BIGINT,
"track_number" BIGINT,
"track_duration_ms" BIGINT -- Track Duration (ms),
"track_preview_url" VARCHAR,
"explicit" BOOLEAN,
"popularity" BIGINT,
"isrc" VARCHAR,
"added_by" VARCHAR,
"added_at" VARCHAR,
"artist_genres" VARCHAR,
"danceability" DOUBLE,
"energy" DOUBLE,
"key" DOUBLE,
"loudness" DOUBLE,
"mode" DOUBLE,
"speechiness" DOUBLE,
"acousticness" DOUBLE,
"instrumentalness" DOUBLE,
"liveness" DOUBLE,
"valence" DOUBLE,
"tempo" DOUBLE,
"time_signature" DOUBLE,
"album_genres" VARCHAR,
"label" VARCHAR,
"copyrights" VARCHAR
);Anyone who has the link will be able to view this.