Use boolean operator in check statement : Check « Constraints « PostgreSQL






Use boolean operator in check statement


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








Related examples in the same category

1.Specifying three check constaints to a table