CREATE TABLE test1(e ENUM('dog','cat','monkey') not null); insert into test1(e) values('dog'),('monkey'),('cat');