how to delete the data from a specific column from a table in mysql code example
Example 1: how remove column in mysql
ALTER TABLE "table_name" DROP "column_name";
Example 2: how delete a column in mysql
ALTER TABLE table_name
DROP COLUMN column_name;