当前位置: > 数据库 > MySQL >

MySQL删除列 添加列的sql语句

时间:2019-04-04 15:06来源:linux.it.net.cn 作者:IT
已有表actor,且包含列last_name



-- 删除列, 以下两种方式都可以
alter table actor drop  column last_name;
alter table actor drop last_name;


-- 添加列,必须指定列的类型
alter table actor add last_name varchar(10);



(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容