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/16876
"随时改变的值"这里有歧义啊,如果你是整列都是一个值可以采用楼上两位的方法,如果第一行是good第二行是doog那得有个数据来源,或者union all 并表
select id ,'good' from table a --whereunion all
selece id ,'doog' from table a --where
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)