Re: using max() aggregate

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: using max() aggregate
Дата
Msg-id 5791.961135553@sss.pgh.pa.us
обсуждение исходный текст
Ответ на using max() aggregate  (Louis-David Mitterrand <cunctator@apartia.ch>)
Ответы Re: using max() aggregate
Список pgsql-general
Louis-David Mitterrand <cunctator@apartia.ch> writes:
> I am trying to return the most recently updated record from a table:
> SELECT max(stopdate) FROM auction;
> and this works but only returns the timestamp, however if I try to get
> another column with the aggregate it fails:

Perhaps

select * from auction order by stopdate desc limit 1;

In 7.0 this should even be pretty quick, if you have an index on
stopdate.

            regards, tom lane

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

Предыдущее
От: Louis-David Mitterrand
Дата:
Сообщение: using max() aggregate
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Re: Crosstab SQL Question