Como hago para que este query me devuelva solo los que tienen valor en "qty"
select a.productid, a.productname, b.unitprice, case when a.unitprice = b.unitprice then b.qty when a.productid = b.productid then b.qty else null end as qty from Production.Products as a, sales.OrderDetails as b
Respuesta de fichu
1