语句一:
select distinct a.StaffNo,a.BranchNo,a.mino,a.FromAmt,a.ToAmt   
from t_PostLevel a,t_staff b
where (a.mino='051300' or a.mino='051200') 
and a.staffno=b.staffno
and a.branchno=b.branchno
and b.status='1'
order by a.StaffNo,a.BranchNo,a.mino语句二:
select distinct a.StaffNo,a.BranchNo,a.mino,a.FromAmt,a.ToAmt   
from t_PostLevel a,t_staff b
where a.mino='051300' or a.mino='051200'
and a.staffno=b.staffno
and a.branchno=b.branchno
and b.status='1'
order by a.StaffNo,a.BranchNo,a.mino这两个sql语句的不统之处是一个用了括号,一个没有用括号,可为什么执行起来查询速度差别很大呢?请各位高手分析一下原因,谢谢