TikTok VO Coding Interview / OA: Top 10 Pop Songs by Engagement Rate

13 Views
No Comments

[SQL] What are the top 10 Pop songs based on the engagement rate?

Tables: song_df, fact_df

Use the tables to find the 10 Pop songs with the highest engagement rate.

This problem asks you to join the fact table with the song metadata, filter for songs whose genre includes Pop, and rank them by engagement rate to return the top 10. The main challenge is interpreting the engagement metric from the available interaction fields and applying the correct aggregation before sorting. It tests SQL joins, filtering, grouping, and ranking logic.

END
 0