Re: nicer examples for aggregate calls

2022-08-31 Thread Bruce Momjian
On Wed, Aug 17, 2022 at 12:20:10PM -0400, Bruce Momjian wrote: > On Sat, Oct 23, 2021 at 01:51:48PM +, PG Doc comments form wrote: > > The following documentation comment has been logged on the website: > > > > Page: https://www.postgresql.org/docs/14/tutorial-agg.html > > Description: > > >

Re: nicer examples for aggregate calls

2022-08-17 Thread Bruce Momjian
On Sat, Oct 23, 2021 at 01:51:48PM +, PG Doc comments form wrote: > The following documentation comment has been logged on the website: > > Page: https://www.postgresql.org/docs/14/tutorial-agg.html > Description: > > currently, all of the examples are very simple, like > > SELECT city, max(

nicer examples for aggregate calls

2021-10-23 Thread PG Doc comments form
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/14/tutorial-agg.html Description: currently, all of the examples are very simple, like SELECT city, max(temp_lo) FROM weather WHERE city LIKE 'S%'-- (1) GROUP BY city