摘要: 1、添加字段alter table table_name add column1 type add column2 type add column3 type ... ;2、删除字段alter table table_name drop column column_name;3、修改字段alter table table_name modify (column_name type); 阅读全文
posted @ 2010-07-19 13:57 星火卓越 阅读(26996) 评论(0) 推荐(0) 编辑
摘要: declare cnt number; begin ---查询要创建的表是否存在 SELECT COUNT(*) into cnt FROM cols WHERE table_name=UPPER('entry_workflow_user') AND column_name=UPPER('proc_sjdate'); ---如果存在则删除该表 if cnt>0 then dbms_outp... 阅读全文
posted @ 2010-07-19 13:55 星火卓越 阅读(2157) 评论(0) 推荐(0) 编辑
摘要: declare cnt number;begin ---查询要创建的表是否存在 select count(*)into cnt from user_tables where table_name='ENTRY_MODIFYSTATUS'; ---如果存在则删除该表 if cnt>0 then dbms_output.put_line('表存在不创建'); else dbms_output... 阅读全文
posted @ 2010-07-19 13:50 星火卓越 阅读(5958) 评论(0) 推荐(0) 编辑