You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.4 KiB

  1. --ñ
  2. create table tb_bianliang (
  3. id int identity, --
  4. paixu int null default 0, --
  5. keyid nvarchar(255) null, --key
  6. zhi ntext null, --ֵ
  7. beizhu ntext null, --ע
  8. status int null default 0, --״̬(0/1ֹ)
  9. add_time datetime null default getdate(), --ʱ
  10. constraint PK_TB_BIANLIANG primary key (id)
  11. )
  12. go
  13. execute sp_addextendedproperty 'MS_Description',
  14. '��������',
  15. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'id'
  16. go
  17. execute sp_addextendedproperty 'MS_Description',
  18. '����',
  19. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'paixu'
  20. go
  21. execute sp_addextendedproperty 'MS_Description',
  22. 'key',
  23. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'keyid'
  24. go
  25. execute sp_addextendedproperty 'MS_Description',
  26. 'ֵ',
  27. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'zhi'
  28. go
  29. execute sp_addextendedproperty 'MS_Description',
  30. '��ע',
  31. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'beizhu'
  32. go
  33. execute sp_addextendedproperty 'MS_Description',
  34. '״̬(0����/1��ֹ)',
  35. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'status'
  36. go
  37. execute sp_addextendedproperty 'MS_Description',
  38. '����ʱ��',
  39. 'user', 'dbo', 'table', 'tb_bianliang', 'column', 'add_time'
  40. go