简体   繁体   中英

Find a record between two dates MySQL

I am attempting to find records in my DB that's end_date is within 24 hours of the current time.

Here is the query I am currently running

select *
FROM record r
WHERE NOW() BETWEEN r.end_date AND DATE_ADD(r.end_date, INTERVAL -1 DAY);

This doesn't bring back any of the records with an end_date within 24 hours, am I using the DATE_ADD function wrong?

I think this is what you need:

select *
FROM record r
where
r.end_date >= date_add(now(), INTERVAL -1 DAY)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM