我知道在 information_schema.table 中查询表行的结果不一致(某些数据的差异为 40%-50%)。但是,由于 0 的 40-50% 仍然为 0,那么该语句是否仍会始终报告行数为 0 的所有表?我已经尽我所能对其进行了测试。
SELECT CONCAT_WS('.',table_schema,table_name)
FROM information_schema.tables
WHERE table_schema='dbName'
AND table_rows=0;
提前致谢!