1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > Mysql 日期 字符串 时间戳互转

Mysql 日期 字符串 时间戳互转

时间:2019-12-17 02:37:36

相关推荐

Mysql 日期 字符串 时间戳互转

划重点

常用的时间占位符 ->%Y-%m-%d %H:%i:%S

一、函数

1、date_format(date, format)

select date_format(now(),'%Y-%m-%d %H:%i:%S');# -10-29 14:02:54

2、unix_timestamp()

select unix_timestamp(now()); # 1509257408

3、str_to_date(str, format)

select str_to_date('-10-29', '%Y-%m-%d %H:%i:%S');# -10-29 00:00:00

4、from_unixtime(unix_timestamp, format)

select from_unixtime(1509257408); # -10-29 14:10:08

转载注明出处: 😃

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。