Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在编写存储过程时,可能存在相同情况的重复代码,例如错误处理。为了重用代码,可以创建一个函数并调用该函数。
是否可以在存储过程中有一个语句块并且可以多次调用而不创建函数?
您可以使用 GOTO 语句,但请不要。在我看来,创建一个函数并使用它的优点远远大于缺点。
http://msdn.microsoft.com/en-us/library/ms180188.aspx