CREATE TABLE [dbo].[tStudent]
(
[cID] [uniqueidentifier] NOT NULL CONSTRAINT [DF_tStudent_cID] DEFAULT (newid()),
[cCreateTime] [datetime] NOT NULL CONSTRAINT [DF_tStudent_cCreateTime] DEFAULT (getdate()),
[cUpdateTime] [datetime] NOT NULL CONSTRAINT [DF_tStudent_cUpdateTime] DEFAULT (getdate()),
......
) ON [PRIMARY] ====》 这里的ON [PRIMARY]是什么意思? 怎么理解?
炎炎设计
相关分类