sql server - Write a T-SQL query that filters records containing NCHAR(2028) -
My last goal is to write a SQL script which selects data from a particular table where in an nvarchar (max) column Characters include NCHH (2028).
But obvious:
to select the tagline where '%' + NCHAR (2028) + '%'
/ Pre> Returns all the rows.
Use a binary collation for your choice.
select * to select from
like '%' + NCHAR (2028) + '%' 'column name like COLLATE Latin1_General_B / Div>
Comments
Post a Comment