MySQL supports the use of character sets for the MyISAM, MEMORY, NDBCluster, and InnoDB storage engines. | |
A character set is a set of symbols and encodings. | |
A collation is a set of rules for comparing characters in a character set. | |
The MySQL server can support multiple character sets. | |
To list the available character sets, use the SHOW CHARACTER SET statement | |
Quote from MySQL document http://www.mysql.com | |
| |
Any given character set always has at least one collation. | |
Any given character set may have several collations. | |
To list the collations for a character set, use the SHOW COLLATION statement. | |
|