Skip to content

Instantly share code, notes, and snippets.

@tsraveling
Created April 23, 2020 20:05
Show Gist options
  • Save tsraveling/46730e7aea5b9631f0a91da3c190c861 to your computer and use it in GitHub Desktop.
Save tsraveling/46730e7aea5b9631f0a91da3c190c861 to your computer and use it in GitHub Desktop.
Rename a column in PostgresQL
ALTER TABLE table_name 
RENAME COLUMN column_name TO new_column_name;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment