Answers for "how to change columns of postgresql database"

SQL
8

postgresql change column type

ALTER TABLE assets ALTER COLUMN name TYPE VARCHAR;
Posted by: Guest on May-26-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

Code answers related to "how to change columns of postgresql database"

Code answers related to "SQL"

Browse Popular Code Answers by Language