我们如何从MySQL表中删除列?

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

Alter Table table_name DROP Column Column_name;

下面是一个示例来演示它

Alter table student drop column class;
Records: 5 Duplicates: 0 Warnings: 0

上面的查询将从“学生”表中删除列名“类”。

猜你喜欢