如何从 MySQL 表中删除列?

mysqlmysqli database

要从 MySQL 表中删除列,我们可以使用带有 DROP 关键字的 ALTER TABLE 命令。语法如下

Alter Table table_name DROP Column Column_name;

下面是演示它的示例

mysql> Alter table student drop column class;
Query OK, 5 rows affected (0.34 sec)
Records: 5 Duplicates: 0 Warnings: 0

上述查询将从 ‘student’ 表中删除列名 ‘class’。


相关文章