Re: limit table to one row

Поиск
Список
Период
Сортировка
От Richard Broersma
Тема Re: limit table to one row
Дата
Msg-id 396486430906041330n18921c62s9f094c58c00ea7be@mail.gmail.com
обсуждение исходный текст
Ответ на Re: limit table to one row  (Brandon Metcalf <brandon@geronimoalloys.com>)
Ответы Re: limit table to one row  (Brandon Metcalf <brandon@geronimoalloys.com>)
Список pgsql-general
On Thu, Jun 4, 2009 at 1:23 PM, Brandon Metcalf
<brandon@geronimoalloys.com> wrote:

> Got it.  Currently, it doesn't have a column for an ID, but I can add
> one if this is the only way.


Actually any column with a unique index on it will work.  It doesn't
have to be primary key or even a serial id.


ANSI-SQL 92 allows for the following syntax:

CONSTRAINT Only_one_row
   CHECK( 1 >= (SELECT COUNT(*) FROM _this_table;));

However, I have yet to find a RDBMS (PostgreSQL included) that
supports select statements in a table's check constraint.


--
Regards,
Richard Broersma Jr.

Visit the Los Angeles PostgreSQL Users Group (LAPUG)
http://pugs.postgresql.org/lapug

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

Предыдущее
От: Brandon Metcalf
Дата:
Сообщение: Re: limit table to one row
Следующее
От: Brandon Metcalf
Дата:
Сообщение: Re: limit table to one row