What Are the Differences between CHAR and NCHAR in MS SQL Server?
Submitted by: AdministratorBoth CHAR and NCHAR are fixed length data types. But they have the following main differences:
* CHAR stores characters based on the code page with 1 byte per character most of the time.
* NCHAR stores characters using Unicode character set with 2 bytes per character most of the time.
* CHAR(n) specifies a length of n bytes by default.
* NCHAR(n) specifies a length of n characters by default.
Submitted by: Administrator
* CHAR stores characters based on the code page with 1 byte per character most of the time.
* NCHAR stores characters using Unicode character set with 2 bytes per character most of the time.
* CHAR(n) specifies a length of n bytes by default.
* NCHAR(n) specifies a length of n characters by default.
Submitted by: Administrator
Read Online MS SQL Server Job Interview Questions And Answers
Top MS SQL Server Questions
☺ | What Are the Requirements on SQL Server Network Connections? |
☺ | What Happens If NULL Values Are Involved in Arithmetic Operations? |
☺ | How To Get the Definition of a View Out of the SQL Server? |
☺ | What Happens If Strings Are Casted into Wrong Code Pages in MS SQL Server? |
☺ | How To Convert a Numeric Expression from One Data Type to Another? |
Top Databases Programming Categories
☺ | RDBMS Interview Questions. |
☺ | SQL Interview Questions. |
☺ | SSRS Interview Questions. |
☺ | Sybase Interview Questions. |
☺ | Database Administrator (DBA) Interview Questions. |