关于SQL处理时间戳的问题

今天在项目中遇到一个问题:一个表中含有多个时间戳的字段,怎样在列表显示出处理过的时间。问了一个大佬,给我的解答方法:

(1)当只有一个时间戳字段要处理的时候,只需要在查询的字段上加上下面的代码:

IF(create_time>0,FROM_UNIXTIME(`create_time`,'%Y-%m-%d'),'--') as `create_time`

(2)当含有多个时间戳字段处理的时候,只需要在查询的字段上加上下面的代码:

(case when create_time>0 then FROM_UNIXTIME(`create_time`,'%Y-%m-%d') else '--'  end) as create_time,
(case when start_time>0 then FROM_UNIXTIME(`start_time`,'%Y-%m-%d') else '--'  end) as start_time,
(case when end_time>0 then FROM_UNIXTIME(`end_time`,'%Y-%m-%d') else '--'  end) as end_time"

你可能感兴趣的:(学习笔记)