parsed.org

Tips by tag: constraints

Update a Domain Constraint by xinu on Jan 12, 2005 10:23 AM

Use these queries to change the structure of a DOMAIN constraint:

ALTER DOMAIN foo DROP CONSTRAINT bar;
ALTER DOMAIN foo ADD CONSTRAINT bar CHECK (VALUE = 'baz'::text);
constraintsdomainpostgresqlqueriesschemasql
RSS