Answer Posted / manoj
primary key is a key which always accept unique value.
secondary key is a key which when you are making primary key
for more than one column as primary key for retrieving of
reords.
eg.
create table tnam
(ano number,
bno number,
bname char(12),
primary key(ano,bno))
In this bno is secondary key.
| Is This Answer Correct ? | 31 Yes | 18 No |
Post New Answer View All Answers
What is type and rowtype in pl sql?
What is the use of index in sql?
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
How show all rows in sql?
What is the difference between a primary key and a unique key?
what is 'mysqldump'? : Sql dba
is it possible to pass an object or table to a procedure as an argument?
how to start mysql server? : Sql dba
What are pl/sql packages?
Is pl sql a programming language?
How can a pl sql block be executed?
Are null values same as that of zero or a blank space?
does sql support programming? : Sql dba
What is break?
Can we call procedure in select statement?