我有保存票信息的表,我想知道票在某个池中停留了多长时间。我写了以下查询:
SELECT FROM_UNIXTIME((MAX(T.transfareDate)-MAX(TMAX.transfareDate)),'%k hours, %i minutes, %s seconds') AS 'Time to repair'
FROM aims_item_group_transfare T
LEFT JOIN aims_item_group_transfare TMAX ON T.item_id = TMAX.item_id AND TMAX.toGroupId=20
WHERE T.fromGroupId =20
它工作正常,现在我想获得以下天数:Days:Hours:Minutes:Seconds
任何机构都可以帮忙吗?