0

我的第一个版本的问题令人困惑,我需要制作更小的块。如果用户可以过滤网站中的产品,那么一个产品应该只在列表中出现一次。由于加入此代码给了我两个相同的产品,我该如何解决?我认为我需要一个不使用 distinct 的解决方案,因为它稍后会让我头疼。

来自 AW2012 的代码:



    declare @safetystocklevel int
    set @safetystocklevel  = 1000
    declare @status int
    set @status  = 2

    select * from Production.Product p
    inner join Purchasing.ProductVendor pv on p.ProductID = pv.ProductID
    inner join Purchasing.Vendor v on v.BusinessEntityID = pv.BusinessEntityID
    inner join Production.ProductDocument pd on p.ProductID = pd.ProductID
    inner join Production.Document d on d.DocumentNode = pd.DocumentNode
    WHERE 
    (@safetystocklevel = '' or p.SafetyStockLevel = @safetystocklevel)
    and (@status = '' or d.Status = @status)

输出:
ProductId 名称
506 Reflector
506 Reflector

编辑:

谢谢,我现在使用 Group by 来获取不同的行。是的,也许使用 group by 对我有用,我现在要做一些测试......

你好,我们又见面了

我希望所有产品都是可搜索的,所以我想我需要左外连接来实现这一点。当我添加动态订单时遇到麻烦,会添加更多行。可能是因为我必须将 poh.Status 添加到 group by。product 表有 504 行,此查询返回 776 行。(我已经删除了 WHERE 中的过滤,因为它现在不有趣了,我现在加入其他表只是为了获得更多的行来玩)

代码:



    declare @sortType nvarchar(50)
    set @sortType  = 'Status'
    select p.ProductID,
    CASE WHEN @sortType = 'Status' THEN poh.Status END as Status,
    CASE WHEN @sortType = 'ProductId' THEN p.ProductID END as ProductId
    from Production.Product p
    left outer join Purchasing.PurchaseOrderDetail pod on p.ProductID = pod.ProductID
    left outer join Purchasing.PurchaseOrderHeader poh on poh.PurchaseOrderID = pod.PurchaseOrderID
    left outer join Production.ProductDocument ppd on ppd.ProductID = p.ProductID
    left outer join Production.Document pd on pd.DocumentNode = ppd.DocumentNode
    group by p.ProductID, poh.Status
    ORDER BY
        CASE WHEN @sortType = 'Status' THEN poh.Status END ASC,
        CASE WHEN @sortType = 'ProductId' THEN p.ProductID END ASC

4

1 回答 1

1

如果您不打算包括不同的,您可以使用 Group By ProductId, Name 来选择单行。但是,如果您在 select 子句中没有使用任何聚合值,我会更喜欢“distinct”。

select p.ProductId, p.Name from Production.Product p
inner join Purchasing.ProductVendor pv on p.ProductID = pv.ProductID
inner join Purchasing.Vendor v on v.BusinessEntityID = pv.BusinessEntityID
inner join Production.ProductDocument pd on p.ProductID = pd.ProductID
inner join Production.Document d on d.DocumentNode = pd.DocumentNode
WHERE 
(@safetystocklevel = '' or p.SafetyStockLevel = @safetystocklevel)
and (@status = '' or d.Status = @status)
GROUP BY  p.ProductId, p.Name 
于 2013-09-29T16:20:03.317 回答