您的位置:首页 > 数据库 > MySQL

Mysql 高性能索引

2015-08-20 23:03 471 查看
1、减小索引长度

取字段10个字符查看有多少数量
select count(distinct left(device_token,10)) from t_client_info;
取字段10个字符占总数百分比 查看区分度
select count(distinct left(device_token,10)) /count(*) from t_client_info;
取字段10个字符建立索引
alter table t_client_info add index token (device_token(10));
alter table t_device_token add index token (device_token(10));
alter table t_third_account add index open_id (open_id(10));
alter table t_client_log add index token (token(10));
设置字段默认插入当前时间
alter table `t_app` add column `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '版本更新时间';
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: