What is the difference between varchar and nvarchar?

后端 未结 19 2462
野的像风
野的像风 2020-11-22 04:05

Is it just that nvarchar supports multibyte characters? If that is the case, is there really any point, other than storage concerns, to using varchars

19条回答
  •  醉梦人生
    2020-11-22 04:34

    nvarchar stores data as Unicode, so, if you're going to store multilingual data (more than one language) in a data column you need the N variant.

提交回复
热议问题