I have a table of daily emails to be sent. So I'm storing a time of day, as a time field (00:00:00, without a date). A couple example rows might be:
mike, timeOfDay = 07:03 meaning "send mike an email daily at 7:03AM"
corey, timeOfDay = 23:30 meaning "send corey an email daily at 11:30PM"
At any given time, I want to find the emails to send from the last hour. For example, if I run this at 7:55AM, it should get all records between 6:55AM and 7:55AM. That will include mike's email. If the script runs at 12:15AM (00:15), it should get all records between 11:15PM (23:15) and 12:15AM (00:15). This will include corey's email.
I've looked at every example on SO and the web, and they all seem to require a date in addition to the hour.
As close as I could come:
SELECT
`notification`. *,
now() as now,
DATE_SUB( NOW( ) , INTERVAL 1 HOUR ) as 1hourAgo
FROM `notification`
WHERE (
`notification`.`timeofday` > DATE_SUB( NOW( ) , INTERVAL 1 HOUR )
)
AND (
`notification`.`timeofday` < NOW( )
)
I figured out a hack to match the hours of this hour and last, before now, but it seems, well, hackish. There must be a correct way to do this!
Here's the hack I've got.
SELECT
`notification`. * ,
HOUR( NOW( ) ) AS HOUR ,
HOUR( DATE_SUB( NOW( ) ,
INTERVAL 1 HOUR ) ) AS 1hourago,
time( now( ) ) AS now
FROM `notification`
WHERE (
HOUR( `notification`.`timeofday` ) = HOUR( NOW( ) )
OR HOUR( `notification`.`timeofday` ) = HOUR( DATE_SUB( NOW( ) , INTERVAL 1 HOUR ) )
)
AND (
`notification`.`timeofday` < TIME( NOW( ) )
)
Thanks for your help!