亚洲人成图片小说网站,亚洲AV无码1区2区久久,亚洲一区二区三区日本久久九,国产精品 高清 尿 小便 嘘嘘,精品国产一区二区三区免费

網(wǎng)站開(kāi)發(fā) APP開(kāi)發(fā) 小程序開(kāi)發(fā) SEO優(yōu)化 公司新聞

sql優(yōu)化的小技巧

2018-05-18 09:51:05
1059

  在日常的sql查詢(xún)中為了提高查詢(xún)效率,常常會(huì )對查詢(xún)語(yǔ)句進(jìn)行sql優(yōu)化,下面總結的一些方法,有需要的可以參考。

  1.對查詢(xún)進(jìn)行優(yōu)化的事項,應盡量避免全表掃描,首先應考慮在 where 及 order by 涉及的列上建立索引。
 

  2.應避免在 where 子句中對字段進(jìn)行 null 值的判斷,否則將使引擎放棄索引而進(jìn)行全表掃描,如:

  select id from t where num is null

  可以在num字段上設置默認值,確保表中num字段列沒(méi)有null值,然后這樣查詢(xún):

  select id from t where num=0

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

  4.應避免在 where 子句中使用 or 來(lái)連接條件,否則將導致引擎放棄索引而進(jìn)行全表掃描,如:

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

  可以這樣查詢(xún):

  select id from t where num=10

  union all

  select id from t where num=20

  5.in 和 not in 也要慎用,會(huì )導致全表掃描,如:

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

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

  select id from t where num between 1 and 3

  6.這種查詢(xún)也將導致全表掃描:

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

  7.應避免在 where 子句中對字段進(jìn)行表達式操作,這將導致引擎放棄索引而進(jìn)行全表掃描。如:

  select id from t where num/2=100

  應改為:

  select id from t where num=100*2

  8.應避免在where子句中對字段進(jìn)行函數操作,這將導致引擎放棄索引而進(jìn)行全表掃描。如:

  select id from t where substring(name,1,3)='abc'--name以abc開(kāi)頭的id

  應改為:

  select id from t where name like 'abc%'

?