✎
编程开发网
首页
C语言
C++
面试
Linux
函数
Windows
数据库
下载
搜索
当前位置:
首页
->
基础
->
数据库编程
oracle数据库添加或删除一列
2014-11-24 09:21:33
·
作者:
·
浏览:
0
标签:
oracle
数据库
添加
删除
oracle
数据库
添加或删除一列 alert table 表名 add column 列名
alter table 表名 drop column 列名
eg: alter table TPointManage add AddPointsReason number(8)
alter table textattrdetail drop column AddPointsReason 需要注意的一点,如果要修改的表,不是当前的用户的表,那么就需要添加上用户的名称。
以及有修改此表的权限。