真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQLindex

MySQL創(chuàng)建和刪除索引

創(chuàng)新互聯(lián)專注于新巴爾虎右企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站建設(shè),成都商城網(wǎng)站開發(fā)。新巴爾虎右網(wǎng)站建設(shè)公司,為新巴爾虎右等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站建設(shè),專業(yè)設(shè)計,全程項目跟蹤,創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

創(chuàng)建普通索引:
alter table student add index index_dept(dept(8));

創(chuàng)建唯一索引
create unique index uni_ind_name on student (name);

根據(jù)列的前n個字符創(chuàng)建索引
create index index_dept on student(dept(8));

根據(jù)多個列創(chuàng)建聯(lián)合索引
create index ind_name_dept on student(name,dept);

根據(jù)多個列的前n個字符創(chuàng)建聯(lián)合索引
create index ind_name_dept on student (name(8), dept(10));

刪除普通索引
alter table student drop index index_dept;
drop index index_dept on student;


分享文章:MySQLindex
網(wǎng)站URL:http://weahome.cn/article/gghhjo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部