'information_schema' phải nắm giữ các chi tiết liên quan. Bạn có thể thử
SELECT table_type,
table_name
FROM information_schema.tables
WHERE table_rows >= 1;
để chọn từ một cơ sở dữ liệu chọn lọc. Bạn cũng có thể lọc theo TABLE_SCHEMA
:
SELECT table_schema,
table_type,
table_name
FROM information_schema.tables
WHERE table_rows >= 1
AND TABLE_SCHEMA=?