当前位置:Gxlcms > mysql > oracle数据库添加或删除一列的sql语句

oracle数据库添加或删除一列的sql语句

时间:2021-07-01 10:21:17 帮助过:53人阅读

需要注意的一点,如果要修改的表,不是当前的用户的表,那么就需要添加上用户的名称。以及有修改此表的权限

alert table 表名 add column 列名
alter table 表名 drop column 列名
eg:
alter table TPointManage add AddPointsReason number(8)
alter table textattrdetail drop column AddPointsReason

需要注意的一点,如果要修改的表,不是当前的用户的表,那么就需要添加上用户的名称。以及有修改此表的权限。

人气教程排行