Reputation: 439
I have a SQL database where some data has a ■
in it. When I run a like query for that it does't find anything? I need to correct it as it stops the data transforming to xml?
WHERE [value] like '%■%'?
Upvotes: 2
Views: 245
Reputation: 942
Some time unicode does not work, so you can follow the below steps
I am sure it will works. Please confirm.
Upvotes: 0
Reputation: 32760
WHERE [value] like N'%■%'?
Query it as unicode
Upvotes: 2