반응형
/********************************************************************************************
-- Title : [2k5] TABLESAMPLE 사용 예
-- Reference : 웹검색
-- Key word : tablesample
********************************************************************************************/

USE AdventureWorks;
GO

-- 아래는 전체 집합에 대한 평균 주문 수량
SELECT AVG(OrderQty) FROM Purchasing.PurchaseOrderDetail;

-- 아래는 30퍼센트의 샘플링 집합에 대한 평균 주문 수량
SELECT AVG(OrderQty)
FROM Purchasing.PurchaseOrderDetail
TABLESAMPLE (30 PERCENT);
반응형

+ Recent posts