What is TEXTIMAGE_ON [PRIMARY]?

前端 未结 3 1760
星月不相逢
星月不相逢 2021-01-30 19:11

I worked on many tables and all had this thing:

CREATE TABLE Persons(
    [id] [int] IDENTITY(1,1) NOT NULL,
    [modified_on] [datetime] NULL,
    [modified_by]         


        
3条回答
  •  庸人自扰
    2021-01-30 19:49

    If you dont have any large text columns i.e. text, ntext, image, xml, varchar(max), nvarchar(max), varbinary(max), and CLR then you can just use:

    CREATE TABLE Persons(
    [id] [int] IDENTITY(1,1) NOT NULL,
    [modified_on] [datetime] NULL,
    [modified_by] [varchar](200) NULL,)ON [PRIMARY]
    

提交回复
热议问题