본문 바로가기
카테고리 없음

테이블별 row 수 조회

by 자바초보자 2021. 11. 19.
728x90

테이블별 row 수 조회

 

SELECT table_name, table_rows 
FROM information_schema.tables 
WHERE table_schema = 'web' 
ORDER BY table_rows DESC;

728x90