Posted on 29th April 2025|44 views
What is Enumeration data type in PostgreSQL?
Posted on 29th April 2025| views
Enumeration(Enum) data type is an ordered and static collection of a set of data as it is same in all the other types of programming languages.
Syntax or Example:
CREATE TYPE Table_name AS ENUM ('samyuk', 'aroni', 'Yadav');