On Wed, Aug 23, 2017 at 11:03 AM, Campbell, Lance <lance@illinois.edu> wrote:
On average in any consecutive five minute time frame how many times is the web page viewed?
Do you want:
(00,05], (05,10], etc
or
(00,05], (01,06], (02, 07], etc
In either case you would want to build out a table containing that start and end points (two columns or an actual range-typed column), then join T1 to that table with an ON clause (t1.timestamp BETWEEN r1.rangestart AND r1.rangeend)