SQL Server Cyrillic Writing '?????'

前端 未结 1 1445
情话喂你
情话喂你 2021-01-22 02:00

I am running a SQL Server 2008 R2 and I have a database containing multilingual words.

For Cyrillic words I only see \'???????\'

The data type is nvarchar(255),

相关标签:
1条回答
  • 2021-01-22 02:47

    When you add data to the nvarchar column, use the prefix N

    Insert into table(nvarchar_col)
    select N'your Cyrillic words'
    
    0 讨论(0)
提交回复
热议问题