数据库
首页 > 数据库> > mysql确定字段的存储大小

mysql确定字段的存储大小

作者:互联网

我想知道是否有mysql命令来确定mysql字段当前使用的实际存储大小.

也许类似“在…显示when used_storage myfield …”的地方.

奇怪的是,我无法找到这样的东西.

(对于postgresql来说也一样)

非常感谢!

解决方法:

对于PostgreSQL,您可以使用

SELECT your_column, pg_column_size(your_column)
FROM your_table

手册中提供了此类功能的完整列表
http://www.postgresql.org/docs/current/static/functions-admin.html

标签:administration,postgresql,storage,mysql,database
来源: https://codeday.me/bug/20191105/1996144.html