Answers for "how to change atrribute of a column in table psql shell"

SQL
3

alter column in table postgres

ALTER TABLE table_name
  ALTER COLUMN column_name TYPE column_definition;
Posted by: Guest on February-24-2021
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 atrribute of a column in table psql shell"

Code answers related to "SQL"

Browse Popular Code Answers by Language