I have a SQL Server table which stores all the data across the world. But i want to retrieve only russian characters from table specifically.
I tried below query but this is returning all NON ENGLISH data.
select * from tablename where column like '%[^-A-Za-z0-9 /.+$]%'
Is there a way to get only russian characters.
Thanks in advance.