drop names from mysql collum code example
Example 1: how remove column in mysql
ALTER TABLE "table_name" DROP "column_name";
Example 2: mysql add column
ALTER TABLE table_name
ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];