Когда вы должны использовать InnoDB в MySQL?

I am rather confused by the hurt-mongering Вот.

Я знаю, как это сделать, см. Ниже, но не знаю, почему? Для чего они?

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));

Ответы на вопрос(10)

Ваш ответ на вопрос