Re: enumeration datatype in postgresql?

Поиск
Список
Период
Сортировка
От Szabo Zoltan
Тема Re: enumeration datatype in postgresql?
Дата
Msg-id 3B9CA241.E2102E55@econet.hu
обсуждение исходный текст
Список pgsql-general
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


В списке pgsql-general по дате отправления:

Предыдущее
От: "Brian Smith"
Дата:
Сообщение: Mosix
Следующее
От: "Ligia Pimentel"
Дата:
Сообщение: Blob datatype / image storing in postgres