- 论坛徽章:
- 1
|
create table user (userid int(10) primary key not null unique auto_increment,username varchar(20) not null,passwd varchar(20) not null,info text,unique index index_uid(userid asc),index index_user (username,passwd),fulltext index idex_info(info) );
mysql> show index from user\G
*************************** 1. row ***************************
Table: user
Non_unique: 0
Key_name: PRIMARY
Seq_in_index: 1
Column_name: userid
Collation: A
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 2. row ***************************
Table: user
Non_unique: 0
Key_name: userid
Seq_in_index: 1
Column_name: userid
Collation: A
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 3. row ***************************
Table: user
Non_unique: 0
Key_name: index_uid
Seq_in_index: 1
Column_name: userid
Collation: A
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 4. row ***************************
Table: user
Non_unique: 1
Key_name: index_user
Seq_in_index: 1
Column_name: username
Collation: A
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 5. row ***************************
Table: user
Non_unique: 1
Key_name: index_user
Seq_in_index: 2
Column_name: passwd
Collation: A
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null:
Index_type: BTREE
Comment:
Index_comment:
*************************** 6. row ***************************
Table: user
Non_unique: 1
Key_name: idex_info
Seq_in_index: 1
Column_name: info
Collation: NULL
Cardinality: 0
Sub_part: NULL
Packed: NULL
Null: YES
Index_type: FULLTEXT
Comment:
Index_comment:
6 rows in set (0.01 sec)
第二个index是unique约束条件,可以用drop index userid on user;删除的,,为什么可以这样删除了,我想mysql是把他作为一种索引了吧!既然如此,primary也是一种索引,也可按照这样来删除掉,但事实是不行的,这是为什么! |
|