1

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?

Adriano Carneiro
  • 55,739
  • 12
  • 86
  • 122
user236501
  • 8,300
  • 23
  • 82
  • 119

2 Answers2

2

Try this:

SELECT * 
FROM guest g inner join reservation r on g.nric = r.guestNric 
WHERE arrivalDate = DATE(DATE_ADD(NOW(), INTERVAL +2 DAY))
Hck
  • 8,837
  • 2
  • 29
  • 25
0

Try replacing NOW()with CURTIME(). The type return value of DATE_ADD() corresponds to the type of the first parameter.

Dennis Traub
  • 48,682
  • 7
  • 87
  • 104