SELECT
gameName,
COUNT(memberID) AS totalUser
FROM
game_sessions
WHERE guildid = ?
GROUP BY
gameName
ORDER BY
totalUser DESC
LIMIT 10;