即查询时仅显示maintain_time字段为最新时间的行
select * from 表 where maintain_time=(select max(maintain_time) from 表)
~~
select top 1 * from 表 order by maintain_time desc