본문 바로가기
MySQL MariaDB/DB,Table 정보

MySQL / MariaDB Table count 개수 조회

by 쑤- IT, MySQL, MariaDB, DBeaver 2021. 9. 10.

 

MySQL / MariaDB 테이블 개수 확인

 

SELECT  COUNT(*)
FROM   information_schema.tables
WHERE  table_schema = 'dbName';  

댓글