|
|
- --��ƷƷ�Ʊ�
- create table tb_pinpai (
- id int identity, --��������
- paixu int null default 0, --����
- name nvarchar(255) null, --Ʒ������
- beizhu ntext null, --��ע
- status int null default 0, --״̬{1/��ʾ��0/����ʾ}
- add_time datetime null default getdate(), --����ʱ��
- constraint PK_TB_PINPAI primary key (id)
- )
- go
-
- execute sp_addextendedproperty 'MS_Description',
- '��������',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'id'
- go
- execute sp_addextendedproperty 'MS_Description',
- '����',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'paixu'
- go
- execute sp_addextendedproperty 'MS_Description',
- 'Ʒ������',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'name'
- go
- execute sp_addextendedproperty 'MS_Description',
- '״̬{1/��ʾ��0/����ʾ}',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'status'
- go
- execute sp_addextendedproperty 'MS_Description',
- '����ʱ��',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'add_time'
- go
- execute sp_addextendedproperty 'MS_Description',
- '��ע',
- 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'beizhu'
- go
-
-
|