Answer Posted / srikanth
A composite key is used to club primary key for more than
once column.
PRIMARY KEY(<<COLUMN1>>,<<COLUMN2>>....<<COLUMNN>>)
But the disadvantage is that it will allow duplicates for
any one of the fields.
Example:
CREATE TABLE Example1
(Id INT NOT NULL,Pername VARCHAR(20) NULL,Phno INT NOT NULL
PRIMARY KEY(Id,Phno)
)
Command(s) completed successfully.
INSERT INTO Example1
VALUES(1,'sri',1111)
(1 row(s) affected)
INSERT INTO Example1
VALUES(1,'sri',6666)
(1 row(s) affected)
SELECT * FROM Example1
Id Pername Phno
1 sri 1111
1 sri 6666
As you can see that it is allowing same Id.
Basically Composite Key will take all the fields defined as
a group.So it is least bothered about any one of the field.
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
List the parts of a database trigger.
what's query optimization and without use of IN AND Exist can we get another way data from query
Can you create a synonym without having a table?
How to experiment a data lock in oracle?
Briefly explain what is literal? Give an example where it can be used?
What is a nvl function? How can it be used?
Explain an extent?
What is Trigger in Oracle?
Can you tell me how to add new column in existing views?how?How is possible?
Explain what are synonyms used for?
Can u please explain me the Discussion on Except ,using cast like type cast. Question in the context of difference between two tables
What operating systems are supported by oracle database 10g xe?
How many types of auditing in Oracle?
Can multiple columns be used in group by in oracle?
How do you get nicely formatted results from an oracle procedure that returns a reference cursor?