1.6.3.4 ENUM and SET Constraints (original) (raw)

1.6.3.4 ENUM and SET Constraints

ENUM andSET columns provide an efficient way to define columns that can contain only a given set of values. See Section 11.3.5, “The ENUM Type”, andSection 11.3.6, “The SET Type”.

Unless strict mode is disabled (not recommended, but seeSection 5.1.10, “Server SQL Modes”), the definition of aENUM orSET column acts 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. ForENUM, the value is inserted as the error member (0). ForSET, 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'.