Re: can these queries be combined into one?

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема Re: can these queries be combined into one?
Дата
Msg-id 1332663245.2313.7.camel@localhost.localdomain
обсуждение исходный текст
Ответ на can these queries be combined into one?  (hamann.w@t-online.de)
Список pgsql-general
On Sun, 2012-03-25 at 07:16 +0000, hamann.w@t-online.de wrote:
>
> Hi,
>
> I am currently doing something like
>
> select ordercode, descr, codes into temp table x from products where ...
> Here codes is a bit-mapped field
> update x set codes = codes | 512 from othertable t where ordercode = t.ordercode and ....
> select * from x
>
> Is there a way to avoid that temp table?
>

Difficult to be really precise, but you may do this with:

UPDATE products
SET codes = codes | 512
FROM othertable t
WHERE
  <your first-SELECT WHERE clause here>
  AND ordercode = t.ordercode AND ...
RETURNING
  ordercode, descr, codes;

You need at least 8.2 to use the RETURNING clause.


--
Guillaume
http://blog.guillaume.lelarge.info
http://www.dalibo.com


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

Предыдущее
От: Jasen Betts
Дата:
Сообщение: Re: Help in Parsing PG log usings CSV format
Следующее
От: Jasen Betts
Дата:
Сообщение: Re: can these queries be combined into one?