Обсуждение: Problems with Triggers

Поиск
Список
Период
Сортировка

Problems with Triggers

От
Sebastian Böck
Дата:
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

Thanks in advance

Sebastian

Re: Problems with Triggers

От
Martin Marques
Дата:
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
-----------------------------------------------------------------


Re: Problems with Triggers

От
Sebastian Böck
Дата:
Martin Marques wrote:
> 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

Yes i did in my mail, but that's not the question.
I wanted to know if there is a special operator that does exactly
this.

Sebastian


Re: Problems with Triggers

От
Stephan Szabo
Дата:
On Thu, 15 Apr 2004, [ISO-8859-1] Sebastian B�ck wrote:

> is there a simple operator to determine whether the OLD.value and
> NEW.value are different. The <> operator is not working on NULL's.

Not as far as I know, although I think you can simplify the last part as
(NEW.val IS NULL <> OLD.val IS NULL)

> 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