我想知道是否有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