본문 바로가기
MySql

MySQL에서 InnoDB를 언제 사용하도록 선택해야합니까?

by 베이스 공부 2021. 2. 8.
반응형


나는 그 방법을 알고 있습니다. 아래를 참조하십시오. 왜 그런지 모르겠습니까? 그것들은 무엇입니까?

create table orders (order_no int not null auto_increment, FK_cust_no int not null, 
foreign key(FK_cust_no) references customer(cust_no), primary key(order_no)) type=InnoDB;


create table orders (order_no int not null auto_increment, FK_cust_no int not null, 
foreign key(FK_cust_no) references customer(cust_no), primary key(order_no));

 

해결 방법

 




 

참조 페이지 https://stackoverflow.com/questions/1082194

 

 

반응형

댓글