Skip to content

Instantly share code, notes, and snippets.

@sangar82
Created May 7, 2015 09:03
Show Gist options
  • Save sangar82/d944d39d249a83c00e5a to your computer and use it in GitHub Desktop.
Save sangar82/d944d39d249a83c00e5a to your computer and use it in GitHub Desktop.
Gist uppercase companies
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