I have a duedate column(datetime format) that specifies the due date of a ticket, now i need to get ‘Due today’ tickets base on the comparison between now() with duedate. i.e 2010-04-29 02:00 vs 2010-04-29 10:00 would return true in this matter.
I have a duedate column( datetime format) that specifies the due date of a
Share
Use
DATE(NOW())to compare datesDATE(NOW())will give you the date part of current date andDATE(duedate)will give you the date part of the due date. then you can easily compare the datesSo you can compare it like
OR
See here