I have a table with following scehma
CREATE TABLE MyTable
(
ID INTEGER DEFAULT(1,1),
FirstIdentifier INTEGER NULL,
This is possible with using a CHECK constraint:
CHECK (FirstIdentifier IS NOT NULL OR SecondIdentifier IS NOT NULL)
While CHECK constraints are part of the table (and hence "schema"?), they may not fit the desired definition. The above CHECK is not mutually exclusive, but it could be altered to such.
Happy coding.