I have this statement in my where clause:
(A.[subject] LIKE '%'+@meetingSubject+'%')
I only want this to be searched if @meetingSubject
is not empty.
As of right now, its returning all records when @meetingSubject
is null
How can I accomplish this ?