× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: sql comparison between records
  • From: Pete Hall <pbhall@xxxxxxxxxx>
  • Date: Wed, 25 Jul 2001 20:56:39 -0500

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 thread ...

Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 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.