Strangely when I compare '-' (hyphen) with a '_' (underscore) , I'm getting weird results. Although I expect the output of both the below statements to be false , the first one returns true while the second one returns false.
Select case when '-' like '_' then 'true' else 'false' end -- returns true
Select case when '_' like '-' then 'true' else 'false' end -- returns false
Any clarification would be helpful.