MyISAM 엔진을 InnoDB로 변환하기 위해 ALTER 명령을 사용할 수 있습니다. 이제 엔진 MyISAM을 사용하여 테이블을 생성해 보겠습니다.
mysql> create table MyISAMToInnoDBDemo -> ( -> id int, -> Name varchar(100) -> )ENGINE=MyISAM; Query OK, 0 rows affected (0.19 sec)
테이블이 MyISAM 엔진으로 생성되었는지 확인합니다.
mysql> SELECT TABLE_NAME,ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'business' and ENGINE = 'MyISAM';
다음은 MyISAM 엔진으로 생성한 테이블을 출력한 결과입니다.
+-------------------------+--------+ | TABLE_NAME | ENGINE | +-------------------------+--------+ | studentrecordwithmyisam | MyISAM | +-------------------------+--------+ 1 row in set (0.00 sec)
ALTER 명령을 사용하여 MyISAM을 InnoDB로 변환할 수 있습니다.
mysql> alter table MyISAMToInnoDBDemo engine=InnoDB; Query OK, 0 rows affected (1.65 sec) Records: 0 Duplicates: 0 Warnings: 0
전환을 확인하려면
mysql> SELECT TABLE_NAME,ENGINE FROM information_schema.TABLES WHERE TABLE_SCHEMA = 'test' and ENGINE = 'InnoDB';
다음은 출력입니다.
+--------------------+--------+ | TABLE_NAME | ENGINE | +--------------------+--------+ | myisamtoinnodbdemo | InnoDB | +--------------------+--------+ 1 row in set (0.00 sec)