Can we use more than one null value for unique key?
Answer Posted / dqm
In theory, a unique key may not contain any nulls. The
reason is simple: the key, by definition is an identifier
and it is illogical to identify something by an unknown.
In practice, some SQL databases permit nulls in unique
keys. Oracle, in particular, allows nulls as long as no
duplicate indices are created in the underlying unique
index. Since Oracle does not create a indices if all
columns are null, the floodgates are open.
For example, for a single column key, this is acceptable
because only the first row makes it to the index:
1
null
null
For a two column key, this is acceptable because in the
first two rows, the first column is unique and the last two
rows, being entirely null, are not represented in the index.
1, null
2, null
null, null
null, null
However, with the same two-column index, this is
unacceptable because the first two rows produce duplicate
inices:
1, null
1, null
null, null
null, null
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why trigger is used in sql?
What language is oracle sql developer?
What is rank dense_rank and partition in sql?
Can a table have no primary key?
Differences between Oracle 9i and 10g (Probably in terms of SQL and PL/SQL)?
What is a design view?
How do I view a table in sql?
What is difference between ms sql and mysql?
What is a natural join sql?
what does myisamchk do? : Sql dba
Why do we use joins in sql?
What is the trigger in sql?
Can we create foreign key without primary key?
Can a trigger call a stored procedure?
What is an ndf file?