Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What does it mean by nvarchar?

What is the difference between char, nchar, varchar, and nvarchar in SQL Server?

share|improve this question
5  
+1 for a googleable question. – Eternal Learner Oct 12 '12 at 18:22

10 Answers

up vote 191 down vote accepted

Just to clear up... or sum up...

  • nchar and nvarchar can store Unicode characters.
  • char and varchar cannot store Unicode characters.
  • char and nchar are fixed-length which will reserve storage space for number of characters you specify even if you don't use up all that space.
  • varchar and nvarchar are variable-length which will only use up spaces for the characters you store. It will not reserve storage like char or nchar.

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.

share|improve this answer
5  
char and varchar aren't meant to store unicode, but with some additional coding tricks and extra logic, you can still misuse a [var]char field for unicode storage. – Wim ten Brink Nov 2 '09 at 10:41
1  
It is collation dependant whether or not the n... versions take up twice as much storage space as my answer shows – Martin Smith Nov 23 '11 at 23:48
+1 for an excellent answer. – Eternal Learner Oct 12 '12 at 18:23
Are there performance differences between char and varchar? – Lorlin Oct 31 '12 at 8:26
What's the advantage to reserving storage? – mlissner Feb 20 at 0:11
show 1 more comment

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.

share|improve this answer
I was always curious about this. Thanks for the info! – Miles Oct 8 '08 at 15:11
2  
You forget one thing: nchar uses a fixed-length so nchar(10) always needs to receive ten characters. And varchar(10) is indeed Unicode and will accept any number of characters, up to 10 characters. Also see msdn.microsoft.com/en-us/library/ms186939.aspx – Wim ten Brink Nov 2 '09 at 10:29

All the answers so far indicate that varchar is single byte, nvarchar is double byte. The first part of this actually depends on collation as illustrated below.

DECLARE @T TABLE
(
C1 VARCHAR(20) COLLATE Chinese_Traditional_Stroke_Order_100_CS_AS_KS_WS,
C2 NVARCHAR(20)COLLATE  Chinese_Traditional_Stroke_Order_100_CS_AS_KS_WS
)

INSERT INTO @T VALUES (N'中华人民共和国',N'中华人民共和国')

SELECT LEN(C1)        AS [LEN(C1)],
       DATALENGTH(C1) AS [DATALENGTH(C1)],
       LEN(C2)        AS [LEN(C2)],
       DATALENGTH(C2) AS [DATALENGTH(C2)]
FROM   @T  

Returns

LEN(C1)     DATALENGTH(C1) LEN(C2)     DATALENGTH(C2)
----------- -------------- ----------- --------------
7           12             7           14
share|improve this answer
  • char: fixed-length character data with a maximum length of 8000 characters.
  • nchar: fixed-length unicode data with a maximum length of 4000 characters.
  • Char = 8 bit length
  • NChar = 16 bit length
share|improve this answer

Just to add something more: nchar - adds trailing spaces to the data. nvarchar - does not add trailing spaces to the data.

So, if you are going to filter your dataset by an 'nchar' field, you may want to use RTRIM to remove the spaces. E.g. nchar(10) field called BRAND stores the word NIKE. It adds 6 spaces to the right of the word. So, when filtering, the expression should read: RTRIM(Fields!BRAND.Value) = "NIKE"

Hope this helps someone out there because I was struggling with it for a bit just now!

share|improve this answer

The differences are:

  1. n[var]char stores unicode while [var]char just stores single-byte characters.
  2. [n]char requires a fixed number of characters of the exact length while [n]varchar accepts a variable number of characters up to and including the defined length.

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.)

share|improve this answer

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.

share|improve this answer
Wrong comparison - question relates to nchar and varchar, not nchar and nvarchar. – Luke Bennett Oct 6 '08 at 22:56

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

share|improve this answer
1  
Not completely true, since you're required to fill a char(100) with up to 100 characters. You would use this when you're eg store phone numbers in your database, or order numbers with a fixed length. Because the field length is fixed, you have no choice to fill it up to the maximum number of characters. But when all your data is 100 characters per record, a char(100) will take less storage than a varchar(100) because it doesn't need a length indication: every value would be exactly 100 characters. – Wim ten Brink Nov 2 '09 at 10:44

NVARCHAR can store Unicode characters and takes 2 bytes per character.

share|improve this answer
   
WRONG! Unicode uses between 1 and 4 bytes per character! Many people forget this! Even the use of UTF-16 might result in some characters taking 4 bytes instead of 2, although the common length will be 2 bytes. Certain other subformats of Unicode might take even more than 4 bytes! – Wim ten Brink Nov 2 '09 at 10:37
3  
@WimtenBrink - The question is about SQL Server and nvarchar always takes 2 bytes per character. – Martin Smith Nov 23 '11 at 23:15
  • nchar is fixed-length and can hold unicode characters. it uses two bytes storage per character.

  • varchar is of variable length and cannot hold unicode characters. it uses one byte storage per character.

share|improve this answer
Wrong. Unicode can use 1 to 4 bytes (in general) for every character. Also, a varchar can hold unicode, but it's not recognised as unicode. As a result, a varchar is considered unreliable for unicode storage. (Especially since there's a risk that the code that accesses the field will translate it incorrectly.) – Wim ten Brink Nov 2 '09 at 10:39
@Alex: I think you made your point but I still do not agree with you. What you are saying is that an int CAN hold a long if the long happens to be smaller than 2^32. This is not only 'unreliable', it is an inherent limitation which makes it impossible to cover the whole value range. – Manu Nov 5 '09 at 8:36
3  
@Workshop Alex: Wrong. Unicode encoded as UCS-2 (which happens to be the encoding used by SQL Server) stores every character in exactly two bytes, see msdn.microsoft.com/en-us/library/bb330962%28v=sql.90%29.aspx: SQL Server stores Unicode in the UCS-2 encoding scheme... UCS-2 is a fixed-length encoding that represents all characters as a 16-bit value (2 bytes). SQL Server 2008 can use SCSU compression, but is still compression of the UCS-2 encoded Unicode strings: msdn.microsoft.com/en-us/library/ee240835.aspx – Remus Rusanu Dec 18 '10 at 6:23

protected by Community Oct 2 '12 at 6:22

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.