What SQL command can be used to delete columns from a table?

What SQL command can be used to delete columns from a table? Correct Answer ALTER TABLE TableName DROP COLUMN ColumnName

To delete columns from a table in SQL, you can use the ALTER TABLE TableName DROP COLUMN ColumnName command. Option D is the correct choice for removing columns from a table. Options A, B, and C do not represent the standard SQL syntax for deleting columns.

Related Questions

What SQL command can be used to add columns to a table?
In SQL, which command is used to add new rows to a table?
Which command is used to remove a table from the database in SQL?
In SQL, which command(s) is(are) used to enable/disable all triggers on a table?