——————-Sql server資料表值函式——————&

來源:互聯網
上載者:User
Sql server資料表值函式

關鍵字: sql server, 資料表值函式

Sql server 的資料表值函式是返回一個Table類型,table類型相當與一張儲存在記憶體中的一張虛擬表。
實現資料表值函式很簡單:
下面是一個不帶輸入參數的資料表值函式

create function tvpoints()
returns table
as
return
(
select * from tb_users
);
這個資料表值函式數查詢所有使用者表的資料

對於多語句資料表值函式,在 BEGIN...END 語句塊中定義的函數體包含一系列 Transact-SQL 陳述式,這些語句可產生行並將其插入將返回的表中。

以下樣本建立了一個資料表值函式.

create function tvpoints()
returns @points table (x float, y float)
as begin
insert @points values(1,2);
insert @points values(3,4);
return;
end

 

 

查詢資料表值函式跟查詢普通表一樣
select * from tvpoints()
返回的是一張表

 

 

帶輸入參數的資料表值函式

create function tvpoints2(@x AS int,@y as int)
returns @points table (x float, y float)
as begin
insert @points values(@x,@y);
return;
end

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.