Mix binary and nonbinary string columns within a single table.
mysql>
mysql> CREATE TABLE auth_info
-> (
-> login CHAR(16), # not case sensitive
-> password CHAR(16) BINARY # case sensitive
-> );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table auth_info;
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql>
Related examples in the same category