--创建表
-- 创建项目表
create table project( proid int(10) not null comment '项目Id', proname varchar(30) comment '项目名称' );
-- 创建员工表
create table employee2( empid int(10) comment '员工id', empname varchar(20) comment '员工姓名' );
-- 创建项目员工关联 中间表
create table pro_emp( proid int(10) not null , empid int(10) not null );
-- 添加外键
alter table pro_emp add constraint fk_rproid foreign key (proid) references project(proid);
alter table pro_emp add constraint fk_rempid foreign key (empid) references employee2(empid);
不知什么原因,添加外键的sql 没有执行成功,直接在navicat中手动加了外键
--查询
select * from project;
select * from employee2;