assertion

Поиск
Список
Период
Сортировка
От deval
Тема assertion
Дата
Msg-id 39E487C0.62181127@giaspn01.vsnl.net.in
обсуждение исходный текст
Список pgsql-novice
Hi

I have two tables, INMAT to track incoming material, which I process and
return, and OUTMAT to track outgoing material. each entry in INMAT is a
serial, INKY. Incoming Quantity is under field INQTY.  Outgoing quantity
in OUTMAT is under field OQTY. To check that outgoing material does not
exceed material that came in I copied the following construction from
"Database Systems" by Elmasri and Navathe.

CREATE ASSERTION OQTY_CONSTRAINT
CHECK ( OUTMAT.OQTY<=INMAT.INQTY FROM OUTMAT,INMAT
    WHERE OUTMAT.INKY=INMAT.INKY);

It did not work. I am using Postgresql-7.0.2. Can someone point out my
mistake?

Thanks in advance.

Vijay


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: About index ...
Следующее
От: "Fernando M. Maresca"
Дата:
Сообщение: Web pages tables over intranet