Created
May 7, 2015 09:03
-
-
Save sangar82/d944d39d249a83c00e5a to your computer and use it in GitHub Desktop.
Gist uppercase companies
This file contains 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
BEGIN; | |
UPDATE | |
companies | |
SET | |
name = UPPER(name); | |
UPDATE | |
companies | |
SET | |
fiscal_name = UPPER(fiscal_name); | |
COMMIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment