日期值班表数据库字段该如何设计
==>>>>如上图,查询功能
==>>>>如上图,添加功能
数据库表该如何设计
------解决方案--------------------你都画出图了,,那不就是3个字段:日期,值班员,领导么。
------解决方案--------------------两个表,
一个存储值班情况,
一个存储用户情况
create table t_duty
(
tudy_date date not null,
lead_id number not null,
worker_id number not null
)
;
comment on table t_duty
is '值班表';
comment on column t_duty.tudy_date
is '值班日期';
comment on column t_duty.lead_id
is '领导ID';
comment on column t_duty.worker_id
is '员工ID';
create table t_user
(
id number not null,
name varchar2(20) not null,
lead char(1) not null
)
;
comment on column t_user.id
is '职员ID';
comment on column t_user.name
is '职员姓名';
comment on column t_user.lead
is '是否是领导';