codecamp

OceanBase CREATE INDEX

描述

该语句用来创建索引。索引是创建在表上的,对数据库表中一列或多列的值进行排序的一种结构。其作用主要在于提高查询的速度,降低数据库系统的性能开销。

格式

CREATE [UNIQUE] INDEX indexname 
     ON tblname (index_col_name,...) 
      [index_type] [index_options] 
index_type: 
      USING BTREE

index_options: 
      index_option [index_option…]
      
index_option: 
    GLOBAL | LOCAL
    | COMMENT 'string'
    | COMPRESSION [=] {NONE | LZ4_1.0 | LZO_1.0 | SNAPPY_1.0 | ZLIB_1.0}
    | BLOCK_SIZE [=] size
    | STORING(columname_list) 
    | VISIBLE | INVISIBLE

index_col_name: 
    colname [(length)] [ASC | DESC]

columname_list: 
    colname [, colname…]

参数解释

参数

描述

indexname

指定要创建的索引名称。

tblname

指过索引所属的表名。

index_col_name

指定索引的列名,每个列名后都支持 ASC(升序),不支持 DESC(降序)。默认为升序。

建立索引的排序方式为:首先以index_col_name中第一个列的值排序;该列值相同的记录,按下一列名的值排序;以此类推。

index_type

索引类型,只支持USING BTREE,以 B 树为索引。

UNIQUE

指定为唯一索引。

index_option

指定索引选项,多个index_option以空格分隔。

GLOBAL | LOCAL

指定该索引是全局索引或局部索引,默认是GLOBAL。

COMMENT

指定注释。

COMPRESSION

指定压缩算法。

BLOCK_SIZE

指定微块大小。

STORING

表示索引表中冗余存储某些列,以提高系统查询性能。

示例

  1. 执行以下命令,创建表test

CREATE TABLE test (c1 INT PRIMARY KEY, c2 VARCHAR(10));
  1. 执行以下命令,创建表test的索引。

CREATE INDEX test_index ON test (c1, c2);
  1. 执行以下命令,查看表test的索引。

SELECT * FROM USER_INDEXES WHERE table_name='TEST'\G


OceanBase ALTER USER
OceanBase CREATE KEYSTORE
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

OceanBase 控制台指南

OceanBase ODC 使用指南

OceanBase Web 版 ODC

OceanBase 客户端版 ODC

OceanBase Connector/J 开发者指南

OceanBase 什么是OceanBase Connector/J

OceanBase SQL 参考(MySQL 模式)

OceanBase SQL 参考(Oracle 模式)

OceanBase 基本元素

OceanBase 数据库对象

OceanBase 函数

OceanBase 单行函数

OceanBase 返回数字的字符串函数

OceanBase 通用比较函数

OceanBase 编码解码函数

OceanBase SQL 调优指南

OceanBase 相关协议

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }