语句结构
alter table table_nm add constraint constraint_name
foreign key table_a(col) references table_b(col);
本题语句
alter table audit add constraint fk_emp_no
foreign key audit(emp_no) references employees_test(id);
alter table table_nm add constraint constraint_name
foreign key table_a(col) references table_b(col);
alter table audit add constraint fk_emp_no
foreign key audit(emp_no) references employees_test(id);