免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1756 | 回复: 0
打印 上一主题 下一主题

关于oracle触发器的一个问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-02 11:21 |只看该作者 |倒序浏览
小弟刚开始学数据库,今天写了个触发器,可以一直出问题,麻烦大家帮忙看下。
  1. create or replace trigger community_trigger after
  2.   insert or
  3.   update or
  4.   delete on community for each row begin if inserting then
  5.   Insert
  6.   into users
  7.     (
  8.       username,
  9.       passwd,
  10.       permit,
  11.       org
  12.     )
  13.     values
  14.     (
  15.       (select DISTINCT init from county where county_name=:NEW.county
  16.       )
  17.       || :NEW.code
  18.       ||'00' ,
  19.       (select DISTINCT init from county where county_name=:NEW.county
  20.       )
  21.       || :NEW.code
  22.       || '00'
  23.       || '888' ,
  24.       33 ,
  25.       :NEW.county
  26.     );
  27.   Insert
  28.   into users
  29.     (
  30.       username,
  31.       passwd,
  32.       permit,
  33.       org
  34.     )
  35.     values
  36.     (
  37.       (select DISTINCT init from county where county_name=:NEW.county
  38.       )
  39.       ||:NEW.code
  40.       ||'02',
  41.       (select DISTINCT init from county where county_name=:NEW.county
  42.       )
  43.       || :NEW.code
  44.       || '02'
  45.       || '888' ,
  46.       65,
  47.       :NEW.county
  48.     );
  49. elsif updating then
  50.   Update users
  51.   set username=
  52.     (select DISTINCT init from county where county_name=:NEW.county
  53.     )
  54.     || :NEW.code
  55.     || '00' passwd=
  56.     (select DISTINCT init from county where county_name=:NEW.county
  57.     )
  58.     || :NEW.code
  59.     || '00'
  60.     || '888' org=:NEW.hos_name
  61.   Where username=
  62.     (select DISTINCT init from county where county_name=:OLD.county
  63.     )
  64.     ||:OLD.code
  65.     ||'00';
  66.   Update users
  67.   set username=
  68.     (select DISTINCT init from county where county_name=:NEW.county
  69.     )
  70.     || :NEW.code
  71.     || '02' passwd=
  72.     (select DISTINCT init from county where county_name=:NEW.county
  73.     )
  74.     || :NEW.code
  75.     || '02'
  76.     || '888' org=:NEW.hos_name
  77.   Where username=
  78.     (select DISTINCT init from county where county_name=:OLD.county
  79.     )
  80.     || :OLD.code
  81.     || '02';
  82. elsif deleting then
  83.   Delete
  84.   from users
  85.   where username=
  86.     (select DISTINCT init from county where county_name=:OLD.county
  87.     )
  88.     || :OLD.code
  89.     ||'00';
  90.   Delete
  91.   from users
  92.   where username=
  93.     (select DISTINCT init from county where county_name=:OLD.county
  94.     )
  95.     || :OLD.code
  96.     ||'02';
  97. end if;
  98. end;
复制代码
问题主要是出在update,insert和delete我测试过了是可以的。
update中select的时候我的county实际上在数据库里是 没有改变的,然后用;NEW.county和:OLD.county都不行,请问这个要怎么整啊。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP