rhel4 mysql5.1 索引index_約束constraint建立_刪除_查詢

wisdomone1發表於2010-06-19

索引型別:

    普通索引,唯一索引,組合索引,主鍵索引(這些索引型別可能是並非並行關係),比如組合索引:可以是唯一索引或者普通索引等

    

 

普通索引:索引列可以有空值及重複值

唯一索引:索引列可以取空值,但險了空值列外,列值要唯一

主鍵索引:是唯一索引的特殊情況,一個表只能有一個主鍵索引,且索引列不能取空值

 

建立索引:

    分哪下幾種方法,適應不同的情況,類似於oracle

    create index idx_1 on t1(username);

    alter table t1 add index idx_1 (username);

    alter table t1 add primary key(id);

 

mysql> alter table t1 add unique(username);#新增唯一索引
Query OK, 0 rows affected (0.01 sec)
Records: 0  Duplicates: 0  Warnings: 0

 

mysql> create unique index 1_idx on t1(username);#用create unique建立唯一索引
Query OK, 0 rows affected (0.01 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql>

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-665692/,如需轉載,請註明出處,否則將追究法律責任。

相關文章