站保站

服务市场
  • 网站市场
  • 单机游戏
  • 平台大厅
  • 转让市场
  • 发卡市场
  • 广告市场
  • 下载市场
  • 收录市场
  • 本站平台
    平台客服
    微信Q群



    平台微博/weibo    平台微信/公众号    平台抖音/快手   
    曝光台    保障    地图   
    上传资源 快速赚钱
    站保站    登录      |  注册  |  

    只需一步,快速开始!

     找回密码   |   协议
    热门搜索: 网站开发 App报毒 挖矿源码 代办资质

    7. MySQL索引分类

    • 时间:2020-10-26 21:05 编辑:UnityAlvin 来源: 阅读:65
    • 扫一扫,手机访问
    摘要:

    7.1 单值索引

    即一个索引只包含单个列,一个表可以有多个单列索引

    7.2 唯一索引

    索引列的值必须唯一,但允许有空值

    7.3 主键索引

    设定为主键后数据库会自动建立索引,innodb为聚簇索引

    7.4 复合索引

    即一个索引包含多个列

    7.5 语法

    # 查看索引
    show index from table_name\G;
    
    # 删除索引
    drop index [indexName] on mytable;
    
    # 随表一起创建
    create table customer(
    	...
    	key(customer_name), # 单值索引
    	unique(customer_name), # 唯一索引
        primary key(customer_name), # 主键索引
        key(customer_no,customer_name) # 复合索引
    );
    
    # 单独建索引
    # 单值索引
    create index idx_customer_name on customer(customer_name);
    
    # 唯一索引
    create unique index idx_customer_no on customer(customer_no);
    
    # 主键索引
    alter table customer add primary key customer(customer_no);
    
    # 复合索引
    create index idx_no_name on customer(customer_no,customer_name);
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 全部评论(0)
    • 最新

    信息加载中,请等待

    微信客服(速回)

    微信客服(慢回)



    企业微信客服二维码
    联系我们
    平台客服: 平台QQ客服

    平台电话:400电话迁移中!

    平台邮箱:28292383@qq.com

    工作时间:周一至周五:早10:00 晚:18:00

    营业执照     网站ICP备案:鲁ICP备20027607号-1     鲁公网安备:37068702000078号     增值电信业务经营许可证、在线数据与交易处理业务许可证:鲁B2-20200681      © 2016-2024 站保站  https://www.zhanbaozhan.com/ 版权所有!      平台规范:   关于我们   广告合作   隐私条款   免责声明   法律声明   服务条款   网站地图   平台工单!