SELECT
table_name AS ‘表名’,
table_rows AS ‘估算行数’
FROM
information_schema.tables
WHERE
table_schema = ‘ap-platform’
ORDER BY
table_rows DESC;
SELECT
table_name AS ‘表名’,
table_rows AS ‘估算行数’
FROM
information_schema.tables
WHERE
table_schema = ‘ap-platform’
ORDER BY
table_rows DESC;