What is the difference between nchar and varchar in MSSQL? What does nvarchar mean?
Cheers!
|
1
|
What is the difference between nchar and varchar in MSSQL? What does nvarchar mean? Cheers!
|
|||
|
|
|
|
nchar and char pretty much operate in exactly the same way as each other, as do nvarchar and varchar. The only difference between them is that nchar/nvarchar store Unicode characters (essential if you require the use of extended character sets) whilst varchar does not. Because Unicode characters require more storage, nchar/nvarchar fields take up twice as much space (so for example in earlier versions of SQL Server the maximum size of an nvarchar field is 4000). Edit: This question is a duplicate of this one. |
||||
|
|
|
The differences are:
Another difference is length. Both nchar and nvarchar can be up to 4,000 characters long. And char and varchar can be up to 8000 characters long. But for SQL Server you can also use a [n]varchar(max) which can handle up to 2,147,483,648 characters. (Two gigabytes, a signed 4-byte integer.) |
|||
|
|
|
|
|
|||
|
|
|
|
nchar requires more space than nvarchar. eg, A char(100) will always store 100 characters even if you only enter 5, the remaining 95 chars will be padded with spaces. Storing 5 characters in a varchar(100) will save 5 characters. by, Sunil.M.L |
||
|
|
|
Just to clear up... or sum up...
nchar and nvarchar will take up twice as much storage space, so it may be wise to use them only if you need Unicode support. |
|||
|
|
|
|
||||
|
|
|
NVARCHAR can store Unicode characters and takes 2 bytes per character. |
||
|
|
|
nchar(10) is a fixed-length Unicode string of length 10. nvarchar(10) is a variable-length Unicode string with a maximum length of 10. Typically, you would use the former if all data values are 10 characters and the latter if the lengths vary. |
||
|