alter table your_table add (column col_type clumn col_type )
your_table :表名
column /column 字段名
col_type /col_type 字段类型
建议用过程实现添加字段 屏蔽掉字段已经存在所造成的错误 另外 一次添加一个字段会更好一些
declare
vstr_sql varchar ( ):= alter table your_table add (column col_type clumn col_type )
begin
execute immediate vstr_sql
end
/
select column_name data_type from ALL_TAB_COLUMNS where TABLE_NAME= XX
可以查XX表列名
你可以先查出所有的列 判断是否已有 没有就添加
lishixinzhi/Article/program/Oracle/201311/16876Oracle添加和删除字段
Sql代码 :
alter table person add delflag char(1) default '0'
alter table person drop column delflag
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)