Jump to content

[SOLVED] mysql if datetime = today question


PyraX

Recommended Posts

Ha, I almost gave you a very slow query, but this one seems to work really fast:

Let me know how it works..

 

SELECT thedate FROM `test` WHERE
UNIX_TIMESTAMP(thedate) BETWEEN UNIX_TIMESTAMP(CURDATE())
AND
UNIX_TIMESTAMP(DATE_ADD(CURDATE(), INTERVAL + 86399 SECOND))

 

What does it mean?

Convert all datetimes (which I assume you're using) to UNIX_TIMESTAMP equivalents, and check that they are between the unix timestamp of today (at 00:00:00 seconds) and today at (23:59:59)  [1 second until tomorrow].

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.