Re: Insert using a subselect?

Поиск
Список
Период
Сортировка
От Jason Tan
Тема Re: Insert using a subselect?
Дата
Msg-id Pine.LNX.3.95.1010911124729.27217A-100000@rebel.rebel.net.au
обсуждение исходный текст
Ответ на Insert using a subselect?  (Francisco Reyes <lists@natserv.com>)
Ответы Re: Insert using a subselect?  (Francisco Reyes <lists@natserv.com>)
Список pgsql-novice
On Mon, 10 Sep 2001, Francisco Reyes wrote:

> Does PostgreSQL supports doing an insert with a subselect as it's value?
> Something like:
>
> insert into hearn_dates (date)
> values ((select distinct merge_date from hearn));
>
> The error I am getting is:
> ERROR:  More than one tuple returned by a subselect used as an expression.
>

Presumably you slect distinct is returing more than one value/tuple.

Run it by hand and see what it returns.


Jason


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

Предыдущее
От: Francisco Reyes
Дата:
Сообщение: Insert using a subselect?
Следующее
От: Jason Tan
Дата:
Сообщение: Re: