I'm trying to understand the following code.
"CREATE Procedure Adjustment @wSNN varchar(9)='%'"
My question is what is the purpose of ='%'? I know that a parameter named wSNN of variable type varchar(9) is created but from reviewing command syntax I'm left with the perception that ='%' would mean the default value of wSNN is equal to '%'. ...meaning a wildcard?
What does this bit of code actually accomplish?
"CREATE Procedure Adjustment @wSNN varchar(9)='%'"
My question is what is the purpose of ='%'? I know that a parameter named wSNN of variable type varchar(9) is created but from reviewing command syntax I'm left with the perception that ='%' would mean the default value of wSNN is equal to '%'. ...meaning a wildcard?
What does this bit of code actually accomplish?