Same:
1.store unicode charactor.
2. A charactor is stroed with 2 bytes.
Different.
1. nchar 会自动填充数据到定义的固定长度;nvarchar 是数据有多长就存多少数据。
Example:
Create a table like below and store "A" in the two column.
CREATE TABLE [dbo].[AAAAA]( [name] [nchar](10) NULL, [newName] [nvarchar](10) NULL ) ON [PRIMARY] |
Result:the data length of the name is 20 bytes.
the data length of the newname is 2 bytes.
You can get the data length with the below method.
select datalength(name) as Bytes, * from [dbo].[AAAAA]
select datalength(newName) as Bytes, * from [dbo].[AAAAA]
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
· SQL Server 内存占用高分析
· .NET Core GC计划阶段(plan_phase)底层原理浅谈
· .NET开发智能桌面机器人:用.NET IoT库编写驱动控制两个屏幕
· 我干了两个月的大项目,开源了!
· 推荐一款非常好用的在线 SSH 管理工具
· 千万级的大表,如何做性能调优?
· 盘点!HelloGitHub 年度热门开源项目
· Phi小模型开发教程:用C#开发本地部署AI聊天工具,只需CPU,不需要GPU,3G内存就可以运行,