Re: [SQL] Triggers - need help !!!

2004-07-09 Thread Mischa Sandberg
"Richard Huxton" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Pradeepkumar, Pyatalo (IE10) wrote: > > IF UPDATE(CreateTime) THEN > > > > > > END IF; > > > > Is this syntax correct. > > No, and I don't recall seeing anything like it in the manuals. ... and it's always an

Re: [SQL] Triggers - need help !!!

2004-07-08 Thread SZUCS Gábor
I'd like to add that a NULL value might mess things up. If CreateTime may be null, try this: if (OLD.CreateTime <> NEW.CreateTime) OR (OLD.CreateTime ISNULL <> NEW.CreateTime ISNULL) THEN ... or this: if COALESCE(OLD.CreateTime, '3001-01-01') <> COALESCE(NEW.CreateTime, '3001-01-01

Re: [SQL] Triggers - need help !!!

2004-07-07 Thread Richard Huxton
Pradeepkumar, Pyatalo (IE10) wrote: Thanks a lot for ur help. In the trigger, I am checking if a field is updated or not. The syntax I use is IF UPDATE(CreateTime) THEN END IF; Is this syntax correct. No, and I don't recall seeing anything like it in the manuals. IF OLD

Re: [SQL] Triggers - need help !!!

2004-07-07 Thread Pradeepkumar, Pyatalo (IE10)
, 2004 12:50 PM To: Pradeepkumar, Pyatalo (IE10) Cc: [EMAIL PROTECTED] Subject: Re: [SQL] Triggers - need help !!! On 2004-07-07 08:45, UÅytkownik Pradeepkumar, Pyatalo (IE10) napisaÅ: > Hi, > > I am writing some triggers for my project. > I am writing a trigger on a table after delete.

Re: [SQL] Triggers - need help !!!

2004-07-07 Thread Tomasz Myrta
On 2004-07-07 08:45, UÅytkownik Pradeepkumar, Pyatalo (IE10) napisaÅ: Hi, I am writing some triggers for my project. I am writing a trigger on a table after deleteI want to know how u refer to the row that is being deleted. For example for a trigger function after INSERT/UPDATE u refer to the r

[SQL] Triggers - need help !!!

2004-07-07 Thread Pradeepkumar, Pyatalo (IE10)
Hi, I am writing some triggers for my project. I am writing a trigger on a table after deleteI want to know how u refer to the row that is being deleted. For example for a trigger function after INSERT/UPDATE u refer to the row being inserted/updated using NEW like this CREATE FUNCTION