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
What is a dynamic query?
What schema means?
how to select first 5 records from a table? : Sql dba
Why use triggers in sql?
What are all the different normalization?
Can you have a foreign key without a primary key?
What is the difference between sql and isql*plus?
Why stored procedure is faster than query?
Can dml statements be used in pl/sql?
How do you rank data in sql?
What operators deal with null?
Is sql workbench free?
What is asqueryable?
What is the difference between view and stored procedure?
Show code of a cursor for loop.