My SQL MySQL ENUM January 28, 2015 Pramod T P Leave a comment ENUM is a string object used to specify set of predefined values and that can be used during table creation. CREATE table phpcodez(name ENUM(‘Average’,’Good’,’Excellent’));