您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

27 行
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