Re: Recursive Queries - Mailing list pgsql-general

From Michael Lewis
Subject Re: Recursive Queries
Date
Msg-id CAHOFxGrZb-zzF=jVqSTKMQqga8XOu=FJy4S997++Z5ZCw19tig@mail.gmail.com
Whole thread Raw
In response to RE: Recursive Queries  (Rob Northcott <Rob.Northcott@compilator.com>)
List pgsql-general
You don't want recursion, you want pivot table (Excel) behavior to reformat rows into columns. The easiest way to get this data in its raw form would be to group by date and hour of day and compute the count.

If you have the option to add extensions in your environment, then you should be able to pivot your data pretty simply.

pgsql-general by date:

Previous
From: Julien Rouhaud
Date:
Subject: Re: Recursive Queries
Next
From: Edward Macnaghten
Date:
Subject: Re: Recursive Queries