Skip to content

Instantly share code, notes, and snippets.

@PaulieScanlon
Last active May 17, 2024 21:33
Show Gist options
  • Save PaulieScanlon/e8192f241dd25852793b3af44cef04f6 to your computer and use it in GitHub Desktop.
Save PaulieScanlon/e8192f241dd25852793b3af44cef04f6 to your computer and use it in GitHub Desktop.
Select Example SQL query
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