1. 不論乙個sql中涉及到多少表,每次都用兩個表(結果集)操作,得到新的結果後,再和下乙個表(結果集)操作。
2. 避免在select f1,(select f2 from tableb ).... from tablea 這樣得到欄位列。直接用tablea和tableb關聯得到a.f1,b.f2就可以了。
3.避免隱含的型別轉換
如:
select
idfrom employee where emp_id='8' (錯)
select
idfrom employee where emp_id=8 (對)
emp_id是整數型,用'8'會預設啟動型別轉換,增加查詢的開銷。
4. 儘量減少使用正規表示式,盡量不使用萬用字元。
5. 使用關鍵字代替函式
如:
select
idfrom employee where
upper(dept) like
'tech_db' (錯)
select
idfrom employee where
substr(dept,1,4)='tech' (錯)
select
idfrom employee where dept like
'tech%' (對)
6.不要在字段上用轉換函式,盡量在常量上用
如:
select
idfrom employee
where to_char(create_date,'yyyy-mm-dd')='2012-10-31' (錯)
select
idfrom employee
where create_date=to_date('2012-10-31','yyyy-mm-dd') (對)
7.不使用聯接做查詢
如:
select
idfrom employee where first_name || last_name like
'jo%' (錯)
8. 盡量避免前後都用萬用字元
如:
select
idfrom employee where dept like
'%tech%' (錯)
select
idfrom employee where dept like
'tech%' (對)
9. 判斷條件順序
如:
select
idfrom employee
where creat_date-30>to_date('2012-10-31','yyyy-mm-dd') (錯)
select
idfrom employee
where creat_date >to_date('2012-10-31','yyyy-mm-dd')+30 (對)
10. 盡量使用exists而非in
當然這個也要根據記錄的情況來定用exists還是用in, 通常的情況是用exists
select
idfrom employee where salary in
(select salary from emp_level where....) (錯)
select
idfrom employee where salary exists
(select
'x'from emp_level where ....) (對)
11. 使用not exists 而非not in,**和上面的類似。
12. 減少查詢表的記錄數範圍
13.正確使用索引
索引可以提高速度,一般來說,選擇度越高,索引的效率越高。
14. 索引型別
唯一索引,對於查詢用到的字段,盡可能使用唯一索引。
還有一些其他型別,如位圖索引,在性別字段,只有男女的字段上用。
15. 在經常進行連線,但是沒有指定為外來鍵的列上建立索引
16. 在頻繁進行排序會分組的列上建立索引,如經常做group by 或 order by 操作的字段。
17. 在條件表示式中經常用到的不同值較多的列上建立檢索,在不同值少的列上不建立索引。
如性別列上只有男,女兩個不同的值,就沒必要建立索引(或建立位圖索引)。如果建立索引不但不會提高查詢效率,反而會嚴重降低更新速度。
18. 在值比較少的字段做order by時,翻頁會出現記錄紊亂問題,要帶上id欄位一起做order by.
19. 不要使用空字串進行查詢
如:
select
idfrom employee where emp_name like
'%%' (錯)
20. 盡量對經常用作group by的關鍵字段做索引。
21. 正確使用表關聯
利用外連線替換效率十分低下的not in運算,大大提高執行速度。
如:
select a.id from employee a where a.emp_no not
in(select emp_no from employee1 where job ='sale') (錯)
22. 使用臨時表
在必要的情況下,為減少讀取次數,可以使用經過索引的臨時表加快速度。
如:
select e.id from employee e ,dept d where
e.dept_id=d.id and e.empno>1000
order
by e.id (錯)
select
id,empno from employee into temp_empl
where empno>1000
order
byid
select m.id from temp_emp1 m,dept d where m.empno=d.id (對)
sql優化建議
1 少用 不用 多表操作 子查詢,連線查詢 2 大量資料的插入 多條insert load data into talbe 建議,先關閉約束及索引,完成資料插入,再重新生成索引及約束。針對myisam alter table 表名 disable keys 禁用索引約束 alter table 表名...
SQL優化建議
這篇文章久之前,不知從 看到就儲存在本地的txt文件中,現在貼到部落格中,防止消失。1.應盡量避免在 where 子句中對字段進行 null 值判斷,否則將導致引擎放棄使用索引而進行全表掃瞄,如 select id from t where num is null 可以在num上設定預設值0,確保表...
Mysql語句優化建議
一 建立索引 1 考慮在 where 及 order by 涉及的列上建立索引 2 對於模糊查詢,建立全文索引 3 對於多主鍵查詢,建立組合索引 二 避免陷阱 然而,一些情況下可能使索引無效 1 在 where 子句中對字段進行表示式操作 2 在 where 子句中使用 or 來連線條件,如 sel...