I need to update a varchar
column with Arabic
names in SQL.
My table column ArabicCode
is of type varchar. I don't want to change the type of the column. Is there another way to update the column with Arabic names. Now it's updating as ???
.
update myTable set ArabicCode = `اسقف مستعار` where masterid = 2
Thanks!!!