如何使用3个不同表的触发器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用3个不同表的触发器相关的知识,希望对你有一定的参考价值。

亲爱的朋友StackOverFlow成员,

我有3张桌子。 bdc(bdc_id,bdc_name,bdc_gc),stt(s​​tt_id,stt_gc),bts(bts_id,bts_pmv)。

我想如果stt_gc = 'Checked'然后设置bdc_gc = 'Sent'bts_pmv = 'To do'

我使用Postgresql 11并以触发器/存储过程开始,我尝试使用if条件stt_gc值并根据其主键与正确的bdc_gc bts_pmv进行匹配。

create or replace function before_stt_gc() returns trigger
  language plpgsql
as
$$
begin

    if new.stt_gc='Checked' then
      select bdc_gc from bdc
      where new.stt_id = bdc_id;
      doe_gc_bts= 'Sent';
      select bts_pmv from bts
      where new.stt_id = bts_id;
      bts_pmv = 'To do'
    end if;
  end;
$$;

create trigger before_stt_gc_trigger before insert or update on stt
  for each row 
  execute procedure before_stt_gc();

显然,如果我在这里,那是因为我的代码是完全错误的...我想从中学习,所以如果可能的话,解释一下我在这里做错了什么,或者我的方法是否缺乏洞察力

答案

我认为你在update声明中寻找IFs

if new.stt_gc='Checked' then
  update  bdc  set bdc_gc = 'Sent'
  where new.stt_id = bdc_id;

 UPDATE bts SET bts_pmv = 'To do'
  where new.stt_id = bts_id;

end if;

以上是关于如何使用3个不同表的触发器的主要内容,如果未能解决你的问题,请参考以下文章

如何在recyclerview不同的项目点击上打开几个不同的片段?

我如何使用 codeanywhere 片段

如何实现具有不同片段/布局的 ViewPager

如何使用触发器从两个不同的表中插入数据

如何从 MenuItem 导航到片段(Android)?

如何在 SQL 中显示来自 3 个不同表的多个列?