-
优化limit查询 使用索引的列或主键进行order by查看全部
-
删除无用索引查看全部
-
选择合适的列建立索引查看全部
-
子查询优化成join时,注意一对多的情况,如果出现一对多,需要能过distinct来获取唯一值查看全部
-
explain分析查看全部
-
子查询优化成join 子查询一对一 不会有重复的记录 joiin如果存在一对多 结果会有重复 利用distinct去重查看全部
-
count * 和 count 列 *包含null 列不包含null查看全部
-
分析sql查询查看全部
-
分析sql查询查看全部
-
发现有问题的sql查看全部
-
慢查询包含的内容查看全部
-
查看MySQL慢查询日志查看全部
-
mysql数据库优化查看全部
-
innodb_buffer_pool_size配置 innodb的缓冲池,如果数据库中只有innodb表,则推荐配置为总内存的75% innodb_buffer_pool_instances配置缓冲池的个数,默认是一个。 innodb_flush_log_at_trx_commit(0,1,2)提交的策略。 innodb_read_io_threads(默认是4) innodb_write_io_threads innodb_file_per_table,控制innodb每一个表使用独立的表空间,默认是OFF,造成IO瓶颈。推荐设置ON。 innodb_stats_on_metadata配置mysql在什么情况下刷新innodb表的统计信息。查看全部
-
select engine,round(sum(data_length+index_length)/1024/1024,1) as "total MB", from information_schema.tables where table_schema not in ("information_schema","performance_schema") group by engine;查看全部
举报
0/150
提交
取消