728x90
테이블별 row 수 조회
SELECT table_name, table_rows
FROM information_schema.tables
WHERE table_schema = 'web'
ORDER BY table_rows DESC;
728x90
테이블별 row 수 조회
SELECT table_name, table_rows
FROM information_schema.tables
WHERE table_schema = 'web'
ORDER BY table_rows DESC;