You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select count(t.user_id) as thumbs, s.name, a.name, l.name from song s, thumbsup t, artist a, album l where s.album = l.id and s.artist = a.id and s.id = t.thing_id group by t.thing_id order by thumbs DESC limit 10;