mysql drop constraint code example
Example 1: how remove column in mysql
ALTER TABLE "table_name" DROP "column_name";
Example 2: how to DROP a table in mysql
-- 'DROP TABLE' followed by the name of the table you would like
-- to drop.
DROP TABLE `test_table`;