这两个表触发器如何写
当借书发生时,到期日=借书日+可借天数自动生成 触发器如何写create table bookclassinformation --书的种类
(
bookclass_id char(10) primary key ,--书种类ID
bookclass_name nvarchar(50) not null,--书种类名称
bookborrowday int ,--可借天数
)
create table bookborrow--借阅图书
(
bookborrow_id int primary key,
book_ISDN char(20) ,--书编号
member_id char(10) ,--会员编号
book_borrowdate smalldatetime,--借书日
book_maturedate smalldatetime,--到期日
book_estate varchar(10),
)