Given a table "data" with column "value", one can add a constraint that
has no name:
ALTER TABLE data ADD CHECK (value > 0);
How, then, does one remove this constraint? The "ALTER TABLE ... DROP
CONSTRAINT ..." command expects to see a constraint name, but this
constraint is anonymous.