Answers for "change name of postgres variables"

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
0

postgres change the name of schema

ALTER SCHEMA old_name RENAME TO new_name;
Posted by: Guest on November-20-2020

Code answers related to "change name of postgres variables"

Code answers related to "SQL"

Browse Popular Code Answers by Language