You have defined the options for ENUM
.
Also, you are inserting values into it.
As far as you enter pre-defined values, in your case:
('Administrator', 'User', 'Guest')
You can insert ENUM
field as if it were a string, it will not create a problem.
If you enter any value other than the ones defined e.g. Administrator
, ... the database will cause error.