From: | Martin Marques <martin(at)bugs(dot)unl(dot)edu(dot)ar> |
---|---|
To: | Sebastian Böck <sebastianboeck(at)freenet(dot)de>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: Problems with Triggers |
Date: | 2004-04-15 14:58:27 |
Message-ID: | 200404151158.27690.martin@bugs.unl.edu.ar |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
El Jue 15 Abr 2004 08:55, Sebastian Böck escribió:
> Hello,
>
> is there a simple operator to determine whether the OLD.value and
> NEW.value are different. The <> operator is not working on NULL's.
>
> I need something like this:
> NEW.val <> Old.val OR
> NEW.val IS NULL AND OLD.val IS NOT NULL OR
> NEW.val IS NOT NULL AND OLD.val IS NULL
(NEW.val <> Old.val) OR
(NEW.val IS NULL AND OLD.val IS NOT NULL) OR
(NEW.val IS NOT NULL AND OLD.val IS NULL)
You forgot the parenthesis, to group the conditions accordingly
--
11:56:01 up 37 days, 16:23, 2 users, load average: 1.86, 0.99, 0.72
-----------------------------------------------------------------
Martín Marqués | select 'mmarques' || '@' || 'unl.edu.ar'
Centro de Telematica | DBA, Programador, Administrador
Universidad Nacional
del Litoral
-----------------------------------------------------------------
From | Date | Subject | |
---|---|---|---|
Next Message | Sebastian Böck | 2004-04-15 15:35:11 | Re: Problems with Triggers |
Previous Message | Thomas Chille | 2004-04-15 14:55:28 | PLpgSQL-Problem |