Re: Find min and max values across two columns?

Поиск
Список
Период
Сортировка
От Rod Taylor
Тема Re: Find min and max values across two columns?
Дата
Msg-id 1143235206.90799.108.camel@home
обсуждение исходный текст
Ответ на Re: Find min and max values across two columns?  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Find min and max values across two columns?  (Amos Hayes <ahayes@polkaroo.net>)
Список pgsql-sql
On Fri, 2006-03-24 at 16:20 -0500, Tom Lane wrote:
> Rod Taylor <pg@rbt.ca> writes:
> > The reason for the subselect is to prevent multiple calculations of
> > individual column aggregates. I believe it *may* be calculated multiple
> > times otherwise this would work just as well:
> 
> > select case when max(a) > max(b) then max(a) else max(b) end as max from
> > tab;
> 
> Just for the record, we've gotten that right since 7.4.  greatest()
> would be a notationally cleaner solution than CASE, but multiple
> occurrences of identical aggregates don't cost much of anything.

Thanks. I could not remember one way or the other.

-- 



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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Find min and max values across two columns?
Следующее
От: Don Maier
Дата:
Сообщение: Expressing a result set as an array (and vice versa)?