Re: Is this a feature ?

Поиск
Список
Период
Сортировка
От Jan Wieck
Тема Re: Is this a feature ?
Дата
Msg-id 200206041433.g54EXgE04836@saturn.janwieck.net
обсуждение исходный текст
Ответ на Is this a feature ?  (David BOURIAUD <david.bouriaud@ac-rouen.fr>)
Список pgsql-sql
David,
   yes, this is a feature, and no, we will not change it.
   You're  missing  the difference between empty strings or zero   value and SQL NULL values. Do you know (hint,  hint)
how  to   use the mailing list archives?
 


Jan

David BOURIAUD wrote:
> Hi the list !
> I've read the docs, and found that you could concatenate two or more strings
> in one select statement like this :
> select
>    civ || name || forname as identity
> from
>    person;
>
> This just works fine and returns rows with only one column named identity.
> So far, if one of the fields (civ, name or forname) is null, identity is
> null... That doesn't seems right, since it means that 1+2+0 = 0 !!!!
> Has anybody else seen the same strange behaviour ? And is there a way to work
> this around ?
> Please, don't answer me to use the function textcat (text, text), since it
> behaves the same and makes queries quite unreadeable...
> eg.
> select
>    textcat ( textcat (civ, name), forname) as identity
> from person;
> is quite readeable, but when you add fields separator, it isn't.
> --
> David BOURIAUD
> ----------------------------------------------------------
> In a world without walls or fences, what use do we have
> for windows or gates ?
> ----------------------------------------------------------
> ICQ#102562021
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>


--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me.                                  #
#================================================== JanWieck@Yahoo.com #




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

Предыдущее
От: "Marie G. Tuite"
Дата:
Сообщение: passing a list to a function and returning a recordset
Следующее
От: "Nick Fankhauser"
Дата:
Сообщение: Re: Is this a feature ?