1.不要使用不含有条件的语句,比如select * from tablename,要加上where条件,并且
条件中满足此表的所建立的索引
2.在加上条件的时候最好按照索引顺序
3.尽量不使用not in, not exists ,<> , !=这样的条件
4.在条件索引字段上不要加上表达式,特别注意隐式转换,比如custno字段为char型,那
么不要使用where custno=10001000,应该使用where custno='10001000'
5.尽量不要使用like语句
6.在索引字段中不得有为空的记录,在对此索引字段进行where选择时尽量不要使用is
null或者is not null语句