카테고리 없음

[MySql] 테이블 스토리지 엔진 확인

냐옴 2021. 11. 5. 11:24
show table status
where name = '테이블명'
;
select table_name, engine
from information_schema.TABLES
where table_name = '테이블명'
;

 

저작자표시 비영리 동일조건 (새창열림)