[T-SQL Querying]Chapter9~Apply
时间:2010-12-07 来源:IntoTheRain
主要应用:搜索符合条件集合的前N个数据。
例子1:供应商各类别最便宜的N件商品。
IF OBJECT_ID('dbo.fn_top_products') IS NOT NULL DROP FUNCTION dbo.fn_top_products; GO CREATE FUNCTION dbo.fn_top_products (@supid AS INT, @catid INT, @n AS INT) RETURNS TABLE AS RETURN SELECT TOP(@n) WITH TIES ProductID, ProductName, UnitPrice FROM dbo.Products WHERE SupplierID = @supid AND CategoryID = @catid ORDER BY UnitPrice DESC;
GO
SELECT S.SupplierID, CompanyName, ProductID, ProductName, UnitPrice
FROM dbo.Suppliers AS S
CROSS APPLY dbo.fn_top_products(S.SupplierID, 1, 2) AS P;
例子2: 各雇员最近N次订单详情。
SELECT OrderID, CustomerID, EmployeeID, OrderDate, RequiredDate
FROM dbo.Employees AS E
CROSS APPLY
(SELECT TOP(3) OrderID, CustomerID, OrderDate, RequiredDate
FROM dbo.Orders AS O
WHERE O.EmployeeID = E.EmployeeID
ORDER BY OrderDate DESC, OrderID DESC) AS A;
例子3: 每行显示订单现在以及上次的订单详情。(方便进行比较)
SELECT Cur.EmployeeID,
Cur.OrderID AS CurOrderID, Prv.OrderID AS PrvOrderID,
Cur.OrderDate AS CurOrderDate, Prv.OrderDate AS PrvOrderDate,
Cur.RequiredDate AS CurReqDate, Prv.RequiredDate AS PrvReqDate
FROM dbo.Orders AS Cur
OUTER APPLY
(SELECT TOP(1) OrderID, OrderDate, RequiredDate
FROM dbo.Orders AS O
WHERE O.EmployeeID = Cur.EmployeeID
AND (O.OrderDate < Cur.OrderDate
OR (O.OrderDate = Cur.OrderDate
AND O.OrderID < Cur.OrderID))
ORDER BY OrderDate DESC, OrderID DESC) AS Prv
ORDER BY Cur.EmployeeID, Cur.OrderDate, Cur.OrderID
相关阅读 更多 +