当前位置:网站首页>MySQL query library size
MySQL query library size
2022-04-23 15:14:00 【A run】
select
table_schema as ' database ',
sum(table_rows) as ' Record number ',
sum(truncate(data_length/1024/1024, 2)) as ' Data capacity (MB)',
sum(truncate(index_length/1024/1024, 2)) as ' Index capacity (MB)'
from information_schema.tables
group by table_schema
order by sum(data_length) desc, sum(index_length) desc;
版权声明
本文为[A run]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231407312563.html
边栏推荐
- Detailed explanation of kubernetes (IX) -- actual combat of creating pod with resource allocation list
- nuxt项目:全局获取process.env信息
- asp. Net method of sending mail using mailmessage
- Leetcode153 - find the minimum value in the rotation sort array - array - binary search
- HJ31 单词倒排
- ffmpeg安装遇错:nasm/yasm not found or too old. Use --disable-x86asm for a crippled build.
- 脏读、不可重复读和幻读介绍
- 函数(第一部分)
- Modify the default listening IP of firebase emulators
- Compiling OpenSSL
猜你喜欢
On the day of entry, I cried (mushroom street was laid off and fought for seven months to win the offer)
API gateway / API gateway (II) - use of Kong - load balancing
Leetcode149 - maximum number of points on a line - Math - hash table
Analysis of common storage types and FTP active and passive modes
1n5408-asemi rectifier diode
Borui data and F5 jointly build the full data chain DNA of financial technology from code to user
分享 20 个不容错过的 ES6 的技巧
win10 任务栏通知区图标不见了
重定向和请求转发详解
LeetCode153-寻找旋转排序数组中的最小值-数组-二分查找
随机推荐
Adobe Illustrator menu in Chinese and English
async关键字
Five data types of redis
Collation of errors encountered in the use of redis shake
TLS / SSL protocol details (30) RSA, DHE, ecdhe and ecdh processes and differences in SSL
脏读、不可重复读和幻读介绍
Little red book timestamp2 (2022 / 04 / 22)
LeetCode167-两数之和II-双指针-二分-数组-查找
Leetcode167 - sum of two numbers II - double pointer - bisection - array - Search
博睿数据携手F5共同构建金融科技从代码到用户的全数据链DNA
redis-shake 使用中遇到的错误整理
Subnet division of flannel principle
Analysis of common storage types and FTP active and passive modes
Basic operation of sequential stack
MySQL Basics
Daily question - leetcode396 - rotation function - recursion
A series of problems about the best time to buy and sell stocks
分享 20 个不容错过的 ES6 的技巧
Nuxt project: Global get process Env information
Have you learned the basic operation of circular queue?