Concatenation containing a "null" term

From: "Pierre Thibaudeau" <pierdeux(at)gmail(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Subject: Concatenation containing a "null" term
Date: 2006-05-28 21:17:12
Message-ID: 74b035bb0605281417x5fcfc69t6a1def25c193a02d@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

(I am certain I once saw the answer to the following question, but I can't
for the life of me find out where!)

I create a View as

SELECT (firstname || ' ' || lastname)::character(50) AS fullname
FROM name_table;

firstname and lastname are text columns, and firstname may be null.

Unfortunately, it seems that whenever firstname is null, the resulting
fullname is null also. Is there a way of having the null-strings terms of
the concatenation operator be considered as empty strings instead?

Thanks for the help!

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Michael Fuhr 2006-05-28 21:33:37 Re: Concatenation containing a "null" term
Previous Message Donald Brady 2006-05-28 06:02:02 trigger help