Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

55 linhas
2.1 KiB

  1. --Ʒֵ
  2. create table tb_product_attribute_value (
  3. id int identity, --id
  4. class_id nvarchar(500) not null, --
  5. product_id int not null default 0, --Ʒid
  6. count int not null default 0, --
  7. price decimal(18,2) not null, --۸
  8. code nvarchar(255) null default '', --̼ұ
  9. barcode nvarchar(255) null, --Ʒ
  10. constraint PK_TB_PRODUCT_ATTRIBUTE_VALUE primary key (id)
  11. )
  12. go
  13. declare @CurrentUser sysname
  14. select @CurrentUser = user_name()
  15. execute sp_addextendedproperty 'MS_Description',
  16. '����ID',
  17. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'id'
  18. go
  19. declare @CurrentUser sysname
  20. select @CurrentUser = user_name()
  21. execute sp_addextendedproperty 'MS_Description',
  22. '����',
  23. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'class_id'
  24. go
  25. declare @CurrentUser sysname
  26. select @CurrentUser = user_name()
  27. execute sp_addextendedproperty 'MS_Description',
  28. '��Ʒid',
  29. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'product_id'
  30. go
  31. declare @CurrentUser sysname
  32. select @CurrentUser = user_name()
  33. execute sp_addextendedproperty 'MS_Description',
  34. '����',
  35. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'count'
  36. go
  37. declare @CurrentUser sysname
  38. select @CurrentUser = user_name()
  39. execute sp_addextendedproperty 'MS_Description',
  40. '�۸�',
  41. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'price'
  42. go
  43. declare @CurrentUser sysname
  44. select @CurrentUser = user_name()
  45. execute sp_addextendedproperty 'MS_Description',
  46. '�̼ұ���',
  47. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'code'
  48. go
  49. declare @CurrentUser sysname
  50. select @CurrentUser = user_name()
  51. execute sp_addextendedproperty 'MS_Description',
  52. '��Ʒ������',
  53. 'user', @CurrentUser, 'table', 'tb_product_attribute_value', 'column', 'barcode'
  54. go