Answer: With the help of Create Index statement,we can create any index on any column in a table.
Syntax:-
Create Index index_name
On table_name(column_name);
For Example:-
Create Index idx_employee_id
On Employee_Master(employee_id);
Asked In: Many Interviews |
Alert Moderator