第一种情况:日期转字符串
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');标签:-%,format,unixtime,date,时间,str,Mysql,互转,select From: https://www.cnblogs.com/wujf-myblog/p/18332221