PostgreSQL - Advanced Features
Consider the domain:
What will be the result of inserting 0 into a column of type
CREATE DOMAIN positive_int AS integer CHECK (VALUE > 0);
What will be the result of inserting 0 into a column of type
positive_int?