2015. 4. 15. 14:55
Mysql
DB 테이블 내용에 8자리의 Date형식이 보이는데 이는 unix_timestamp를 이용해
형식을 변환한 것이다.
2015-04-15 10:00:00
Date Time -> UnixTime
select UNIX_TIMESTAMP('2015-04-15 10:00:00');
1429059600
UnixTime -> DateTime
select FROM_UNIXTIME('1429059600');
2015-04-15 10:00:00
반응형
'Mysql' 카테고리의 다른 글
Warning: Using a password on the command line interface can be insecure. (0) | 2019.02.20 |
---|---|
Mysql 튜닝 (0) | 2014.07.03 |
Mysql 5.5 한글설정 (0) | 2013.11.11 |
Mysql에서 too many connection에러 (0) | 2011.10.11 |
1017 : Can't find file: '테이블명.frm' (errno: 13) (0) | 2011.09.22 |