On Tue, 24 Jul 2001 15:23:10 -0400, [EMAIL PROTECTED]
(Ryan Shrout) wrote:
>WHERE session.Date > DATE_SUB(NOW(), INTERVAL 1 HOUR) is equal to:
>
>WHERE 2001-07-24 15:03:24 > SUBTRACTION( 2001-07-24 15:30:21, 00:01:00) =
>WHERE 2001-07-24 15:03:24 > 2001-07-24 14:30:21
i just tested on my box (dialup connection logs, start is the datetime
the subscriber logged on) and when i do:
select login,start,end,secs from log where
secs.start>date_sub(now(),interval 1 hour)
i get (it's after 3AM here... so the set is small):
+----------+---------------------+---------------------+------+
| login | start | end | secs |
+----------+---------------------+---------------------+------+
| costales | 2001-07-25 02:52:35 | 2001-07-25 03:27:54 | 2119 |
| utopia | 2001-07-25 03:19:38 | 2001-07-25 03:19:41 | 3 |
+----------+---------------------+---------------------+------+
works for me. maybe it's a data problem? what version of
mysql are you using? what happens when you do:
select Date from session order by date desc limit 10;
?
tiger
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]