Skip to content

Instantly share code, notes, and snippets.

@shevabam
Last active October 21, 2015 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shevabam/234bc6c38a2a1379020d to your computer and use it in GitHub Desktop.
Save shevabam/234bc6c38a2a1379020d to your computer and use it in GitHub Desktop.
SQL - Get uppercase or lowercase values
SELECT lastname, UPPER(lastname)
FROM people
WHERE lastname = BINARY UPPER(lastname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment