這幾天在寫索引,想到一些有意思的tips,希望大家有收穫。
一、一些常見的sql實踐
(1)負向條件查詢不能使用索引
select * from order where status!=0 and stauts!=1
not in/not exists都不是好習慣
可以優化為in查詢:
select * from order where status in(2,3)
(2)前導模糊查詢不能使用索引
select * from order where desc like '%xx'
而非前導模糊查詢則可以:
select * from order where desc like 'xx%'
(3)資料區分度不大的字段不宜使用索引
select * from user where ***=1
原因:性別只有男,女,每次過濾掉的資料很少,不宜使用索引。
經驗上,能過濾80%資料時就可以使用索引。對於訂單狀態,如果狀態值很少,不宜使用索引,如果狀態值很多,能夠過濾大量資料,則應該建立索引。
(4)在屬性上進行計算不能命中索引
select * from order where year(date) < = '2017'
即使date上建立了索引,也會全表掃瞄,可優化為值計算:
select * from order where date < = curdate()
或者:select * from order where date < = '2017-01-01'
二、並非周知的sql實踐
(5)如果業務大部分是單條查詢,使用hash索引效能更好,例如使用者中心
select * from user where uid=?
select * from user where login_name=?
原因:b-tree索引的時間複雜度是o(log(n))
hash索引的時間複雜度是o(1)
(6)允許為null的列,查詢有潛在大坑
單列索引不存null值,復合索引不存全為null的值,如果列允許為null,可能會得到「不符合預期」的結果集
select * from user where name != 'shenjian'
如果name允許為null,索引不儲存null值,結果集中不會包含這些記錄。
所以,請使用not null約束以及預設值。
(7)復合索引最左字首,並不是值sql語句的where順序要和復合索引一致
使用者中心建立了(login_name, passwd)的復合索引
select * from user where login_name=? and passwd=?
select * from user where passwd=? and login_name=?
都能夠命中索引
select * from user where login_name=?
也能命中索引,滿足復合索引最左字首
select * from user where passwd=?
不能命中索引,不滿足復合索引最左字首
(8)使用enum而不是字串
enum儲存的是tinyint,別在列舉中搞一些「中國」「北京」「技術部」這樣的字串,字串空間又大,效率又低。
三、小眾但有用的sql實踐
(9)如果明確知道只有一條結果返回,limit 1能夠提高效率
select * from user where login_name=?
可以優化為:
select * from user where login_name=? limit 1
原因:你知道只有一條結果,但資料庫並不知道,明確告訴它,讓它主動停止游標移動
(10)把計算放到業務層而不是資料庫層,除了節省資料的cpu,還有意想不到的查詢快取優化效果
select * from order where date < = curdate()
這不是乙個好的sql實踐,應該優化為:
$curdate = date('y-m-d');
$res = mysql_query(
'select * from order where date < = $curdate');
原因:釋放了資料庫的cpu
多次呼叫,傳入的sql相同,才可以利用查詢快取
(11)強制型別轉換會全表掃瞄
select * from user where phone=13800001234
你以為會命中phone索引麼?大錯特錯了,這個語句究竟要怎麼改?
末了,再加一條,不要使用select *(潛台詞,文章的sql都不合格 =_=),只返回需要的列,能夠大大的節省資料傳輸量,與資料庫的記憶體使用量喲。
思路比結論重要,希望你有收穫。
SQL中實用的小技巧
以下均針對oracle資料庫,與mysql sqlserver或有出入,歡迎共同交流 1 查詢符合條件的記錄數,查不到時顯示為0而不是返回null select case count id when 0 then 0 else count id from 表名 where xx xx2 查詢符合某件...
SQL小技巧總結。
一 sql server如何判斷某個字段包含大寫字母 sql語句中預設是不區分大小寫的,所以語句 sql select from recenginebizinfo where recenginebizname qq 和 sql select from recenginebizinfo where r...
10個Word實用技巧
現在是講效率的年代,使用word來進行平時的辦公處理也是一樣,那麼,我們怎樣才能夠在word中 快 起來呢?那就看看10個相當實用的技巧吧。讓你的word操作快速起來。1.快速定位到上次編輯位置 2.快速插入當前日期或時間 有時寫完一篇文章,覺得有必要在文章的末尾插入系統的當前日期或時間,一般人是通...