索引建立方法

2021-09-01 19:06:16 字數 440 閱讀 4686

適當的使用索引可以提高資料檢索速度,可以給經常需要進行查詢的字段建立索引。oracle的索引分為5種:唯一索引,組合索引,反向鍵索引,位圖索引,基於函式的索引

建立oracle索引的標準語法:

create index 索引名 on 表名 (列名)

tablespace 表空間名;

建立唯一索引:

create unique index 索引名 on 表名 (列名)

tablespace 表空間名;

建立組合索引:

create index 索引名 on 表名 (列名1,列名2)

tablespace 表空間名;

建立反向鍵索引:

create index 索引名 on 表名 (列名) reverse

tablespace 表空間名;

以上就是建立oracle索引的方法介紹。

MySql 建立索引方法

建立原理可參考,這裡僅給出了mysql建立索引的方法。1.建立示例檔案 建立 create table students std id int 11 not null,std name varchar 50 not null,std email varchar 50 not null,std pho...

mysql建立索引的方法

以下面的表為例,表叫article。建立索引語句 create index idx ccv on article category id,comments,views 查詢語句 explain select id,author id from article where category id 1 ...

資料庫索引 建立方法

資料庫索引是將資料庫表中的某一列或幾列以特定的資料結構存起來,比如b tree,hash等,這樣查詢的時候就可以不用從頭插到尾要o n 這樣可以縮短到o log 級別甚至o 1 建立索引之後查詢和修改,排序等操作可以省很多時間。索引是對資料庫表中乙個或多個列 例如,employee 表的姓名 nam...