From: | Raymond O'Donnell <rod(at)iol(dot)ie> |
---|---|
To: | Jonathan Vanasco <postgres(at)2xlp(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: concatenation issue ( 8.4 ) |
Date: | 2009-09-18 16:25:55 |
Message-ID: | 4AB3B493.7050709@iol.ie |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On 18/09/2009 16:52, Jonathan Vanasco wrote:
> I have a table with
> name_first
> name_middle
> name_last
>
> if i try concatenating as such:
> SELECT
> name_first || ' ' || name_middle || ' ' || name_last
> FROM
> mytable
> ;
>
> I end up with NULL as the concatenated string whenever any of the
> referred fields contain a NULL value
>
> I tried some text conversion and explicit casting , but that didn't work
>
> What am I doing wrong ?
Use the coalesce() function to ensure that you get non-null values, thus:
select
coalesce(name_first, '') || ' ' || coalesce (name_middle, '') ....
Ray.
------------------------------------------------------------------
Raymond O'Donnell, Director of Music, Galway Cathedral, Ireland
rod(at)iol(dot)ie
Galway Cathedral Recitals: http://www.galwaycathedral.org/recitals
------------------------------------------------------------------
From | Date | Subject | |
---|---|---|---|
Next Message | ekekakos | 2009-09-18 16:44:51 | Repetitive fields |
Previous Message | Richard Huxton | 2009-09-18 15:56:23 | Re: pgadmin is changing pgpass.conf |