题目描述:在audit表上创建外键约束,其emp_no对应employees_test表的主键id。
代码:

alter table audit
add constraint fk_audit_empployee
foreign key(Emp_no) references employees_test(ID)

alter table创建外键约束

ALTER TABLE <表名>
ADD CONSTRAINT FOREIGN KEY (<列名>)
REFERENCES <关联表>(关联列)

alter table解除外键约束

ALTER TABLE Orders
DROP FOREIGN KEY FK;