Re: concatenating with NULLs - Mailing list pgsql-general

From Glen Parker
Subject Re: concatenating with NULLs
Date
Msg-id 4DB5F5A6.6050107@nwlink.com
Whole thread Raw
In response to concatenating with NULLs  (Seb <spluque@gmail.com>)
List pgsql-general
On 04/25/2011 02:13 PM, Seb wrote:
> A query such as:
>
> SELECT 'a' || 'b' || NULL;
>
> returns a NULL.  How can I ensure I get 'ab' in the result?  I'm trying
> to concatenate columns and one of them might have NULL values, which I
> simply want to ignore.


SELECT 'a' || 'b' || coalesce(NULL, '');


pgsql-general by date:

Previous
From: "David Johnston"
Date:
Subject: Re: concatenating with NULLs
Next
From: Phoenix Kiula
Date:
Subject: Re: Help - corruption issue?