《Mysql学习MySQL 创建索引(Create Index)的方法和语法结构及例子》要点:
本文介绍了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);
欢迎参与《Mysql学习MySQL 创建索引(Create Index)的方法和语法结构及例子》讨论,分享您的想法,维易PHP学院为您提供专业教程。
转载请注明本页网址:
http://www.vephp.com/jiaocheng/8038.html