Re: pl/pgsql function problem

Поиск
Список
Период
Сортировка
От Andrew McMillan
Тема Re: pl/pgsql function problem
Дата
Msg-id 999904006.12217.31.camel@kant.mcmillan.net.nz
обсуждение исходный текст
Ответ на pl/pgsql function problem  (David Mulcahy <eseol@mersinet.co.uk>)
Список pgsql-novice
On Sat, 2001-09-08 at 01:09, David Mulcahy wrote:
> I am having problems doing what seems to be a very simple thing.  All I
> need is to join 2 or more variables (eg char, int, date) and return them
> as a single varchar variable.
>
> eg ret := int + char + date; or better still join("+", int,char,date)
> return ret;


Use COALESCE( VALUE, ...) to replace nulls with default values - it will
return the first non-null argument from the list of values.

Older versions of PL/PGSQL will always return null if any argument to
the function is null, so you may have to use this where you _call_ the
function, rather than within the function.

Regards,
                    Andrew.
--
_____________________________________________________________________
        Andrew McMillan, e-mail: Andrew @ catalyst . net . nz
Catalyst IT Ltd, PO Box 10-225, Level 22, 105 The Terrace, Wellington
Me: +64(21)635-694,  Fax:+64(4)499-5596, Office: +64(4)499-2267xtn709


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

Предыдущее
От: David Mulcahy
Дата:
Сообщение: pl/pgsql function problem
Следующее
От: Vijay Deval
Дата:
Сообщение: Re: Importing an ASCII file