You must use Unicode using the prefix "N" before the string, that is, N 'מעבד' in your where clause ...
select ProductName From Products WHERE TypeOfProduct = N'מעבד'
You also need to make sure your column is of type nvarchar, not varchar.
If you cannot use string nvarcharand Unicode, you will have to change the database setting from LATINto HEBREW.
source
share