SQL添加外键约束

SQL添加外键约束
alter table 表 add constraint 外键约束名称 foreign key (列) references 表 (主键列);

你可能感兴趣的:(mysql,mysql优化)