Thread: Re: enumeration datatype in postgresql?

Re: enumeration datatype in postgresql?

From
Szabo Zoltan
Date:
Hi, enum is a very stupid thing in mysql :)
Use check in psql.
http://www.postgresql.org/idocs/index.php?sql-createtable.html
Sample:
create table mytable (
shortcut char(2)  check (shortcut in ('en','nl','de'))
);


Marc Lambrichs wrote:

> Is there an enumeration datatype in postgresql like the enum in mysql?
>
> Cheers,
> Marc