Differentiate between CHAR and NCHAR.CHAR is commonly referred to as character while NCHAR is referred to as NATIONAL CHARACTER. CHAR uses ASCII as its default character set. This makes one character to be stored as one byte. On the other hand, VARCHAR uses Unicode. This makes one character to be stored as one byte up to 4 bytes.
|