The code for one of the Hebrew characters, which is a period (= vowel), is 1463 or 0x05b7
I try to select only words containing this character, but I get the entire list of words.
I'm trying to:
DECLARE @d NCHAR
set @d = NCHAR(1463)
select * from words where word like '%' + @d + '%'
I also tried
select * from words where word LIKE '%'+NCHAR(0x05B7)+'%'
I tried to finish the statement with
collate hebrew_cs_as
or
collate hebrew_cs_ai
and it does not work
PS, when I try to do the same with the letter code, for example 1488, it works fine
eg.
select * from words where word LIKE '%'+NCHAR(1488)+'%'
source
share