I have this as a parameter in a stored procedure.
Is there a way to reference columns in @Tvp like this?
I've read that you have to copy to a temp table, but I still couldn't reference any columns. I want to pass in some search values without making each one a parameter in the proc. Any help would be appreciated.
Auguy
Sylvania/Toledo Ohio
Code:
@Tvp Tvp_UserMasterSearch READONLY
Code:
If @Tvp.UserID IS NOT NULL
Auguy
Sylvania/Toledo Ohio