Answers for "rename postgres column"

SQL
2

rename column postgres

ALTER TABLE customers 
RENAME COLUMN name TO customer_name;

ALTER TABLE customers
RENAME COLUMN phone TO contact_phone;
Posted by: Guest on December-20-2020
1

rename table column postgresql

ALTER TABLE table_name 
RENAME COLUMN column_name TO new_column_name;
Posted by: Guest on October-20-2021

Code answers related to "rename postgres column"

Code answers related to "SQL"

Browse Popular Code Answers by Language