I need to find a list of all items starting with an underscore: _
The obvious doesn't work:
select * from role where Name like '_%'
This still returns all items.
The following also returns all items.
select * from role where Name like '\_%'
select * from role where Name like '__%'
anyone knows how to escape a underscore? or how else I can achieve this StartWithUnderscore functionality?