Differences between varchar and nvarchar

Source: Internet
Author: User

Unicode Character Set is generated to solve the incompatibility problem of character sets. All its characters are expressed in two bytes, that is, English characters are also expressed in two bytes.

If you are still struggling with this issue, let's take a look at the explanation below and make a decision.

Generally, if you use Chinese characters or other special characters, I will use the type starting with N. Otherwise, I will directly start with var.

 

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

A:
Varchar (N)
Variable-length and non-UNICODE character data with a length of n Bytes. N must be a value between 1 and 8,000. The storage size is the actual length of the input data bytes, rather than n Bytes.

Nvarchar (N)
Unicode data with a variable length of n characters. The value of N must be between 1 and 4,000. The storage size of bytes is twice the number of input characters.

The two fields have Field Values: Me and coffee.
The varchar field occupies 2 × 2 + 6 = 10 bytes of storage space, while the nvarchar field occupies 8 × 2 = 16 bytes of storage space.

If the field value is only in English, you can select varchar. If the field value contains many double-byte (Chinese, Korean, etc.) characters, use nvarchar.Char varchar nvarchar:

Char (N) Fixed Length High indexing efficiency using TRIM in programs to remove unnecessary blank space NIt must be a value between 1 and 8,000. The storage size isNBytes
Varchar (N) Variable Length Efficiency not as high as char flexibility NIt must be a number between 1 and 8,000. The storage size is the actual length of the input data bytes, insteadNBytes
Text (N) Variable Length Non-Unicode data  
Nchar (N) Fixed Length Unicode data type processing (all characters are expressed in two bytes) NMust be between 1 and 4,000. The storage size isNDouble the byte
Nvarchar (N) Variable Length Unicode data type processing (all characters are expressed in two bytes) NMust be between 1 and 4,000. The storage size of bytes is twice the number of input characters. The entered data character length can be zero.
Ntext (N) Variable Length Unicode data type processing (all characters are expressed in two bytes)  
Source: http://blog.sina.com.cn/s/blog_44e571d70100cagf.html

In general, if it contains Chinese characters, use nchar/nvarchar. If it contains English letters and numbers, use Char/varchar.

The summary here is good.
Http://www.cnblogs.com/ebaidu/archive/2007/08/14/854778.html many developers often do not think too much about the char, varchar type, some don't pay attention to, because the storage price has become cheaper and cheaper, I forgot some of the basic design theories and principles at the beginning. This reminds me of the young people who have moved away from their hands with a wave of RMB. In fact, I want to be a human or a human, development is good, and the grasp of details directly determines a lot of things. Of course, there are still some people who just don't figure out their differences, so they just choose one. Here I want to make a simple analysis on them. Of course, if there is something wrong with them, I hope you can give me some advice.

1. Char. It is very convenient for Char to store fixed-length data, and the indexing efficiency of char fields is high. For example, if char (10) is defined, no matter whether the data you store reaches 10 bytes, it takes up 10 bytes of space. If the space is insufficient, it is automatically filled with spaces. Therefore, trim () may be used multiple times during reading ().

