I have table with this structure :
IdCity int
CityName nvarchar(20)
the data inside it is written in russian like :
+--------+----------------+
| IdCity | CityName |
+--------+----------------+
| 1 | Абакан |
| 2 | Азов |
| 3 | Александров |
| 4 | Алексин |
+--------+----------------+
I tried to make an easy view to retrieve the rows that have city name = Азов :
SELECT IdCity, CityName
FROM dbo.City
WHERE (CityName = 'Азов')
It gave me null although the record is in the table. When I tried to add a row with an english name:cityname = abc, for example and edited the view to select cityname = 'abc', it worked fine.
so how to make the sql query select the russian inputs also?