要從MySQL表中刪除列,我們可以使用ALTER TABLE命令和DROP關鍵字。語法如下:
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”。
以上就是我們如何從MySQL表中刪除一列?的詳細內容,更多請關注www.92cms.cn其它相關文章!