This project explores a full data pipeline using Python, SQL, and Power BI, starting from raw data and ending with an interactive dashboard. The goal was to generate insights on customer behavior, ...
SELECT a2.ArtistId, a2.Name, count(*) as Records from Album a INNER JOIN Artist a2 GROUP BY 1; SELECT a2.ArtistId, a2.Name, count(*) as Records from Album a INNER JOIN Artist a2 GROUP BY 1 ORDER BY ...