In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `tracks` ADD INDEX `tracks_idx_play_count` (`play_count`);
SELECT
tracks.persistent_id,
tracks.artist,
tracks.name,
tracks.play_count
FROM
tracks
ORDER BY
tracks.play_count DESC