I want to disable NOT NULL constraints in a table to insert data for a test, but I cannot find a way to disable unnamed constraints.
I found enough information to disable named constraints, but I could not find an example to disable an unnamed NOT NULL constraint.
I would like to implement this without querying the data dictionary, but ... I am ready to do this if this is the only way. But I would like to use pure ALTER TABLE DDL.
source
share