添加外键
alter table table_name add foreign key fk_product_id (product_id) references product(id)
table_name 为表名, fk_product_id 为外键名,第一个括号里填写外键列名, product为表名,第二个括号里是写外键在product表中关联的列名。
删除外键
alter table table_name drop foreign key fk_product_id
查看外键
show create table table_name
结束语
工作中几乎不需要用到外键约束,创建相关索引即可。