mysql查询时将时间戳转换为时间格式
代码如下:
select *,(select from_unixtime(addtime,'%Y-%m-%d %H:%i:%S')) as `转积分时间` from tp_recharge_log where username='13661265266'
主要使用:
select from_unixtime()
函数完成。
应用场景很多,有时数据库存储时间是用时间戳存储的,这样查看时间非常不方便,这个函数就可以派上用场了。
版权声明:若无特殊注明,本文皆为《菜鸟站长》原创,转载请保留文章出处。
本文链接:mysql查询时将时间戳转换为时间格式 - https://wziyi.net/?post=304