feat: 数据库表操作显示表size&其他小优化

This commit is contained in:
meilin.huang
2023-11-02 12:46:21 +08:00
parent 3155380f16
commit 37026f3269
26 changed files with 163 additions and 213 deletions

View File

@@ -1,15 +1,3 @@
--MYSQL_TABLE_MA
SELECT
table_name tableName,
table_comment tableComment
from
information_schema.tables
WHERE
table_schema = (
SELECT
database ()
)
---------------------------------------
--MYSQL_TABLE_INFO
SELECT
table_name tableName,
@@ -21,7 +9,8 @@ SELECT
FROM
information_schema.tables
WHERE
table_schema = (
table_type = 'BASE TABLE'
AND table_schema = (
SELECT
database ()
)