Re: need trigger help

From: Abdul-Wahid Paterson <abdulwahid(at)gmail(dot)com>
To: Mike Nolan <nolan(at)gw(dot)tssi(dot)com>
Cc: PgSql General <pgsql-general(at)postgresql(dot)org>
Subject: Re: need trigger help
Date: 2005-05-09 21:24:31
Message-ID: 995fcdb005050914249764f49@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Excellent, I got it working...Thanks ;)

Abdul-Wahid

On 5/9/05, Mike Nolan <nolan(at)gw(dot)tssi(dot)com> wrote:
> > So how can I create a trigger to automatically update the hash fields
> > on updates and inserts?
>
> Something like the following works for me:
>
> create or replace function public.my_trigger()
> returns trigger as '
>
> NEW.hashfield = hashfunction(NEW.data1,NEW.data2);
>
> RETURN NEW;
> END;
> ' language 'plpgsql';
>
> --------
> create trigger my_trig
> before insert or update on my_tablename
> for each row
> execute procedure public.my_trigger();
>
> The 'RETURN NEW' part is very important, without it your hash field won't
> get updated at all.
> --
> Mike Nolan
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Mark Borins 2005-05-09 21:35:03 Data Modelling Tools
Previous Message Guy Rouillier 2005-05-09 21:22:32 Re: PostGreSQL -> SQL server