Greeting
I'm working with the AdventureWorks DataBase I do have 3 Tables
Table1 : OrderSales (OrderSaleslID "PK" , OrderDate , CustomerID )
Table 2 : OrderSaleReason (OrderSaleslID "PK" , SalesReason "PK")
Table 3 : OrderSalesDetail (OrderSalesDetail ID "PK" , OrderSaleslID "PK" , ProductID , QTE )
My fact table "Sales" is based on the OrderSalesDetail
FactSales (OrderSalesDetail ID "PK" , OrderSaleslID , ProductID , QTE Order , OrderDate , CustomerID)
My Question is there a possibility to integrate the SalesReason in my fact table without creating another table or having a duplicate in my fact table
PS: 1 sale order can have many sales Reason
and thanks!