I want to get the data which the date is next 2 days from today below are my sql statement, i am using mysql
SELECT *
FROM guest g inner join reservation r on g.nric = r.guestNric
WHERE arrivalDate = DATE_ADD(NOW(), INTERVAL +2 DAY)
My problem now is if i am using = becuase my arrivalDate format is 'yyyy-MM-dd' then the Date_Add format is come with timestamp so it wont be equals any idea how can i solve this problem?