How to delete a column in a database table using postgres via the command line?
|
|
|
|
|
Questions: How to delete a column in a database table using postgres sql via the command line? Answer: Use the following statement ALTER TABLE my_table DROP COLUMN my_column; Replace my_table with the your table name and my_column with the column that you need to drop/remove.
|