I have a Postgres database with a many-to-many association table that's similar to what's down below.
id | item_id | item_tag_id
1 101 3
2 102 3
3 103 1
4 104 2
5 105 2
How can I get the top 5 most associated item_tag_id
?