使用索引查詢:應避免造成全表查詢的(索引失效的情況):避免null值查詢。索引列的資料不要大量重複。where語句中or(union替代)、in not in(between and)、like、!=和<>符號的使用。where子查詢中使用引數引入( select id from t where [email protected] 可以改為強制查詢使用索引: select id from t with(index(索引名)) where
[email protected] )、 where 子句中對欄位進行表示式操作(select * from user where id/2 =100 強制改為select * from user where id =100*2)、where字句中對欄位進行函式操作的、在where字句等號左面使用函式、算數運算及其他運算。