Answer Posted / reddibasha
Do you mean Composite Index?
Composite index is the index created on multiple columns of
a table. A maximum of 16 columns can be used as a composite
index. It can be created at table level only. Unique,
Primary Key and Foreign Key can be composite keys.
Ex:
Create table emp
(eno number,
ename varchar(5),
dob date,
sal number,
dno number,
Primary Key(eno, ename) -- Composite Index
);
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Name the operator which is used in the query for pattern matching?
Explain the uses of a database trigger?
what is recursive stored procedure? : Sql dba
what is single byte over head in oracle..?
Which are the different case manipulation functions in sql?
what are the advantages and disadvantages of cascading style sheets? : Sql dba
What are the advantages of pl sql?
What is the syntax to add a record to a table?
How do rank () and dense_rank () differ?
how to include comments in sql statements? : Sql dba
How much does sql certification cost?
What is a natural join?
What is database white box testing and black box testing?
how to create a table index in mysql? : Sql dba
Can you join a table to itself?