MySQL模糊查询关键字
文章来源:https://blog.csdn.net/qq_39390545/article/details/106414765原文作者:陈哈哈select * from table where us...
2024.11.15分享一下mysql常用的一些统计语句,仅供参考。
常用统计语句1、查询指定SQL的trace信息
mysql -uroot -p -e "\use lcpdb1; \set session optimizer_trace=‘enabled=on‘; \set optimizer_trace_max_mem_size = 1638400; \explain select * from sys_user; \select * from information_schema.optimizer_trace\G;" > trace_log.log2、查看表空间的使用情况
select table_name, (data_length+ index_length) /1024/1024 as total_mb, table_rows from information_schema.tables where table_schema= ‘lcpdb1‘ ;//不写就是全部3、MySQL查询阻塞语句
select r.trx_id waiting_trx_id, r.trx_mysql_thread_Id waiting_thread, r.trx_query waiting_query, b.trx_id blocking_trx_id, b.trx_mysql_thread_id blocking_thread, b.trx_query blocking_query from information_schema.innodb_lock_waits w inner join information_schema.innodb_trx b on b.trx_id = w.blocking_trx_id inner join information_schema.innodb_trx r on r.trx_id = w.requesting_trx_id;4、统计数据库中访问量前10的IP
select SUBSTRING_INDEX(host, ‘:‘, 1) AS ip, COUNT(*)FROM information_schema.processlistGROUP BY ipORDER BY COUNT(*) DESCLIMIT 10;后面会分享更多devops和DBA方面的内容,感兴趣的朋友可以关注一下~
文章来源:https://blog.csdn.net/qq_39390545/article/details/106414765原文作者:陈哈哈select * from table where us...
2024.11.15前言学习一个新知识最好的方式就是上官网,所以我先把官网贴出来 MySQL官网 (点击查阅),如果大家有想了解我没有说到的东西可以直接上官网看哈~目前 MySQL 最新大版本为8.0,但是鉴于目前应用比...
2024.11.15一. 前言不知道小伙伴们发现没有,在面试中,数据库的查询都是必问的!更有甚者,面试官会直接让我们在答题纸上手写SQL代码。其中数据库表的行列转换查询,就是经常考察的一道题目!二. 行转列需求展示我们先...
2024.11.15问题描述有一个信息表info,他的u_id是关联的用户的id,他的m_id是关联的电话的id,每打一次电话就新增一条记录,m_id=10表示是公司外部人员拨打。(还可能细分到m_id 10 的值为1,...
2024.11.15前端大佬问我后端小白查最近10分钟的数据,一开始我想到的是直接用between and或者就可以了,但是可能是想要最近的10分钟,那么这个数就不太好写清楚,只能是当前时间-10分钟这种操作,对于mys...
2024.11.15