mysql table information
select table_name, engine, row_format, table_rows, data_length, index_length, max_data_length, data_free
from information_schema.tables
order by table_rows desc, data_length desc limit 100
from information_schema.tables
order by table_rows desc, data_length desc limit 100
mysql 5.x 增加information_schema
posted on 2008-04-26 15:51 waterye 閱讀(320) 評(píng)論(0) 編輯 收藏 所屬分類: mysql