Re: NULLS and string concatenation

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: NULLS and string concatenation
Дата
Msg-id 20041119174543.GA26505@wolff.to
обсуждение исходный текст
Ответ на NULLS and string concatenation  (Don Drake <dondrake@gmail.com>)
Ответы Re: NULLS and string concatenation
Список pgsql-sql
On Fri, Nov 19, 2004 at 11:12:38 -0600, Don Drake <dondrake@gmail.com> wrote:
> I have a function that uses an execute statement to insert data into a
> table, I do in my implementation of table partitioning.
> 
> Anyway, I ran into trouble when NULL values were being passed in
> (fields are nullable) and my insert statement turned into a big NULL.
> 
> Here's an equivalent statement that caused trouble:
> 
> select 'some text, should be null:'|| NULL
> 
> This returns NULL and no other text.  Why is that?  I wasn't expecting
> the "some text.." to disappear altogether.
> 
> Is this a bug?

No.
> 
> I was able to work around the problem by using COALESCE (and casting
> variables since it wants the same data types passed to it).

This is what you should do.

> 
> -Don
> 
> -- 
> Donald Drake
> President
> Drake Consulting
> http://www.drakeconsult.com/
> 312-560-1574
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
>       subscribe-nomail command to majordomo@postgresql.org so that your
>       message can get through to the mailing list cleanly


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

Предыдущее
От: Don Drake
Дата:
Сообщение: NULLS and string concatenation
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: NULLS and string concatenation