select to detect overlapping timeframes - Mailing list pgsql-php

From Dave [Hawk-Systems]
Subject select to detect overlapping timeframes
Date
Msg-id DBEIKNMKGOBGNDHAAKGNKEFLDLAC.dave@hawk-systems.com
Whole thread Raw
Responses Re: select to detect overlapping timeframes
List pgsql-php
looking for a better way to query and cehck for overlapping timeframes.

am selecting records for display that has 3 fields of importance;
    date_time (unix timestamp)
    session_time (in seconds)
    user_id      (text field)

Of all the sessions recorded, we are looking for a count of duplicate sessions
for a given month. currently we are doing this with two seperate calls, but it
is taking forever to process;

# first query is to gather sessions that took place within a given month
$query = "SELECT * FROM logs WHERE name='$username' AND \
    date_time>$dategt AND date_time<$datelt \
    ORDER BY date_time DESC";
$result = pg_exec($database,$query);
$numrows=pg_numrows($result);
for($count=0;$count<$numrows;$count++){
    $row = pg_fetch_array($result,$count);
# as we go through the hits, check for duplicates within that timeframe as well
    $DUPquery = "SELECT session_id FROM logs WHERE name='$username' AND \
        date_time>$sessionstart AND \
        (date_time - session_time)<$datetime \
        ORDER BY name ASC, date_time DESC";
    $DUPresult=pg_exec($database,$DUPquery);
    $DUPcount=pg_numrows($DUPresult);


Obviously this is extremely processor intensive, not to mention it seems sloppy.
Any better recommendations, either on altering the above code, or another way to
get the information we require?

Dave



pgsql-php by date:

Previous
From: Ângelo Marcos Rigo
Date:
Subject: Re: Update problem
Next
From: DeJuan Jackson
Date:
Subject: Re: select to detect overlapping timeframes