Hi! I have table country.
Create table(id int identity(1,1), name nvarchar(30))
Id
|
Name
|
1
|
Таҷикистан
|
2
|
Қазоқистон
|
3
|
Қирғизистон
|
4
|
Гурҷистон
|
But I have problem when directly write this word without problem write. If I update it’s some letter convert by symbol. If I write this code:
Update country
Set name='Қазоқистон'
where id =1
in output it’s insert this: ?азо?истон. I want after insert or update it’s inserted without change.