bug in the concatenation of the selection...

Поиск
Список
Период
Сортировка
От Andres Cuevas
Тема bug in the concatenation of the selection...
Дата
Msg-id 20030606210047.74983.qmail@web10401.mail.yahoo.com
обсуждение исходный текст
Ответы Re: bug in the concatenation of the selection...  (Joe Conway <mail@joeconway.com>)
Список pgsql-bugs
CREATE TABLE foo ("key" int4 NOT NULL, "data1"
varchar(20), "data2" varchar(20));

INSERT INTO foo VALUES ('1','zzz');

SELECT * FROM foo ;
 key | data1 | data2
-----+-------+-------
   1 | zzz   |
(1 row)

SELECT key || '|' || data1 || '|' || data2 FROM foo;
 ?column?
----------

(1 row)

If data1 or data2 are NULL the request is NULL


__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: Detecting proper bison version before make
Следующее
От: Joe Conway
Дата:
Сообщение: Re: bug in the concatenation of the selection...