Mysql如何删除数据库表中的某一列

Mysql如何删除数据库表中的某一列

目录

删除数据库表中的某一列

Mysql删除列,添加列的sql语句

删除数据库表中的某一列

删除某一字段的值

update table_name SET field_name = '';

删除某一列

ALTER TABLE table_name DROP COLUMN field_name; Mysql删除列,添加列的sql语句

已有表actor,且包含列last_name

-- 删除列, 以下两种方式都可以 alter table actor drop  column last_name; alter table actor drop last_name; -- 添加列,必须指定列的类型 alter table actor add last_name varchar(10);

以上为个人经验,希望能给大家一个参考,也希望大家多多支持易知道(ezd.cc)。

推荐阅读