表名:ZL_Plat_Schedule












序号列名数据类型长度小数位标识主键外键允许空默认值说明
1IDint40   
2Namenvarchar500    日程名称
3Placenvarchar2000    日程地址
4Describenvarchar2000    日程描述
5TaskTypeint40    0:个人日程,1:公开日程
6StartDatedatetime83    开始时间
7EndDatedatetime83    结束时间
8AllDayint40   0全天事件
9Repeatint40   0重复
10LeaderIDSntext160    负责人
11ParterIDSntext160    参与人
12UserIDint40    日程所属用户ID

简要说明:

能力日程表

GO
CREATE TABLE [dbo].[ZL_Plat_Schedule] (
[ID] [int]  IDENTITY (1, 1)  NOT NULL,
[Name] [nvarchar]  (50) NOT NULL,
[Place] [nvarchar]  (200) NULL,
[Describe] [nvarchar]  (200) NULL,
[TaskType] [int]  NULL,
[StartDate] [datetime]  NOT NULL,
[EndDate] [datetime]  NOT NULL,
[AllDay] [int]  NULL DEFAULT (0),
[Repeat] [int]  NULL DEFAULT (0),
[LeaderIDS] [ntext]  NULL,
[ParterIDS] [ntext]  NULL,
[UserID] [int]  NULL)
ALTER TABLE [ZL_Plat_Schedule] WITH NOCHECK ADD  CONSTRAINT [PK_ZL_Plat_Schedule] PRIMARY KEY  NONCLUSTERED ( [ID] )

--注意:将清空全表数据

detele from ZL_Plat_Schedule

--注意:将删除整个表

drop table ZL_Plat_Schedule

--注意:清空且复位表ID序列为初始值

TRUNCATE table ZL_Plat_Schedule