欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

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

程序员文章站 2022-05-06 12:00:00
...
bitsCN.com
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} [java]-- 创建无索引的表格 create table testNoPK ( id int not null, name varchar(10) ); -- 创建普通索引 create index IDX_testNoPK_Name on testNoPK (name);
bitsCN.com
相关标签: 结构