what is Complex index. how to create it?

Answers were Sorted based on User's Feedback



what is Complex index. how to create it?..

Answer / 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

what is Complex index. how to create it?..

Answer / naren patidar

In cluster data of two table store in one object(cluster)
that generates a index that can identify rows of both of
table..



naren

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

What are sql injection vulnerabilities?

0 Answers  


how to sort records in sql?

3 Answers  


What are sql objects?

0 Answers  


How to download oracle sql developer?

0 Answers  


Which one is better subquery or joins?

0 Answers  






What does varchar include?

0 Answers  


Is sql the best database?

0 Answers  


How do I run a sql query?

0 Answers  


Is it possible to pass parameters to triggers?

0 Answers  


What is 19 null in sql?

0 Answers  


What is cold data?

0 Answers  


Can we write ddl statements in functions?

0 Answers  


Categories