小編給大家分享一下SQL中索引怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
白銀區(qū)ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書(shū)未來(lái)市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)的ssl證書(shū)銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:13518219792(備注:SSL證書(shū)合作)期待與您的合作!
1、概念
是數(shù)據(jù)庫(kù)對(duì)象,通過(guò)指針加速查詢數(shù)據(jù),減少磁盤(pán)IO
類似書(shū)的目錄
自動(dòng)使用和維護(hù)索引 --primary key 和unique列上自動(dòng)創(chuàng)建
2、創(chuàng)建
基本語(yǔ)法
create index emp_ename_idx on emp(ename);
B樹(shù)索引
1)唯一索引,指鍵值不重復(fù)。SQL> create unique index empno_idx on emp1(empno);
2)非唯一索引 SQL> create index empno_idx on emp1(empno);
3)組合索引(Composite):基于兩個(gè)或多個(gè)列的索引。 SQL> create index job_deptno_idx on emp1(job,deptno);
4)反向鍵索引(Reverse):將字節(jié)倒置后組織鍵值。當(dāng)使用序列產(chǎn)生主鍵索引時(shí),可以防止葉節(jié)點(diǎn)出現(xiàn)熱塊現(xiàn)象。缺點(diǎn)是無(wú)法提供索引范圍掃描。
SQL> create index mgr_idx on emp1(mgr) reverse;
5)函數(shù)索引(Function base):以索引列值的函數(shù)值為鍵值去組織索引 SQL> create index fun_idx on emp1(lower(ename));
6)壓縮(Compress):重復(fù)鍵值只存儲(chǔ)一次,就是說(shuō)重復(fù)的鍵值在葉塊中就存一次,后跟所有與之匹配的 rowid 字符串。
SQL> create index comp_idx on emp1(sal) compress;
7)升序或降序( Ascending or descending):葉節(jié)點(diǎn)中的鍵值排列默認(rèn)是升序的。
SQL> create index deptno_job_idx on emp1(deptno desc, job asc);
函數(shù)索引
3、重建、刪除
alter index ind_test_id rebuild online;
drop index
4、不可用、不可見(jiàn)
unusable 不可用
alter index ind_test_id unusable;
如需使用得重建:alter index ind_test_id rebuild;
invisible 不可見(jiàn)
alter index ind_test_id invisible;
alter index ind_test_id visible;
11g新特性,只對(duì)優(yōu)化器不可見(jiàn),但索引維護(hù)還是正常進(jìn)行
5、索引監(jiān)控(查看索引是否被使用)
alter index pk_dept monitoring usage;
select * from v$object_usage;
alter index pk_dept nomonitoring usage;
6、注意事項(xiàng)
7、視圖
user_indexes
user_ind_columns
以上是“SQL中索引怎么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!