Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
[MySQL] NOW(), SYSDATE()의 차이점 본문
오늘 인터넷에서 검색하다가 우연히 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()는 실행을 시작할 때의 시각을 리턴하는 차이가 있다.
'Database > MySQL' 카테고리의 다른 글
Mac 에서 MySQL 실행하기. 한글깨짐 현상 방지. (0) | 2015.04.20 |
---|---|
[MySQL] Mac OS X 에서 실행 에러. The server quit without updating PID file (/usr/local/mysql/data/***.local.pid) (0) | 2015.04.15 |
[MySQL] install을 했는데 서비스에 안나올때 추가하기. (0) | 2015.03.15 |
[MySQL] Linux에서 테이블명 대소문자 구분 안하기 (0) | 2015.02.17 |
[MySQL] 원격 접속이 안될때 확인할 사항 (1) | 2015.01.29 |
Comments