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
Write a program that shows the usage of while loop to calculate the average of user entered numbers and entry of more numbers are stopped by entering number 0?
How to display Row Number with Records in Oracle SQL Plus?
What is the difference between function, procedure and package in pl/sql?
What is the difference between drop and truncate commands?
What is the purpose of primary key?
what is rdbms? : Sql dba
What is denormalization in a database?
Could you please provide oca (oracle 10g) dumps for my certification ?
What are records give examples?
Can you select everything, but 1 or 2 fields, without writer's cramp?
Cite the differences between execution of triggers and stored procedures?
What kind of join is join?
Can there be 2 primary keys in a table?
How to Declare Fixed Length String Value In PL SQL
Describe sql comments?