mirror of
https://github.com/Alvin-Zilverstand/pokedex.git
synced 2026-03-06 11:07:31 +01:00
5 lines
155 B
Plaintext
5 lines
155 B
Plaintext
Executing query: SELECT user_id, COUNT(pokemon_id) AS pokemon_count
|
|
FROM user_pokemon
|
|
GROUP BY user_id
|
|
ORDER BY pokemon_count DESC
|