Mysql时间互转

第一种情况:日期转字符串

1、函数:date_format(date, format)

select date_format(now(),'%Y-%m-%d %H:%i:%S');

第二种情况:日期转时间戳

1、函数:unix_timestamp(data)

select unix_timestamp(now());

第三种情况:字符串转日期

1、函数:str_to_date(str,format);注:format格式必须和str的格式相同,否则返回空

select str_to_date('2020-12-20', '%Y-%m-%d %H:%i:%S');

第四种情况:时间戳转日期

1、函数:from_unixtime(time-stamp);

select from_unixtime(1509257408); 

第五种情况:时间戳转日期

1、函数:from_unixtime(time-stamp,format);

select from_unixtime(1509257408,'%Y~%m~%d %H:%i:%S');
posted @ 2024-07-30 14:01  龙卷风之殇  阅读(178)  评论(0编辑  收藏  举报