|
|
- --����
- create table tb_bianliang (
- id int identity, --��������
- paixu int null default 0, --����
- keyid nvarchar(255) null, --key
- zhi ntext null, --ֵ
- beizhu ntext null, --��ע
- status int null default 0, --״̬(0����/1��ֹ)
- add_time datetime null default getdate(), --����ʱ��
- constraint PK_TB_BIANLIANG primary key (id)
- )
- go
-
- execute sp_addextendedproperty 'MS_Description',
- '��������',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'id'
- go
- execute sp_addextendedproperty 'MS_Description',
- '����',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'paixu'
- go
- execute sp_addextendedproperty 'MS_Description',
- 'key',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'keyid'
- go
- execute sp_addextendedproperty 'MS_Description',
- 'ֵ',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'zhi'
- go
- execute sp_addextendedproperty 'MS_Description',
- '��ע',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'beizhu'
- go
- execute sp_addextendedproperty 'MS_Description',
- '״̬(0����/1��ֹ)',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'status'
- go
- execute sp_addextendedproperty 'MS_Description',
- '����ʱ��',
- 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'add_time'
- go
|