'information_schema'は、関連する詳細を保持している必要があります。試すことができます
SELECT table_type,
table_name
FROM information_schema.tables
WHERE table_rows >= 1;
選択データベースから選択します。 TABLE_SCHEMA
でフィルタリングすることもできます :
SELECT table_schema,
table_type,
table_name
FROM information_schema.tables
WHERE table_rows >= 1
AND TABLE_SCHEMA=?