摘要: declare cnt number; begin ---查询要创建的表是否存在 select count(1) into cnt from cols where table_name = upper('sys_CustomReport') and column_name = upper('FConfig'); ---如果存在则删除该表 if cnt<1 then execute immediate 'ALTER TABLE sys_CustomReport ADD FConfig Blob'; end... 阅读全文
posted @ 2013-05-09 13:46 D10.天地弦 阅读(440) 评论(0) 推荐(0) 编辑