in reply to Re^2: sth fetch only grabbing back first result
in thread sth fetch only grabbing back first result
To show more aptly.
mysql> SELECT CURDATE(); +------------+ | CURDATE() | +------------+ | 2006-08-10 | +------------+ 1 row in set (0.01 sec) mysql> SELECT NOW(); +---------------------+ | NOW() | +---------------------+ | 2006-08-10 15:41:19 | +---------------------+ 1 row in set (0.01 sec) mysql> SELECT UNIX_TIMESTAMP(); +------------------+ | UNIX_TIMESTAMP() | +------------------+ | 1155238891 | +------------------+ 1 row in set (0.00 sec)
This way, when I use the '<' or '>' to compare numbers (such as UNIX_TIMESTAMP()'s), it is consistant. As opposed to comparing CURDATE() and NOW() where one has a time value and one is just a date. That is how I remember things anyway.
Eric
|
|---|