Tuesday, February 19, 2019

leading commas at inbound parameters at stored procedures

This can be a good convention to have. This allows one of the parameters to be easily commented out.

ALTER pr
 
,
,
,
ocedure [dbo].[Update_BusinessUnit]
@BusinessUnitID int
@BusinessDivision varchar(255)
@BusinessUnit varchar(255)
@isProcessing bit

No comments:

Post a Comment