mysql索引類型介紹

王林
發布: 2020-06-16 17:56:05
轉載
3209 人瀏覽過

mysql索引類型介紹

索引類型介紹:

主鍵索引

#primary key() 要求關鍵字不能重複,也不能為null ,同時增加主鍵約束主鍵索引定義時,不能命名

唯一索引

#unique index() 要求關鍵字不能重複,同時增加唯一約束

普通索引

index() 對關鍵字沒有要求

#全文索引

fulltext key() 關鍵字的來源不是所有字段的數據,而是字段中提取的特別關鍵字

關鍵字:可以是某個字段或多個字段,多個字段稱為複合索引。

實例:

建表:
creat table student(
    stu_id int unsigned not null auto_increment,
    name varchar(32) not null default '',
    phone char(11) not null default '',
    stu_code varchar(32) not null default '',
    stu_desc text,
    primary key ('stu_id'),     //主键索引
    unique index 'stu_code' ('stu_code'), //唯一索引
    index 'name_phone' ('name','phone'),  //普通索引,复合索引
    fulltext index 'stu_desc' ('stu_desc'), //全文索引) engine=myisam charset=utf8;

更新:
alert table student    add primary key ('stu_id'),     //主键索引
    add unique index 'stu_code' ('stu_code'), //唯一索引
    add index 'name_phone' ('name','phone'),  //普通索引,复合索引
    add fulltext index 'stu_desc' ('stu_desc'); //全文索引删除:
alert table sutdent
    drop primary key,
    drop index 'stu_code',
    drop index 'name_phone',
    drop index 'stu_desc';
登入後複製

推薦教學:mysql教學

以上是mysql索引類型介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:juejin.im
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!