我有这两个相同的陈述。第一个有效,但是第二个无效,或者我无法等待的时间花费不成比例
状态1
select * from wtl where id between 1 and 500000
group by a_num,b_num,calldate,call_time,duration
声明2
select * from wtl where id between 500001 and 1000000
group by a_num,b_num,calldate,call_time,duration
第一个语句以秒为单位开始返回结果集,而第二个语句在30分钟以上未返回任何内容
两个语句都应处理500000条记录。 id是主键