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
How to apply filtering criteria at group level in oracle?
What is oracle open database communication (odbc)?
What is a package ? What are the advantages of package ?
Can you assign multiple query result rows to a variable?
How to use "while" statements in oracle?
How to assign data of the deleted row to variables?
how to make an oracle object
What is a read write transaction in oracle?
What is ordinary table in oracle?
What is the best way to do multi-row insert in oracle?
How to get a list of all background sessions in the database?
How to create an initialization parameter file?
What are the attributes of the cursor?
What is the dynamic sql in oracle?
What is an oracle table?