约束用来限制表中的数据
外键约束 让两个表之间建立连接,
alter table emp add constraint fk_emp_dept_id foreign key (dept_id) references dept(id);