数据库 day3:
drop database if exists hrs; create database hrs default charset utf8mb4;
use hrs;
create table tb_dept ( dno int not null comment '编号', dname varchar(10) not null comment '名称', dloc varchar(20) not null comment '所在地', primary key (dno) );
insert into tb_dept values (10, '会计部', '北京'), (20, '研发部', '成都'), (30, '销售部', '重庆'), (40, '运维部', '深圳');
create table tb_emp ( eno int not null comment '员工编号', ename varchar(20) not null comment '员工姓名', job varchar(20) not null comment '员工职位', mgr int comment '主管编号', sal int not null comment '员工月薪', comm int comment '每月补贴', dno int comment '所在部门编号', primary key (eno), foreign key (dno) references tb_dept (dno) );
-- alter table tb_emp add constraint pk_emp_eno primary key (eno); -- alter table tb_e