Answers for "what is the sql statement to delete a column in a table?"

SQL
23

alter table delete column

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

how to delete columns in sql

ALTER TABLE tableName
DROP COLUMN columnName;
Posted by: Guest on June-25-2021

Code answers related to "what is the sql statement to delete a column in a table?"

Code answers related to "SQL"

Browse Popular Code Answers by Language