这样看看,我没数据
select a.ID,a.BB,a.CC,a.DD,a.EE,a.FF,a.TIME from 表A a,(select ID,BB,CC,DD,EE,FF,TIME from 表A where Time > '2016-09-01 09:09:00')b
where a.BB=b.BB and a.CC=b.CC and a.DD=b.DD and a.TIME<='2016-09-01 09:09:00'
select a.ID,a.BB,a.CC,a.DD,a.EE,a.FF,a.TIME from 表A a,(select ID,BB,CC,DD,EE,FF,TIME from 表A where Time > '2016-09-01 09:09:00')b
where a.BB=b.BB and a.CC=b.CC and a.DD=b.DD
--and a.TIME<='2016-09-01 09:09:00'
上面红色的,不要,应该可以显示所有的。