2. varchar. Variable-length data is stored, but the storage efficiency is not as high as char. If the possible value of a field is not fixed, we only know that it cannot exceed 10 characters. It is the most cost-effective to define it as varchar (10. The actual length of the varchar type is the actual length of its value plus 1. Why "+ 1? This byte is used to save the actual length. From the perspective of space, it is appropriate to use varchar; from the perspective of efficiency, char is suitable, and the key is to find a trade-off point based on the actual situation.

3. Text. Text stores variable-length non-Unicode data. The maximum length is 2 ^ 31-1 (2,147,483,647) characters.

4. nchar, nvarchar, and ntext. The three names are named N more than the first three ". It indicates that characters of the Unicode data type are stored. We know that only one byte is required for English characters, but there are many Chinese characters and two bytes are required for storage. It is easy to cause confusion when both English and Chinese characters exist, unicode Character Set is generated to solve the incompatibility problem of character sets. All its characters are expressed in two bytes, that is, English characters are also expressed in two bytes. The length of nchar and nvarchar is between 1 and 4000. Compared with Char and varchar, nchar and nvarchar can store up to 4000 characters, whether in English or Chinese. Char and varchar can store up to 8000 English and 4000 Chinese characters. It can be seen that when using nchar and nvarchar data types, you do not have to worry about whether the entered characters are English or Chinese characters, which is more convenient, but there is some loss in the amount of stored English hours.

Therefore, in general, if it contains Chinese characters, use nchar/nvarchar. If it contains English letters and numbers, use Char/varchar.

I will summarize their differences:
Char, nchar fixed length, fast speed, large space, need to be processed
Varchar, nvarchar, and text cannot be long, the space is small, and the speed is slow. No processing is required.
Nchar, nvarchar, ntext processing Unicode code below to find a piece of information, source http://wenku.baidu.com/view/eee97bf5f61fb7360b4c652b.html varchar in SQL Server is a single byte to store data, nvarchar uses Unicode to store data. when a Chinese character is stored in SQL Server, it is saved as two bytes (generally Unico encoding) and an English character is saved to the database. If the field type is varchar, it only occupiesOne byteIf the field type is nvarcharTwo bytes.
Normally, we use varcharYou can also store Chinese characters.However, if the operating system is an English operating system and the Chinese font isIncomplete supportIn SQL Server, if the Chinese character is varchar, garbled characters (displayed as?) are displayed ??). In addition, the host normally supports Chinese environments. Therefore, if varchar is used to store data, it cannot be found in the development stage. In most casesDeployment
Of course, using nvarchar to store English characters will increase by a factor of storage space. However, given the low storage cost, compatibility will bring you more benefits.
  Therefore, you should try to use nvarchar to store data during design. varchar is used only when you ensure that this field does not save Chinese characters.There will be no problems.
But! If the deployed host is an English operating system and does not support the Chinese environment, the problem arises. All varchar fields are garbled when they are stored in Chinese ??). In general, you do not know that this is because you use the wrong data type to store the data. You will try to install Chinese fonts, try to set the language environment of the operating system... these cannot solve the problem. The only solution is to set the database field type to nvarchar (or nchar ). anyone familiar with project management should know that it is terrible to modify the database at the deployment stage.
  Another advantage of using nvarchar is that you do not need to consider the differences between Chinese and English characters when judging strings.

Unicode Character Set is generated to solve the incompatibility problem of character sets. All its characters are expressed in two bytes, that is, English characters are also expressed in two bytes.

If you are still struggling with this issue, let's take a look at the explanation below and make a decision.

Generally, if you use Chinese characters or other special characters, I will use the type starting with N. Otherwise, I will directly start with var.

 

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

A:
Varchar (N)
Variable-length and non-UNICODE character data with a length of n Bytes. N must be a value between 1 and 8,000. The storage size is the actual length of the input data bytes, rather than n Bytes.

Nvarchar (N)
Unicode data with a variable length of n characters. The value of N must be between 1 and 4,000. The storage size of bytes is twice the number of input characters.

The two fields have Field Values: Me and coffee.
The varchar field occupies 2 × 2 + 6 = 10 bytes of storage space, while the nvarchar field occupies 8 × 2 = 16 bytes of storage space.

If the field value is only in English, you can select varchar. If the field value contains many double-byte (Chinese, Korean, etc.) characters, use nvarchar.Char varchar nvarchar:

Char (N) Fixed Length High indexing efficiency using TRIM in programs to remove unnecessary blank space NIt must be a value between 1 and 8,000. The storage size isNBytes
Varchar (N) Variable Length Efficiency not as high as char flexibility NIt must be a number between 1 and 8,000. The storage size is the actual length of the input data bytes, insteadNBytes
Text (N) Variable Length Non-Unicode data  
Nchar (N) Fixed Length Unicode data type processing (all characters are expressed in two bytes) NMust be between 1 and 4,000. The storage size isNDouble the byte
Nvarchar (N) Variable Length Unicode data type processing (all characters are expressed in two bytes) NMust be between 1 and 4,000. The storage size of bytes is twice the number of input characters. The entered data character length can be zero.
Ntext (N) Variable Length Unicode data type processing (all characters are expressed in two bytes)  
Source: http://blog.sina.com.cn/s/blog_44e571d70100cagf.html

In general, if it contains Chinese characters, use nchar/nvarchar. If it contains English letters and numbers, use Char/varchar.

