Answers for "how to change name of column in postgresql"

SQL
1

rename column postgres

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

how to update column name in psql

ALTER TABLE order_details
  RENAME TO order_information;
Posted by: Guest on October-27-2020

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

Code answers related to "SQL"

Browse Popular Code Answers by Language