PostgreSQL/Constraints/CONSTRAINT

Материал из SQL эксперт
Версия от 10:14, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Specify CONSTRAINT

postgres=#
postgres=# CREATE TABLE products (
postgres(#    product_no integer,
postgres(#    name text,
postgres(#    price numeric,
postgres(#    CHECK (price > 0),
postgres(#    discounted_price numeric,
postgres(#    CHECK (discounted_price > 0),
postgres(#    CONSTRAINT valid_discount CHECK (price > discounted_price)
postgres(# );
CREATE TABLE
postgres=#
postgres=# drop table products;
DROP TABLE
postgres=#