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

MODIFY TABLE TableName DROP ColumnName
ALTER TABLE TableName DROP ColumnName
MODIFY TABLE TableName DROP COLUMN ColumnName
ALTER TABLE TableName DROP COLUMN ColumnName

ANSWER DOWNLOAD EXAMIANS APP

Database Redesign
Before any changes to database structure are attempted one should first:

create a complete backup of the operational database only.
clearly understand the current structure and contents of the database only.
All of these
test any changes on a test database only.

ANSWER DOWNLOAD EXAMIANS APP