2

The problem is the following: I have a column of type nvarchar, collation is set to Vietnamese_CI_AS. I insert some data containing vietnamese letters (using MS SQL Server Management studio). And then it is not displayed correctly in SQL Server Management studio and application.

Data:

Data

Result

Result

Any suggestions?

berliner
  • 1,835
  • 3
  • 14
  • 21

1 Answers1

1

You must always declare N before inserting any values. N stands for national language character set.

Have a look at this post to get a better understanding.

What is the difference between varchar and nvarchar?

Community
  • 1
  • 1
sqluser
  • 5,296
  • 7
  • 34
  • 50