MySQL:索引

来自WHY42
imported>Soleverlee2016年12月18日 (日) 14:53的版本 (以“=创建索引= <source lang="sql"> drop table if exists lck_tst; create table lck_tst( id int not null, name varchar(200) not null, number varchar(20) not null, typ...”为内容创建页面)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)

创建索引

drop table if exists lck_tst;
create table lck_tst(
id int not null,
name varchar(200) not null,
number varchar(20) not null, 
type1 char(1),
type2 char(2),
content varchar(200),
remark varchar(200)
);
alter table lck_tst add primary key (id);
alter table lck_tst add unique idx_number(number);
alter table lck_tst add index idx_name(name);
alter table lck_tst add index idx_type(type1, type2);
alter table lck_tst add fulltext(content);

全文索引