Concatenation containing a "null" term - Mailing list pgsql-novice

From Pierre Thibaudeau
Subject Concatenation containing a "null" term
Date
Msg-id 74b035bb0605281417x5fcfc69t6a1def25c193a02d@mail.gmail.com
Whole thread Raw
Responses Re: Concatenation containing a "null" term
List 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!

pgsql-novice by date:

Previous
From: Bruno Wolff III
Date:
Subject: Re: SQL Question - S/B Good...
Next
From: Michael Fuhr
Date:
Subject: Re: Concatenation containing a "null" term