mirror of
https://github.com/Alvin-Zilverstand/pokedex.git
synced 2026-04-21 19:06:23 +02: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
|