Answers for "rename column postgres"

SQL
9

rename table postgres

ALTER TABLE table_name
RENAME TO new_table_name;
Posted by: Guest on April-02-2020
1

psql filed name alter

ALTER TABLE table_name 
RENAME column_name TO new_column_name;
Posted by: Guest on June-08-2020
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

how to update column name in psql

ALTER TABLE table_name
  RENAME COLUMN old_name TO new_name;
Posted by: Guest on March-12-2020
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 "rename column postgres"

Code answers related to "SQL"

Browse Popular Code Answers by Language