Hello!
I want to implement something that will act as a UNIQUE constraint on a table, but I need a little more flexibility.
I want to implement a three-column UNIQUE constraint. However, one of the columns may be NULLs and I would want, essentially, that the NULLs be considered equal amongst them.
Each of the columns define part of a scheme to identify objects. For instance, a row could have the values (1, 3, NULL). This would translate to a CQp.kVI.3, for instance. On the other hand, I don't want another (1,3,NULL) row to be added to the DB.
Any ideas?