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, 2566🔥, 0💬
Popular Posts:
How To End a Stored Procedure Properly in SQL Server Transact-SQL? Where the end of the "CREATE PROC...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...