Oracle判断表、列、主键是否存在的方法
网络编程 2021-07-05 16:09www.168986.cn编程入门
这篇文章主要介绍了Oracle判断表、列、主键是否存在的方法,狼蚁网站SEO优化是长沙网络推广之家长沙网络推广给大家带来的一些判断方法和大家分享下
在编写程序时,数据库结构会经常变化,所以经常需要编写一些数据库脚本,编写完成后需发往现场执行,如果已经存在或者重复执行,有些脚本会报错,所以需要判断其是否存在,现在我就把经常用到的一些判断方法和大家分享下
一。判断Oracle表是否存在的方法
declare tableExistedCount number; --声明变量存储要查询的表是否存在 begin select count(1) into tableExistedCount from user_tables t where t.table_name = upper('Test'); --从系统表中查询当表是否存在 if tableExistedCount = 0 then --如果不存在,使用快速执行语句创建新表 execute immediate 'create table Test --创建测试表 (ID number not null,Name = varchar2(20) not null)'; end if; end;
二。判断Oracle表中的列是否存在的方法
declare columnExistedCount number; --声明变量存储要查询的表中的列是否存在 begin --从系统表中查询表中的列是否存在 select count(1) into columnExistedCount from user_tab_columns t where t.table_name = upper('Test') and t.column_name = upper('Age'); --如果不存在,使用快速执行语句添加Age列 if columnExistedCount = 0 then execute immediate 'alter table Test add age number not null'; end if; end; DECLARE num NUMBER; BEGIN SELECT COUNT(1) INTO num from cols where table_name = upper('tableName') and column_name = upper('columnName'); IF num > 0 THEN execute immediate 'alter table tableName drop column columnName'; END IF; END;
三。判断Oracle表是否存在主键的方法
declare primaryKeyExistedCount number; --声明变量存储要查询的表中的列是否存在 begin --从系统表中查询表是否存在主键(因一个表只可能有一个主键,所以只需判断约束类型即可) select count(1) into primaryKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'P'; --如果不存在,使用快速执行语句添加主键约束 if primaryKeyExistedCount = 0 then execute immediate 'alter table Test add constraint PK_Test_ID primary key(id)'; end if; end;
四。判断Oracle表是否存在外键的方法
declare foreignKeyExistedCount number; --声明变量存储要查询的表中的列是否存在 begin --从系统表中查询表是否存在主键(因一个表只可能有一个主键,所以只需判断约束类型即可) select count(1) into foreignKeyExistedCount from user_constraints t where t.table_name = upper('Test') and t.constraint_type = 'R' and t.constraint_name = '外键约束名称'; --如果不存在,使用快速执行语句添加主键约束 if foreignKeyExistedCount = 0 then execute immediate 'alter table Test add constraint 外键约束名称 foreign key references 外键引用表(列)'; end if; end;
以上所述是长沙网络推广给大家介绍的Oracle判断表、列、主键是否存在的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,长沙网络推广会及时回复大家的。在此也非常感谢大家对狼蚁SEO网站的支持!
编程语言
- 甘肃哪有关键词排名优化购买方式有哪些
- 甘肃SEO如何做网站优化
- 河南seo关键词优化怎么做电话营销
- 北京SEO优化如何做QQ群营销
- 来宾百度关键词排名:提升您网站曝光率的关键
- 卢龙关键词优化:提升您网站排名的策略与技巧
- 山东网站优化的注意事项有哪些
- 四川整站优化怎样提升在搜索引擎中的排名
- 疏附整站优化:提升网站性能与用户体验的全新
- 海南seo主要做什么工作售后服务要做到哪些
- 荣昌百度网站优化:提升您网站的搜索引擎排名
- 河北seo网站排名关键词优化如何做SEO
- 江西优化关键词排名推广售后保障一般有哪些
- 古浪SEO优化:提升你的网站可见性
- 西藏网站排名优化怎么把网站排名在百度首页
- 如何提升阳东百度快照排名:详尽指南