SET: Combination of up to 255 strings
mysql>
mysql> CREATE TABLE employee(
-> id INT,
-> eName VARCHAR(10),
-> flags SET("a","b","c")
-> );
Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> drop table employee;
Query OK, 0 rows affected (0.00 sec)
mysql>
Related examples in the same category