Re: sql question (hopefully)

Поиск
Список
Период
Сортировка
От Dani Oderbolz
Тема Re: sql question (hopefully)
Дата
Msg-id 3EF068CD.2070803@ecologic.de
обсуждение исходный текст
Ответ на sql question (hopefully)  ("Mel Jamero" <mel@gmanmi.tv>)
Ответы Re: sql question (hopefully)
Список pgsql-novice
Mel Jamero wrote:

>problem is "select id from b_table" in #2 statement has the following
>output:
>id
>----
>2,3,4
>
>
Well,
this is completely different from the first case,
because for Postgres, "2,3,4" is just a string rather than a set
of numbers
(as in select id from b_table).
Sure, you could solve your problem with stuff like
- Build your query-String, then Execute this
- Parse your "2,3,4" String
But its better if you have the correct data in b_table,
that is, only one id in a given row (this is the first step
of a process called "Normalization". If you have more than one
value in a given row/column pair, you will have a lot more problems
than just this one.

Cheers,
Dani




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

Предыдущее
От: Ron Johnson
Дата:
Сообщение: Re: sql question (hopefully)
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Commit within a PL/PGSQL procedure