내연 테이블 값 함수 FUNCTION

2719 단어 function
내연 테이블 값 함수를 만듭니다.
 1 USE TSQLFundamentals2008;

 2 IF OBJECT_ID('dbo.fn_GetCustOrders') IS NOT NULL

 3   DROP FUNCTION dbo.fn_GetCustOrders;

 4 GO

 5 CREATE FUNCTION dbo.fn_GetCustOrders

 6   (@cid AS INT) RETURNS TABLE

 7 AS

 8 RETURN

 9   SELECT orderid, custid, empid, orderdate, requireddate,

10     shippeddate, shipperid, freight, shipname, shipaddress, shipcity,

11     shipregion, shippostalcode, shipcountry

12   FROM Sales.Orders

13   WHERE custid = @cid;

14 GO

이 함수에 대한 조회:
1 SELECT orderid, custid

2 FROM dbo.fn_GetCustOrders(1) AS CO;

좋은 웹페이지 즐겨찾기