Oracle:SQL语句--对表的操作—— 删除字段(即删除列)

– 删除一个字段(即删除一列)(未验证在有数据,并且互有主外键时,是否可用)

语法:

alter table 表名 drop column 字段名(即列名);

例:alter table T_Student2 drop column sex;

原文地址:https://www.cnblogs.com/MountDa/p/5831745.html