February 2018
Intermediate to advanced
510 pages
16h 10m
English
MySQL 8 supports many character sets, with a variety of collations. Character sets can be defined at the column, table, database or server levels. We can use the character set for InnoDB, MyISAM, and Memory storage engines. To check all the available character sets of MySQL 8, execute the following command:
mysql> show character set;+----------+---------------------------------+---------------------+--------+| Charset | Description | Default collation | Maxlen |+----------+---------------------------------+---------------------+--------+| armscii8 | ARMSCII-8 Armenian | armscii8_general_ci | 1 || ascii | US ASCII | ascii_general_ci | 1 || big5 | Big5 Traditional Chinese | big5_chinese_ci | 2 | ..................+----------+---------------------------------+---------------------+--------+ ...
Read now
Unlock full access