Answers for "how to change column name postgresql"

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

how to update column name in psql

ALTER TABLE order_details
  DROP COLUMN notes;
Posted by: Guest on October-27-2020

Code answers related to "how to change column name postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language