snrtuemc 回复 上海小呆(提问者)通过sql处理,去除最大最小日期
select type,max(date) from 表 group by type ---每个type最大日期
select type,min(date) from 表 group by type ---每个type最小日期
select type,max(date) from 表 wher type=1 ---指定type最大日期
select type,min(date) from 表 where type= 1 ---指定type最小日期
然后根据这个用DATESUBDATE(date1,date2,op)去比较