3

What I need is to select all records containing characters from Unicode blocks. For example, next regex matches string that consists only from characters of Basic Latin unicode block:

^[\u0000-\u007F]+$

How unicode blocks could be used in sql queries?

Vasyl Senko
  • 1,779
  • 20
  • 33
  • Seems like a Duplicate: http://stackoverflow.com/questions/4319546/how-to-compare-unicode-characters-in-sql-server Also you can use the `Like` operator with the given unicode symbol: https://msdn.microsoft.com/en-us/library/ms179859.aspx#Anchor_5 – Nebi Feb 22 '17 at 13:52

0 Answers0