首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,614 阅读
2
sublime 3155-3175 LICENSE
7,910 阅读
3
mysql存储过程&时间累加插入
7,754 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,486 阅读
5
mysql-workbench中duration fetch的含义
4,460 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
1
篇与
的结果
2018-08-07
mysql 索引优化
对于 索引 字符串类型的字段,当数据量相当大的时候,查询起来相当耗cpu 并且慢,解决方案一:把字符串转整型数字比如用 crc32函数做转换,查询的时候带上原值 and crc32的值select txt from arc where txt='mysql 索引优化'; select txt from arc where txtc32='3432543534233' and txt='mysql 索引优化'; 解决方案二:建立前缀索引alter table db.table add key (txt(10)); 这样也会大大的提高查询速度...
2018年08月07日
879 阅读
0 评论
0 点赞