本文导读:
select unix_timestamp('2023-9-4');
// 运行结果是2023-09-04 00:00:00 的时间戳: 1693756800
select from_unixtime(1693756800,'%Y-%m-%d %H:%i:%S');
//运行结果是2023-09-04 00:00:00
基于mysql的这个自带函数unix_timestamp,可以对数据库的时间进行批量转换:
update createtime = unix_timestamp(createtime) from table1
//把原来的时间格式的时间转换成时间戳。
下一篇:阿里云安装宝塔卡死原因