

--课程表
create table sub
(
sub_id int identity Primary key,--课程编号
sub_name varchar(100) not null,--课程名称
users_id int not null,--教师编号
room_id int not null,--实验室编号
week int not null,--星期几,1,2,3,4,5,6,7
term_id int not null,--学期编号
time1 datetime not null,--起始日期
time2 datetime not null,--结束日期
num int not null,--节次,与attend表中num对应
odd_even int not null default 0 --奇偶,0全,1奇,2偶
)
posted on
2007-05-06 18:02
石川
阅读(
240)
评论()
收藏
举报