|
At 10:14 07/25/2001, you wrote:
>I need to calculate the average duration between records for records that
>can be grouped by key. The real world application is mean time between
>clicks in a web site session. Regardless, it's kind of interesting in the
>abstract, IMHO. I was a big fan of Joe Celko's column when it used to
>appear in a now defunct freebie trade magazine. One of the recurring
>implicit themes of his column was the difference between the types of
>problems that were naturally suited to a procedural language and those that
>were better suited to SQL.
How about something like this?
Select SessionID,
Minute(Max(TimeStamp) - Min(TimeStamp))/(Count(TimeStamp)-1) As
Duration,
Count(TimeStamp) - 1 As Pages
From WebLog
Group By SessionID
Pete Hall
pbhall@execpc.com
http://www.execpc.com/~pbhall/
+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com.
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.