I am using an oracle table and have created a unique constraint over four columns. Can these columns within the constraint have NULL in them?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
you can have NULLs in your columns unless the columns are specified NOT NULL. You will be able to store only one instance of NULLs however (no two sets of same columns will be allowed unless all columns are NULL) :
|
|||
|
|
|
Two nulls are considered not equal in Oracle, so these columns can have nulls in them. |
|||
|
|
|
Yes, Oracle allows UNIQUE constraints to contain columns with NULL contents, but PRIMARY KEY constraints cannot contain columns containing NULL values. (Edited: was "... nullable columns...", but my example below shows that not to be true. Columns in a PK can be defined as nullable, but cannot contain NULL.) You cannot have a UNIQUE constraint and a PRIMARY KEY constraint with the same columns.
|
||||
|
|