Character setting for char type column
mysql>
mysql> CREATE TABLE TABUCS2
-> (C1 CHAR(10) CHARACTER SET ucs2
-> NOT NULL PRIMARY KEY,
-> C2 VARCHAR(10) CHARACTER SET ucs2);
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table tabucs2;
Query OK, 0 rows affected (0.00 sec)
Related examples in the same category