- 论坛徽章:
- 0
|
小弟刚开始学数据库,今天写了个触发器,可以一直出问题,麻烦大家帮忙看下。- create or replace trigger community_trigger after
- insert or
- update or
- delete on community for each row begin if inserting then
- Insert
- into users
- (
- username,
- passwd,
- permit,
- org
- )
- values
- (
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- ||'00' ,
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '00'
- || '888' ,
- 33 ,
- :NEW.county
- );
- Insert
- into users
- (
- username,
- passwd,
- permit,
- org
- )
- values
- (
- (select DISTINCT init from county where county_name=:NEW.county
- )
- ||:NEW.code
- ||'02',
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '02'
- || '888' ,
- 65,
- :NEW.county
- );
- elsif updating then
- Update users
- set username=
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '00' passwd=
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '00'
- || '888' org=:NEW.hos_name
- Where username=
- (select DISTINCT init from county where county_name=:OLD.county
- )
- ||:OLD.code
- ||'00';
- Update users
- set username=
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '02' passwd=
- (select DISTINCT init from county where county_name=:NEW.county
- )
- || :NEW.code
- || '02'
- || '888' org=:NEW.hos_name
- Where username=
- (select DISTINCT init from county where county_name=:OLD.county
- )
- || :OLD.code
- || '02';
- elsif deleting then
- Delete
- from users
- where username=
- (select DISTINCT init from county where county_name=:OLD.county
- )
- || :OLD.code
- ||'00';
- Delete
- from users
- where username=
- (select DISTINCT init from county where county_name=:OLD.county
- )
- || :OLD.code
- ||'02';
- end if;
- end;
复制代码 问题主要是出在update,insert和delete我测试过了是可以的。
update中select的时候我的county实际上在数据库里是 没有改变的,然后用;NEW.county和:OLD.county都不行,请问这个要怎么整啊。 |
|