Indexer
Indexer is also same as index in sql server table
Indexers are of two type
An indexer created on single column of table is simple indexer where as indexer created on more
than one column is called composite indexer.
Simple Indexer
Syntax:
create index <indexName> on <tableName>(<columnName>);
Example:
create index Emp_Id_idx on Employee_Master(EmpId);
Composite index
Syntax:
create index <indexName> on <tableName> (<columnName1>,<columnName2>);
Example:
create index index11 on Employee_Master(Age,Salary);
Indexer is also same as index in sql server table
Indexers are of two type
- Simple
- Composite
An indexer created on single column of table is simple indexer where as indexer created on more
than one column is called composite indexer.
Simple Indexer
Syntax:
create index <indexName> on <tableName>(<columnName>);
Example:
create index Emp_Id_idx on Employee_Master(EmpId);
Composite index
Syntax:
create index <indexName> on <tableName> (<columnName1>,<columnName2>);
Example:
create index index11 on Employee_Master(Age,Salary);