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 plpgsql language?
How to revise and re-run the last sql command?
How bulk collect improves performance?
what is the difference between group by and order by in sql? : Sql dba
What is percent sign in sql?
Explain what is sql?
What is the file extension for sql database?
What is the difference between a procedure and a function?
how to delete duplicate rows from a join tables(I have three tables on that join) how do you know which join is need to be used? The select statement I have is: SELECT gc_skill_type.skill_type, gc_area_tec.area, gc_technology.technology, gc_technology.id_technology, gc_area_tec.id_area_tec FROM gc_skill_type, gc_area_tec, gc_technology WHERE gc_area_tec.id_skill_type (+) = gc_skill_type.id_skill_type AND gc_technology.id_area_tec (+) = gc_area_tec.id_area_tec order by gc_skill_type.skill_type asc, gc_area_tec.area asc, gc_technology.technology asc
What is a join query?
difference between anonymous blocks and sub-programs.
What is t sql in sql server?
What is prepared statement in sql?
What is mutating error in pl sql?
What is difference between sql and oracle?