Last active
May 17, 2024 21:33
-
-
Save PaulieScanlon/e8192f241dd25852793b3af44cef04f6 to your computer and use it in GitHub Desktop.
Select Example SQL query
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 | |
user_id, | |
first_name, | |
last_name, | |
email, | |
role | |
FROM users | |
WHERE role = 'admin' | |
ORDER BY last_name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment