开发者

SQL statement to get the date next 2 days from now

开发者 https://www.devze.com 2023-03-08 00:35 出处:网络
I want to get the data which the date is next 2开发者_JAVA百科 days from today below are my sql statement, i am using mysql

I want to get the data which the date is next 2开发者_JAVA百科 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?


Try this:

SELECT * 
FROM guest g inner join reservation r on g.nric = r.guestNric 
WHERE arrivalDate = DATE(DATE_ADD(NOW(), INTERVAL +2 DAY))


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

0

精彩评论

暂无评论...
验证码 换一张
取 消