MySQL WHERE statement for finding expiry date within 2 days -
i have column named expiry holds expiry date of item in timestamp format.
how execute mysql query select items expiry date within 2 days?
thanks!!
select * table expiry between(today(), today() + 2)
Comments
Post a Comment