Difference between Primary key and unique key?
Answers were Sorted based on User's Feedback
Answer / deepali b. baviskar
Unique key can be NULL but Primary key couldn't be NULL.
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / sraboni mondal
primary key is a key which is totally unique key and unique
has null values
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / sohini ghosh
In RDBMS, a unique key can uniquely identify each row in a
table, and is closely related to the Super key concept. A
unique key comprises a single column or a set of columns.it
can be null.
A primary key is a special case of unique key. Primary keys
may consist of a single attribute or multiple attributes in
combination.It can't be null..
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / keerthi
primary key is a field that can serve as unique identifier in table.ex:customer id.
| Is This Answer Correct ? | 1 Yes | 4 No |
What is the difference between Abstract Class and Interface
Is java a virus?
What is variable and constant explain with example?
Is string pool garbage collected?
Can an anonymous class be declared as implementing an interface and extending a class?
What invokes a thread's run() method in java programming?
Why we cannot override static method?
What are 4 pillers of object orinted programming?
What does ide stand for?
Can classes declared using the abstract keyword cab be instantiated?
What is the difference between Java Bean and Java Class.?
What environment variables do I need to set on my machine in order to be able to run java programs?