0
Product_Code  Month  Qty  Area  CustomerID
------------  -----  ---  ----  ----------
820300182     01     1    M1    100078
820300182     01     50   M1    100168
820300182     01     20   M1    100188
820300182     01     10   M1    100618
820300182     01     10   M1    100938
820300182     01     20   M1    100988
820300182     01     25   M1    110158

Qty最小値を取得したいcustomerID

例えば、

Product_Code  Month  Qty  Area  CustomerID
------------  -----  ---  ----  ----------
820300182     01     1    M1    100078
4

2 に答える 2

1

CustomerId が最も低いレコードを検索するとします。

SELECT TOP 1 [Product_Code], [Month], [Qty], [Area], [CustomerID]
FROM [TABLE]
ORDER BY [CustomerId] ASC

ただし、数量が最も少ないレコードを見つける必要がある場合は、順序を次のように変更します

ORDER BY [Qty] ASC
于 2012-07-01T19:15:19.333 に答える
1

これを試して

Select Qty
from tableName
where CustomerID = ( select min(CustomerID) from tableName )
于 2012-06-30T08:32:44.477 に答える