我有表 Products、Sales 和 ProductsInStores。ProductsInStores 表跟踪每个商店中有多少产品。我有一个 SalesProductsInStoresView,其中包含表 Sales 和 ProductsInStores 中的列。
但也有来自不同连锁店的产品,因此这些产品没有 ProductsInStores 记录。因此,当进行销售时,如果 Product 没有 ProductsInStores 记录,SalesProductsInStoresView 不会显示 Sales。
我可以让我的视图显示没有 ProductsInStores 记录的销售,并且只在 ProductsInStores 列上显示空单元格,如果这不可能,我可能还有其他选项,我正在使用 Asp.Net MVC 和 Sql Server 2008。