CREATE TABLE fCatalog (
fcId int IDENTITY(1,1) NOT NULL,
fcName varchar(50),
fcType int,
fcOt varchar(50),
fcDate DATETIME DEFAULT GETDATE()
)
alter table fCatalog with nocheck add
constraint [PK_fCatalog] PRIMARY KEY CLUSTERED
(
[fcId]
) ON [PRIMARY]
GO
/*drop table fCatalog */
创建fCatalog表
本文介绍了一个SQL脚本,用于创建名为fCatalog的数据库表。该表包含fcId、fcName、fcType等字段,并设置了主键约束。fcId为主键,采用自动增长的方式。
6733

被折叠的 条评论
为什么被折叠?



