Spec-Zone .ru
спецификации, руководства, описания, API

1.8.6.4. ENUM andSET Constraints

ENUM and SET columns provide an efficient way to define columns that can contain only a given set of values. See Section 11.4.4, "The ENUM Type", and Section 11.4.5, "The SET Type". However, before MySQL 5.0.2, ENUM and SET columns do not provide true constraints on entry of invalid data:

As of MySQL 5.0.2, you can configure the server to use strict SQL mode. See Section 5.1.7, "Server SQL Modes". With strict mode enabled, the definition of a ENUM or SET column does act as a constraint on values entered into the column. An error occurs for values that do not satisfy these conditions:

Errors for invalid values can be suppressed in strict mode if you use INSERT IGNORE or UPDATE IGNORE. In this case, a warning is generated rather than an error. For ENUM, the value is inserted as the error member (0). For SET, the value is inserted as given except that any invalid substrings are deleted. For example, 'a,x,b,y' results in a value of 'a,b'.