Обсуждение: Re: enumeration datatype in postgresql?

Поиск
Список
Период
Сортировка

Re: enumeration datatype in postgresql?

От
Szabo Zoltan
Дата:
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