<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Admin on Mr.Yu-技术笔记</title>
    <link>https://yujinping.top/tags/admin/</link>
    <description>Recent content in Admin on Mr.Yu-技术笔记</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>zh-CN</language>
    <lastBuildDate>Mon, 06 Mar 2023 15:45:00 +0800</lastBuildDate>
    <atom:link href="https://yujinping.top/tags/admin/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>如何查看mysql数据库各个表的大小</title>
      <link>https://yujinping.top/post/mysql/how_to_view_table_size/</link>
      <pubDate>Mon, 06 Mar 2023 15:45:00 +0800</pubDate>
      <guid>https://yujinping.top/post/mysql/how_to_view_table_size/</guid>
      <description>参考原文: https://www.cnblogs.com/chuanzhang053/p/16937461.html 查看每个库中表的大小，按大小排序 注意：表占用空间大小，包括 数据 和 索引 SELECT table_schema as `Database`, table_name AS `Table`, round(((data_length &amp;#43; index_length) / 1024 / 1024), 2) `Size in MB` FROM information_schema.TABLES ORDER BY (data_length &amp;#43; index_length) DESC;查看某个特定的库中，表的大小 SELECT table_schema as `Database`, table_name AS `Table`, round(((data_length &amp;#43; index_length) / 1024 / 1024), 2) `Size in MB` FROM information_schema.TABLES WHERE table_schema = &amp;#34;iuap_data_datafusion&amp;#34; # 替换为具体的库名 ORDER BY (data_length &amp;#43; index_length) DESC;相关文章</description>
    </item>
  </channel>
</rss>
