表名adm_cplist
按cp_name分组 计算每个分组的d_time的最新的两条数据的时间差
解决方案:10分
对mysql搞得这么复杂sql时吃不消的,mysql本着越简单越好。
解决方案:30分
select *, (d_time-(select max(d_time) from adm_cplist where cp_name=t.cp_name and d_time<t.d_time)) as k from adm_cplist t where not exists (select 1 from adm_cplist where cp_name=t.cp_name and d_time>t.d_time)