0
在其他計算語言中,可以調用方法或子例程中的其他方法或子例程。在SQL Server中調用另一個查詢中保存的查詢
在VBA:
Public Sub x()
Call y
End Sub
Private Sub y()
Debug.Print "Hello World!"
End Sub
你能在SQL這樣做嗎?
Declare @FilePath as VarChar(Max)
Set @FilePath = '\\SomeServerExtension\MyFile.sql'
Execute @FilePath
它會節省空間並使查詢看起來更清晰。
您應該閱讀並理解存儲過程。你幾乎描述了主要的好處。 –