Subject Re: [IBO] Unique
Author Florian Hector
> If I had a table with fields A and B, how could I make the
> combination of fields A and B be unique?

CREATE UNIQUE INDEX IDX_MyTable ON MyTable (FieldA, FieldB);

Florian