The summary here is good.
Http://www.cnblogs.com/ebaidu/archive/2007/08/14/854778.html many developers often do not think too much about the char, varchar type, some don't pay attention to, because the storage price has become cheaper and cheaper, I forgot some of the basic design theories and principles at the beginning. This reminds me of the young people who have moved away from their hands with a wave of RMB. In fact, I want to be a human or a human, development is good, and the grasp of details directly determines a lot of things. Of course, there are still some people who just don't figure out their differences, so they just choose one. Here I want to make a simple analysis on them. Of course, if there is something wrong with them, I hope you can give me some advice.

1. Char. It is very convenient for Char to store fixed-length data, and the indexing efficiency of char fields is high. For example, if char (10) is defined, no matter whether the data you store reaches 10 bytes, it takes up 10 bytes of space. If the space is insufficient, it is automatically filled with spaces. Therefore, trim () may be used multiple times during reading ().

2. varchar. Variable-length data is stored, but the storage efficiency is not as high as char. If the possible value of a field is not fixed, we only know that it cannot exceed 10 characters. It is the most cost-effective to define it as varchar (10. The actual length of the varchar type is the actual length of its value plus 1. Why "+ 1? This byte is used to save the actual length. From the perspective of space, it is appropriate to use varchar; from the perspective of efficiency, char is suitable, and the key is to find a trade-off point based on the actual situation.

3. Text. Text stores variable-length non-Unicode data. The maximum length is 2 ^ 31-1 (2,147,483,647) characters.

4. nchar, nvarchar, and ntext. The three names are named N more than the first three ". It indicates that characters of the Unicode data type are stored. We know that only one byte is required for English characters, but there are many Chinese characters and two bytes are required for storage. It is easy to cause confusion when both English and Chinese characters exist, unicode Character Set is generated to solve the incompatibility problem of character sets. All its characters are expressed in two bytes, that is, English characters are also expressed in two bytes. The length of nchar and nvarchar is between 1 and 4000. Compared with Char and varchar, nchar and nvarchar can store up to 4000 characters, whether in English or Chinese. Char and varchar can store up to 8000 English and 4000 Chinese characters. It can be seen that when using nchar and nvarchar data types, you do not have to worry about whether the entered characters are English or Chinese characters, which is more convenient, but there is some loss in the amount of stored English hours.

Therefore, in general, if it contains Chinese characters, use nchar/nvarchar. If it contains English letters and numbers, use Char/varchar.

I will summarize their differences:
Char, nchar fixed length, fast speed, large space, need to be processed
Varchar, nvarchar, and text cannot be long, the space is small, and the speed is slow. No processing is required.
Nchar, nvarchar, ntext processing Unicode code below to find a piece of information, source http://wenku.baidu.com/view/eee97bf5f61fb7360b4c652b.html varchar in SQL Server is a single byte to store data, nvarchar uses Unicode to store data. when a Chinese character is stored in SQL Server, it is saved as two bytes (generally Unico encoding) and an English character is saved to the database. If the field type is varchar, it only occupiesOne byteIf the field type is nvarcharTwo bytes.
Normally, we use varcharYou can also store Chinese characters.However, if the operating system is an English operating system and the Chinese font isIncomplete supportIn SQL Server, if the Chinese character is varchar, garbled characters (displayed as?) are displayed ??). In addition, the host normally supports Chinese environments. Therefore, if varchar is used to store data, it cannot be found in the development stage. In most casesDeployment
Of course, using nvarchar to store English characters will increase by a factor of storage space. However, given the low storage cost, compatibility will bring you more benefits.
  Therefore, you should try to use nvarchar to store data during design. varchar is used only when you ensure that this field does not save Chinese characters.There will be no problems.
But! If the deployed host is an English operating system and does not support the Chinese environment, the problem arises. All varchar fields are garbled when they are stored in Chinese ??). In general, you do not know that this is because you use the wrong data type to store the data. You will try to install Chinese fonts, try to set the language environment of the operating system... these cannot solve the problem. The only solution is to set the database field type to nvarchar (or nchar ). anyone familiar with project management should know that it is terrible to modify the database at the deployment stage.
  Another advantage of using nvarchar is that you do not need to consider the differences between Chinese and English characters when judging strings.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.