查询MySQL库下所有表名,数据为空的表名

select table_name, table_rows from information_schema.tables where table_schema = 'ahbo' and table_rows <1;

原文地址:https://www.cnblogs.com/duyunchao-2261/p/7424135.html