I am trying to select records that start with this string pattern 'Dear [User Name]'. The following where clause:
where Message like 'Dear [UserName]%'
returns nothing.
What is the problem and what is the solution?
Note 1: the field [Message] DOES start with this text.
Note 2: the type of field [Message] is text, but the same problme happens with varchar fields.