表值函式就是返回table 的函式使用它可以方便的進行查詢的處理
建立的程式碼如下:
create FUNCTION returunclassfirstlist
(
-- Add the parameters for the function here
)
RETURNS TABLE
AS
RETURN
(
-- Add the SELECT statement with parameter references here
select * from classfirst;
)
我們在使用建立的函式的時候如下:
select * from returunclassfirstlist();
select * from returunclassfirstlist() where CONVERT(int,classid)<300;
注意 第二個 sql 就是說對於建立的表值函式我們可以進行資料的篩選
具體的資料就不貼上了。