Mysql
iteye_5780
这个作者很懒,什么都没留下…
展开
-
Mysql自带profiling性能分析工具
1. show variables like '%profiling%'; (查看profiling信息) 2. set profiling=1; (开启profiling) 3. 执行SQL查询 例:select goods_name from ecs_goods where goods_id <5000; show pr...原创 2012-11-09 13:47:01 · 160 阅读 · 0 评论 -
Mysql优化
目录 一、优化概述 二、查询与索引优化分析 1. 性能瓶颈定位 Show命令 慢查询日志 explain分析查询 profiling分析查询 2. 索引及查询优化 三、配置优化 1) max_connections 2) back_log 3) interactive_timeout 4) key_buffer_siz...原创 2012-11-09 13:49:13 · 102 阅读 · 0 评论 -
Mysql常用函数
1. replace(); 例:update goods set keywords=replace(keywords,'?','!') 将goods表中keywords字段中的?替换为? 2. CONCAT(str1,str2,...) 返回来自于参数连结的字符串。如果任何参数是NULL,返回NULL。可以有超过2个 的参数。一个数字参数被变换为等价的字符串形...2012-12-06 09:57:39 · 90 阅读 · 0 评论