Tom Lane wrote:
> SELECT DISTINCT ON place * FROM table ORDER BY place, time DESC;
Clever. But why doesn't this work....
select title, summary, time from story t where time = (select
max(s.time) from story s GROUP BY s.title);
ERROR: parser: Subselect has too many or too few fields.