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 is the use of count (*) in sql?

0 Answers  


How do I install microsoft sql?

0 Answers  


What will you get by the cursor attribute sql%found?

0 Answers  


What is mdb stand for?

0 Answers  


Can you have more than one key in a database?

0 Answers  






What are the advantages of sql? Explain

0 Answers  


Why do we need databases?

0 Answers  


What are field types?

0 Answers  


Can function return multiple values in sql?

0 Answers  


What are data types in pl sql?

0 Answers  


what is hash join

1 Answers   NCR,


Is nosql relational?

0 Answers  


Categories