Skip to content

Commit

Permalink
调整目录结构+更新文档
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfrued committed Oct 7, 2021
1 parent 6f4066d commit 2abc61c
Show file tree
Hide file tree
Showing 95 changed files with 2,701 additions and 2,738 deletions.
4 changes: 2 additions & 2 deletions Day36-40/code/HRS_create_and_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ dno int comment '所在部门编号'
);

alter table tb_emp add constraint pk_emp_eno primary key (eno);
alter table tb_emp add constraint uk_emp_ename unique (ename);
-- alter table tb_emp add constraint uk_emp_ename unique (ename);
-- alter table tb_emp add constraint fk_emp_mgr foreign key (mgr) references tb_emp (eno);
alter table tb_emp add constraint fk_emp_dno foreign key (dno) references tb_dept (dno);
-- alter table tb_emp add constraint fk_emp_dno foreign key (dno) references tb_dept (dno);

insert into tb_emp values
(7800, '张三丰', '总裁', null, 9000, 1200, 20),
Expand Down
329 changes: 0 additions & 329 deletions Day66-70/66.数据分析概述.md

This file was deleted.

Loading

0 comments on commit 2abc61c

Please sign in to comment.