索引類型介紹:
主鍵索引
primary key() 要求關鍵字不能重復,也不能為null,同時增加主鍵約束 主鍵索引定義時,不能命名
唯一索引
unique index() 要求關鍵字不能重復,同時增加唯一約束
普通索引
index() 對關鍵字沒有要求
全文索引
fulltext key() 關鍵字的來源不是所有字段的數(shù)據(jù),而是字段中提取的特別關鍵字
關鍵字:可以是某個字段或多個字段,多個字段稱為復合索引。
實例:
建表: 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索引類型介紹的詳細內容,更多請關注創(chuàng)新互聯(lián)其它相關文章!
網站題目:mysql數(shù)據(jù)庫的索引類型-創(chuàng)新互聯(lián)
轉載源于:http://www.ekvhdxd.cn/article18/cogsgp.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供響應式網站、虛擬主機、網站策劃、面包屑導航、ChatGPT、品牌網站設計
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)