文档版本管理系统 数据表设计

  最近一个朋友接手了一个项目,为自己部门开发文档版本管理系统。我在和他闲聊中,听他说起数据表设计时遇到的一个疑惑。听他说完后感觉这样的问题还是有一些普遍性的,在这里进行一下分享。

  问题描述

  文档版本管理最主要的是要维护文档的版本链。这很容易让人想到链表这种数据结构,所以我的那位朋友很快就给出了如下的表结构:

create table Table_Docunment(	Docunment_Id int not null identity(1000, 1) primary key,	Docunment_Name nvarchar(64) not null,	Docunment_SubmitDate datetime not null,	Docunment_PreId int not null default(-1),	Docunment_NxtId int not null default(-1),	.......);

it知识库文档版本管理系统 数据表设计,转载需保留来源!

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。