Concatenated Column not using Index
SQL Text : select Department_id , Manager_id
from employees where First_name || ' - ' || last_name
in ('Neena - Kochhar')
-------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 22 | 3 (0)| 00:00:01 |
|* 1 | TABLE ACCESS FULL| EMPLOYEES | 1 | 22 | 3 (0)| 00:00:01 |
-------------------------------------------------------------------------------
How can I make the above query use index, maybe I should try hints...