Answers for "update table name in postgres"

SQL
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
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 "SQL"

Browse Popular Code Answers by Language