0 votes
in Sql by

What is the usage of ENUMs in MySQL?

1 Answer

0 votes
by

ENUM is a string object used to specify set of predefined values and that can be used during table creation.

Create table size(name ENUM('Small', 'Medium','Large');
...