當前位置:首頁 » 操作系統 » 千萬級資料庫查詢優化

千萬級資料庫查詢優化

發布時間: 2023-08-18 10:39:58

㈠ 怎麼樣提高千萬級SQL資料庫查詢速度

1.對查詢進行優化,應盡量避免全表掃描,首先應考慮在 where 及 order by 涉及的列上建立索引。

2.應盡量避免在 where 子句中對欄位進行 null 值判斷,否則將導致引擎放棄使用索引而進行全表掃描,如:

select id from t where num is null

可以在num上設置默認值0,確保表中num列沒有null值,然後這樣查詢:

select id from t where num=0

3.應盡量避免在 where 子句中使用!=或<>操作符,否則將引擎放棄使用索引而進行全表掃描。

4.應盡量避免在 where 子句中使用 or 來連接條件,否則將導致引擎放棄使用索引而進行全表掃描,如:

select id from t where num=10 or num=20

可以這樣查詢:

select id from t where num=10

union all

select id from t where num=20

5.in 和 not in 也要慎用,否則會導致全表掃描,如:

select id from t where num in(1,2,3)

對於連續的數值,能用 between 就不要用 in 了:

select id from t where num between 1 and 3

6.下面的查詢也將導致全表掃描:

select id from t where name like '%abc%'

若要提高效率,可以考慮全文檢索。

熱點內容
捷達手動風尚有什麼配置 發布:2025-09-13 11:01:50 瀏覽:792
華三配置保存在哪個文件 發布:2025-09-13 11:00:07 瀏覽:750
耦合java 發布:2025-09-13 10:46:50 瀏覽:161
cs15免費腳本 發布:2025-09-13 10:35:44 瀏覽:798
c文件上傳 發布:2025-09-13 10:33:23 瀏覽:678
演算法毒害 發布:2025-09-13 10:24:19 瀏覽:81
吉普自由光20優越版有哪些配置 發布:2025-09-13 10:24:16 瀏覽:164
如何設置html密碼框 發布:2025-09-13 10:16:06 瀏覽:581
linux解鎖 發布:2025-09-13 10:10:48 瀏覽:639
android自定義導航欄 發布:2025-09-13 10:10:47 瀏覽:397