민서네집

[MySQL] NOW(), SYSDATE()의 차이점 본문

Database/MySQL

[MySQL] NOW(), SYSDATE()의 차이점

브라이언7 2015. 4. 1. 13:09

오늘 인터넷에서 검색하다가 우연히 MySQL에서 NOW()와 SYSDATE()의 차이를 알게 되었다.


[출처] http://dev.mysql.com/doc/refman/5.1/en/date-and-time-functions.html#function%5Fstr-to-date


SYSDATE() returns the time at which it executes. This differs from the behavior for NOW(), which returns a constant time that indicates the time at which the statement began to execute. (Within a stored function or trigger,NOW() returns the time at which the function or triggering statement began to execute.)



SYSDATE()는 실행될 때의 시각을 리턴하는데, NOW()는 실행을 시작할 때의 시각을 리턴하는 차이가 있다.


Comments