Sales.SpecialOffer (table)
wikibot
| Table | Sales.SpecialOffer |
| Column | Data Type | Nullable | Default | PK | Index |
| SpecialOfferID | int | not null | PK_SpecialOffer_SpecialOfferID | ||
| Description | nvarchar(255) | not null | |||
| DiscountPct | smallmoney | not null | ((0.00)) | ||
| Type | nvarchar(50) | not null | |||
| Category | nvarchar(50) | not null | |||
| StartDate | datetime | not null | |||
| EndDate | datetime | not null | |||
| MinQty | int | not null | ((0)) | ||
| MaxQty | int | null | |||
| rowguid | uniqueidentifier | not null | (newid()) | AK_SpecialOffer_rowguid | |
| ModifiedDate | datetime | not null | (getdate()) |
| Detail Table | Column | Referencing Column |
| Sales.SpecialOfferProduct | SpecialOfferID | SpecialOfferID |
automatically generated
| Table | Sales.SpecialOffer |
| Description | Sale discounts lookup table. |
| Column | Data Type | Nullable | Default | Description / PK / Index |
| SpecialOfferID | int | not null | Primary key for SpecialOffer records. PK_SpecialOffer_SpecialOfferID | |
| Description | nvarchar(255) | not null | Discount description. | |
| DiscountPct | smallmoney | not null | (0.00) | Discount precentage. |
| Type | nvarchar(50) | not null | Discount type category. | |
| Category | nvarchar(50) | not null | Group the discount applies to such as Reseller or Customer. | |
| StartDate | datetime | not null | Discount start date. | |
| EndDate | datetime | not null | Discount end date. | |
| MinQty | int | not null | (0) | Minimum discount percent allowed. |
| MaxQty | int | null | Maximum discount percent allowed. | |
| rowguid | uniqueidentifier | not null | (NEWID()) | ROWGUIDCOL number uniquely identifying the record. Used to support a merge replication sample. AK_SpecialOffer_rowguid |
| ModifiedDate | datetime | not null | (GETDATE()) | Date and time the record was last updated. |
| Detail Table | Column | Referencing Column |
| Sales.SpecialOfferProduct | SpecialOfferID | SpecialOfferID |
| Referenced Object | Object Type | Dependency Type |
| .Sales | Schema | Schema |