SELECT @Param as StaffName, Field1,Field2 FROM Table
I want to include as part of my output in a SP - the text contained in a nvarchar(50) parameter.
So If @Param = 'this is what is says'
The first field of my data results would contain this is what is says for evey record.
Can anyone help me get the syntax for this??
Thanks