選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

38 行
1.3 KiB

  1. --ƷƷƱ
  2. create table tb_pinpai (
  3. id int identity, --
  4. paixu int null default 0, --
  5. name nvarchar(255) null, --Ʒ
  6. beizhu ntext null, --ע
  7. status int null default 0, --״̬{1/ʾ0/ʾ}
  8. add_time datetime null default getdate(), --ʱ
  9. constraint PK_TB_PINPAI primary key (id)
  10. )
  11. go
  12. execute sp_addextendedproperty 'MS_Description',
  13. '��������',
  14. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'id'
  15. go
  16. execute sp_addextendedproperty 'MS_Description',
  17. '����',
  18. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'paixu'
  19. go
  20. execute sp_addextendedproperty 'MS_Description',
  21. 'Ʒ������',
  22. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'name'
  23. go
  24. execute sp_addextendedproperty 'MS_Description',
  25. '״̬{1/��ʾ��0/����ʾ}',
  26. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'status'
  27. go
  28. execute sp_addextendedproperty 'MS_Description',
  29. '����ʱ��',
  30. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'add_time'
  31. go
  32. execute sp_addextendedproperty 'MS_Description',
  33. '��ע',
  34. 'user', 'dbo', 'table', 'tb_pinpai', 'column', 'beizhu'
  35. go