How to find Cyrillic font (russian characters)?
问题 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? 回答1: As per comment: This Q&A gives a good way of doing this in SQL-Server