码迷,mamicode.com
首页 > 数据库 > 详细

oracle可重复执行脚本(添加字段)

时间:2018-11-16 17:33:14      阅读:577      评论:0      收藏:0      [点我收藏+]

标签:count   oracle   style   issue   cut   重复   The   iss   user   

--添加债券期限字段

declare

  cn integer;

begin

  cn := 0;

  select count(*) 

  into cn

  from user_tab_cols t 

  where t.table_name=‘T_BANK_BOND_MARKET_SET

  and t.column_name =‘B_LEVEL_ISSUE‘;

  if cn =0 then

  execute immediate ALTER TABLE T_BANK_BOND_MARKET_SET ADD (B_LEVEL_ISSUE VARCHAR2(10))‘;

  end if;

end;

/

oracle可重复执行脚本(添加字段)

标签:count   oracle   style   issue   cut   重复   The   iss   user   

原文地址:https://www.cnblogs.com/blogsaspx/p/9969903.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!