Idea is to find all values that contains Cyrillic font (russian characters).
Something like:
SELECT CASE
WHEN Name LIKE /* Cyrillic font / russian characters */ THEN '1'
ELSE Name
END AS Filter
I can't find any info about It, so I can't provide what I've tried.
For example:
Name
Александр -- This is Cyrillic (have russian characters, should return 1)
John -- This should be returned as normal Name
Have you any ideas?