Created
May 31, 2022 22:10
-
-
Save sobrinho/2df6499914616f10d6a837649ad59866 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT name, COUNT(*) | |
FROM absences | |
GROUP BY name | |
ORDER BY COUNT(*) DESC | |
LIMIT 3; | |
name | count | |
------------+------- | |
John Doe | 2392 | |
Jane Doe | 1960 | |
Richard Doe | 1898 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment