1
0
Files
sql-study/MySQL/common.sql
2025-11-04 21:35:51 +08:00

16 lines
377 B
SQL

# InnoDB引擎页大小
show global status like 'Innodb_page_size';
#
select *
from mysql.user;
#
show create table sku.person;
#
select concat(round(sum(data_length / 1024 / 1024), 2), 'MB') as size
from information_schema.tables
where table_schema = 'fortern_qqnt'
and table_name = 'group_msg_table';