知识点

  1. 创建外键约束标准格式如下
alter table <数据表名> add constraint <外键名>
foregin key (<列名>)
referrences <主表名> (<列名>);
  1. 外键约束属性:当有删除或者更新操作的时候发出这个约束

代码

alter table audit
add constraint foreign key (emp_no)
references employees_test(id)