sql command to remove a column in table code example
Example 1: mysql drop column
ALTER TABLE `claims_user_settings` DROP COLUMN `super_user`;
Example 2: 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