Re: executing delete in a case statement?

Поиск
Список
Период
Сортировка
От Richard Huxton
Тема Re: executing delete in a case statement?
Дата
Msg-id 200211051042.21973.dev@archonet.com
обсуждение исходный текст
Ответ на executing delete in a case statement?  (Jean-Christian Imbeault <jc@mega-bucks.co.jp>)
Список pgsql-general
On Tuesday 05 Nov 2002 10:03 am, Jean-Christian Imbeault wrote:
> What is the proper way to execute a delete statement (if possible) in a
> case statement. I am trying various versions of the following but can't
> get it to work:
>
> "select member_id, case when (select count(buy_later) from cart_li where
> member_id=cart_id AND buy_later=true) > 0 then (delete from cart_li
> where cart_id=10) end from carts"

The "case" is supposed to be returning a value not taking actions. SQL is not
a procedural language like C/Perl/PHP etc.

SELECT a,
          CASE WHEN a=1 THEN 'one'
               WHEN a=2 THEN 'two'
               ELSE 'other'
          END
    FROM test;

See "functions and operators" in the manual for details.

--
  Richard Huxton

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

Предыдущее
От: Jean-Christian Imbeault
Дата:
Сообщение: executing delete in a case statement?
Следующее
От: Richard Huxton
Дата:
Сообщение: Re: log file?