在其他计算语言中,您可以在方法或子例程中调用其他方法或子例程。
在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
它可以节省空间并使查询看起来更清晰。