2016 - 2024

感恩一路有你

oracle学习查询语句 oracle中用一条语句,多表关联删除怎么写啊?

浏览量:2117 时间:2023-04-08 07:10:41 作者:采采

oracle中用一条语句,多表关联删除怎么写啊?

修改你的外键设置,达到级联删除的目的,具体实现如下:

a)先查询出EMP表和POS表中 外键的名称(如果你知道 外键名这一步可以省略) select CONSTRAINT_NAME,TABLE_NAME from user_constraints where CONSTRAINT_TYPE #39R#39 and TABLE_NAME in(#39EMP#39,#39POS#39)

b)删除EMP表和POS表上的外键后 重新建立允许级联删除的外键模式 alter table EMP drop constraint 外键名 alter table POS drop constraint 外键名 alter table EMP add constraint 外键名 foreign key(DEPT_NO) references DEPT(DEPT_NO) on delete cascade alter table POS add constraint 外键名 foreign key(DEPT_NO) references DEPT(DEPT_NO) on delete cascad

在oracle中,如何用一条select语句查询字段中非纯数字值?

--1.正则判断,适用于10g以上版本--非正整数 select 字段 from 表 where regexp_replace(字段,d,) is not null;--非数值类型select 字段 from 表 where regexp_replace(字段,^[- ]d (.d )$,) is not null;--2.自定义函数,判断非值类型create or replace function isnumber(col varchar2) r: to_number(col); return 1;exception when others then return 0;end;select 字段 from 表 where isnumber(字段)0;

字段 EMP表 类型 级联

版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。