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 the difference between a database and a relational database?
What is the difference between join and natural join?
Is sql a backend?
What is rowtype?
Is sql scripting language?
How to run sql statements through the web interface?
What is schema in sql example?
What is sql data?
What is application trigger?
What is difference between sql function and stored procedure?
Can we use ddl commands in pl sql?
How to prepare for oracle pl sql certification?
What is a unique key and primary key and foreign key?
What are the benefits of stored procedures?
What are joins in sql?