服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Mysql - MySQL 创建索引(Create Index)的方法和语法结构及例子

MySQL 创建索引(Create Index)的方法和语法结构及例子

2019-10-30 17:38mysql教程网 Mysql

MySQL 创建索引(Create Index)的方法和语法结构及例子

CREATE INDEX Syntax 

CREATE [UNIQUE|FULLTEXT|SPATIAL] INDEX index_name 
[index_type] 
ON tbl_name (index_col_name,...) 
[index_type] 

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

index_type: 
USING {BTREE | HASH | RTREE} 

复制代码代码如下:


-- 创建无索引的表格 
create table testNoPK ( 
id int not null, 
name varchar(10) 
); 
-- 创建普通索引 
create index IDX_testNoPK_Name on testNoPK (name); 

延伸 · 阅读

精彩推荐