About Cacher
Web App
Download
Sign In
Sign Up
menu
Cacher is the code snippet organizer for pro developers
We empower you and your team to get more done, faster
Learn More
linche0859
7/25/2019 - 8:37 AM
share
Share
add_circle_outline
Save
自訂函數與預存程序差異
.md
content_copy
file_download
Rendered
Source
Store Procedure
Function
只能傳回
整數
的狀態值
幾乎可以傳回任何 T-SQL 資料
除了傳回整數的狀態值外,可以使用
output
參數傳回值
參數只能傳入,並不能用來傳回值
只能使用 execute 指令執行,而且不能用在運算式
可以使用在運算式,或參考資料表的 T-SQL 子句
可以
新增,更新,刪除資料表的紀錄資料
,也可以更改資料庫相關的選項設定
主要是使用在
運算和取出資料
,並不允許更改資料表內容和資料庫的選項
clear