mysql设置两个日期格式相减的方式:
原始数据表数据:
select (atime - btime) sec from 数据表;
相减得到的并不是秒,特别需要注意!
结果:
from 数据表;
from 数据表;
select (TIME_TO_SEC(end_time) -TIME_TO_SEC(start_time)) sec from task_detail where end_time is not null;
结果同上图所示;
修改数据:
update task_detail set end_time = now() where id = 8;
查询结果为负值,具体见截图:
故在做两个日期相减的时候,采用(TIME_TO_SEC(atime) - TIME_TO_SEC(btime)) sec方式比较好。