반응형
CONVERT_TZ('2008-05-15 12:00:00','+00:00','+10:00');
In MySQL the CONVERT_TZ() returns a resulting value after converting a datetime value from a time zone specified as the second argument to the time zone specified as the third argument. This function returns NULL when the arguments are invalid
Name |
Description |
---|---|
dt | A datetime. |
from_tz | A time zone which will be converted to to_tz. |
to_tz | A time zone in which the from_tz will convert. |
Hostiner 프리미엄 플랜을 사용중인데, 디비에 현재 시간으로 저장하면,
9시간 전으로 저장되었다. 그래서 타임존을 다음과 같이 변경하여 저장하니,
우리나라 시간에 맞게 저장되었다
CONVERT_TZ(NOW(),'+00:00','+09:00')
참고 : http://www.w3resource.com/mysql/date-and-time-functions/mysql-convert_tz-function.php
"이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다."
반응형
'IT > PHP' 카테고리의 다른 글
json_decode 함수 null 반환 (0) | 2017.07.25 |
---|---|
Mysql 의 Password() 함수로 만든 hash 를 bcrpyt 로 변경해주는 Wordpress plugin (0) | 2017.05.30 |
[PHP] PDO API (0) | 2016.10.22 |
PHP MySqli 사용 예제 (0) | 2016.10.19 |
PHP Trait (0) | 2016.10.07 |
PHP list 문 (0) | 2016.10.03 |
Language construct (0) | 2016.09.25 |
Maria DB Query 사용법 및 기타 주의 사항 (0) | 2016.09.12 |
PHP namespace (0) | 2016.08.21 |
PHP Array (0) | 2016.08.03 |
댓글