Answers for "alter table delete column"

SQL
17

alter table delete column

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

sql remove column from table

ALTER TABLE tableName DROP columnName;
Posted by: Guest on May-13-2021
0

alter table drop column

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

sql delete column

Deletes a column from a table.
Example: Removes the first_name column from the users table.
ALTER TABLE users
DROP COLUMN first_name
Posted by: Guest on January-07-2021

Code answers related to "alter table delete column"

Code answers related to "SQL"

Browse Popular Code Answers by Language