Answers for "postgresql : how to rename a table inside a schema"

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

Code answers related to "postgresql : how to rename a table inside a schema"

Code answers related to "SQL"

Browse Popular Code Answers by Language