Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

27 righe
901 B

--线
create table tb_message (
id int identity, --
paixu int null default 0, --
title nvarchar(255) null default '', --
add_time datetime null default getdate(), --
constraint PK_TB_MESSAGE primary key (id)
)
go
execute sp_addextendedproperty 'MS_Description',
'自增阿弟',
'user', 'dbo', 'table', 'tb_message', 'column', 'id'
go
execute sp_addextendedproperty 'MS_Description',
'排序',
'user', 'dbo', 'table', 'tb_message', 'column', 'paixu'
go
execute sp_addextendedproperty 'MS_Description',
'留言主题',
'user', 'dbo', 'table', 'tb_message', 'column', 'title'
go
execute sp_addextendedproperty 'MS_Description',
'添加日期',
'user', 'dbo', 'table', 'tb_message', 'column', 'add_time'
go