Answers for "how to delete the columns of the table"

SQL
22

alter table delete column

ALTER TABLE "table_name" DROP "column_name";
Posted by: Guest on February-05-2020
2

how to delete a column in sql

ALTER TABLE "table_name" DROP COLUMN "column_name";
Posted by: Guest on August-16-2021

Code answers related to "how to delete the columns of the table"

Code answers related to "SQL"

Browse Popular Code Answers by Language