Dear friends, I ran into a problem that I never thought about. My problem seems too simple, but I can not find a solution. I have a SQL Server database column that is of type NVarchar and is filled with standard Persian characters. when I try to run a very simple query on it that includes the LIKE statement, the result set becomes empty, although I know that the query term is present in the table. Here is an example of a query with a chunk that does not act differently: SELECT * FROM T_Contacts WHERE C_ContactName LIKE '% Ω%'
Ω is a Persian character, and the counmn ContactName contains several records that contain this character.
Please tell me how to rewrite the expression or what change I should apply. Please note that my database sort is SQL_Latin1_General_CP1_CI_AS.
Many thanks
source
share