Collections:
Difference between CHAR and NCHAR in MySQL
What Are the Differences between CHAR and NCHAR in MySQL?
✍: FYIcenter.com
Both CHAR and NCHAR are fixed length string data types. But they have the following differences:
The following column definitions are the same:
CREATE TABLE faq (Title NCHAR(80)); CREATE TABLE faq (Title NATIONAL CHAR(80)); CREATE TABLE faq (Title NATIONAL CHARACTER(80)); CREATE TABLE faq (Title CHAR(80) CHARACTER SET utf8); CREATE TABLE faq (Title CHARACTER(80) CHARACTER SET utf8);
⇒ Difference between CHAR and VARCHAR in MySQL
⇐ Character String Data Types in MySQL
2018-01-19, 3300🔥, 0💬
Popular Posts:
How to detect the collation coercibility associated to a given character string using the COERCIBILI...
Where Is the Export Dump File Located in Oracle? If you are not specifying the dump directory and fi...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Calculate Age in Days, Hours and Minutes in SQL Server Transact-SQL? On many Web sites, news ...
How To Enter Unicode Character String Literals in SQL Server Transact-SQL? Unicode characters are mu...