I have a SQL Server table containing a nvarchar(max) column. I ran a query to select every row where this column contains the string \'remove\'. Amongst the res
nvarchar(max)
I think, you should trim the column;
select itemid, LTRIM(RTRIM(content)) from objects where itemid = 100 and content like '%remove%'