Re: nullif('','') on insert

Поиск
Список
Период
Сортировка
От Chris Travers
Тема Re: nullif('','') on insert
Дата
Msg-id 43100C05.7020309@travelamericas.com
обсуждение исходный текст
Ответ на nullif('','') on insert  ("Matt L." <survivedsushi@yahoo.com>)
Ответы Re: nullif('','') on insert  (Bruno Wolff III <bruno@wolff.to>)
Список pgsql-sql
Matt L. wrote:

>I need to test whether or not a value is null on
>insert. 
>
>Example: insert into table (column) values
>nullif('',''));
>ERROR: column "column" is of type boolean but
>expression is of type text.
>  
>
Your problem is that NULL's are typed in PostgreSQL.

Try this:

SELECT NULL;
SELECT NULL::BOOL;
SELECT NULL::BOOL::TEXT;

to see what I mean.  This is an exact illustration of your problem.

>It works in MSSQL (probably against not standards) but
>nonetheless I need to make it work.
>
>I assume it's returning 'NULL' w/ quotes?
>
Nope.  It is returning a text string which is valued at NULL.  It cannot 
convert a text string to a BOOL (even if the string is a NULL) so it 
gives you an error.

> I don't know
>where to look to alter it. I looked into functions but
>all I see is how to write "AS queries" or point to
>various snippets. I'd rather just alter the nullif
>function. 
>  
>
SELECT NULLIF('' = '', TRUE);

Does this work?  You could write a wrapper function if necessary.....

Best Wishes,
Chris Travers
Metatron Technology Consulting


В списке pgsql-sql по дате отправления:

Предыдущее
От: Chris Travers
Дата:
Сообщение: Re: booleans and nulls
Следующее
От: Havasvölgyi Ottó
Дата:
Сообщение: Re: returning inserted id