Re: 8.2.4 serious slowdown

Поиск
Список
Период
Сортировка
От Clodoaldo
Тема Re: 8.2.4 serious slowdown
Дата
Msg-id a595de7a0801130050ye92d410xac788e29a7e40682@mail.gmail.com
обсуждение исходный текст
Ответ на Re: 8.2.4 serious slowdown  (Sim Zacks <sim@compulab.co.il>)
Ответы Re: 8.2.4 serious slowdown  (Sim Zacks <sim@compulab.co.il>)
Список pgsql-general
2008/1/13, Sim Zacks <sim@compulab.co.il>:
> How would you rewrite something like:
>    WHERE (COALESCE(b.quantity, 0) - COALESCE(b.deliveredsum, 0)) > 0;
> I could write:
> where case when b.quantity is null then 0 else b.quantity end - case when b.deliveredsum is null then 0 else
b.deliveredsumend > 0 
>
> It is butt ugly, but is that the most efficient way to write it in 8.2.4?

I don't know if the plan would be the same but this is a bit clearer:

WHERE COALESCE(b.quantity, 0) > COALESCE(b.deliveredsum, 0)

Regards, Clodoaldo Pinto Neto

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

Предыдущее
От: "henry"
Дата:
Сообщение: Re: tcp_keepalives_idle ignored
Следующее
От: Sim Zacks
Дата:
Сообщение: Re: 8.2.4 serious slowdown