如何使用 PhpStorm 数据库工具显示 table 大小?

How can I display table size with PhpStorm Database tool?

我通过 PhpStorm 连接到 MariaDB 数据库。我想看看 table 尺寸。

有可能吗?

AFAIK PhpStorm 和 DataGrip 没有这样的选项。

https://youtrack.jetbrains.com/issue/DBE-4281——这似乎是正确的选择(在特定 table 上调用时在 View | Quick Documentation 弹出窗口中显示物理 table 大小).观看它 (star/vote/comment) 以获得任何进展通知。


现在您可以使用原始 SQL 查询查看此类信息。

例如(参见来自 https://www.2daygeek.com/check-mysql-mariadb-database-table-size-in-linux/ 的#6):

SELECT table_name AS "Table", ROUND(((data_length + index_length) / 1024 / 1024), 2) AS "Size (MB)"
FROM information_schema.TABLES
WHERE table_schema = "testdb"
ORDER BY (data_length + index_length) DESC;

只需将数据库名称从 testdb 更改为您的数据库名称。