enum in SQL

The ENUM data type in MySQL is a string object. It limits the value chosen from a list of permitted values in the column specification at the time of table creation. 
```
CREATE TABLE Student_grade(
  id INT PRIMARY KEY AUTO_INCREMENT, Grade VARCHAR(250) NOT NULL,
  priority ENUM('Low', 'Medium', 'High') NOT NULL
);
```