Works/MySQL
디폴트 스토리지 엔진 확인 방법
Antamis
2016. 10. 26. 14:34
MySQL 의 기본 스토리지 엔진이 무엇인지 확인하고자 할 때 아래 Query 를 실행 할 것
SQL>SELECT engine, support FROM information_schema.engines WHERE support='DEFAULT';
예시)
mysql> SELECT engine, support FROM information_schema.engines WHERE support='DEFAULT';
+--------+---------+
| engine | support |
+--------+---------+
| InnoDB | DEFAULT |
+--------+---------+
1 row in set (0.03 sec)