오류를 수정하려면 TYPE을 ENGINE으로 바꾸면 됩니다. 엔진을 설정하는 구문은 다음과 같습니다 -
ENGINE = MyISAM;
TYPE이 사용될 때 MySQL 오류가 발생합니다. 테이블을 생성하는 동안 동일한 시나리오를 보자 -
mysql> create table Customers −> ( −> CustomerId int, −> CustomerName varchar(200) −> )TYPE = MyISAM;
오류는 다음과 같습니다 -
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE = MyISAM' at line 5
위의 오류를 해결하려면 아래와 같이 TYPE을 ENGINE으로 바꾸십시오. -
mysql> create table Customers −> ( −> CustomerId int, −> CustomerName varchar(200) −> )ENGINE = MyISAM; Query OK, 0 rows affected (0.24 sec)
MySQL의 "ENGINE =MyISAM"이 성공적으로 업데이트됩니다.