Answers for "rename database postgres"

SQL
0

postgres rename database

ALTER DATABASE "old_dbname" RENAME TO "new_dbname"
Posted by: Guest on March-20-2021
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 column postgres

ALTER TABLE distributors RENAME COLUMN address TO city;
Posted by: Guest on April-08-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language