Answers for "how to remove a column from a table in MySQL"

SQL
30

how remove column in mysql

ALTER TABLE "table_name" DROP "column_name";
Posted by: Guest on February-05-2020
9

mysql drop column

ALTER TABLE `claims_user_settings` DROP COLUMN `super_user`;
Posted by: Guest on September-16-2020
2

how to remove a column from a table in MySQL

ALTER TABLE table_name DROP column_name;
#example
ALTER TABLE student DROP first_name;
Posted by: Guest on February-25-2022

Code answers related to "how to remove a column from a table in MySQL"

Code answers related to "SQL"

Browse Popular Code Answers by Language