IS NULL lead into Full Table Scan
One of our SQL is having IS NULL in where condition which is leading that Table into Full Table scan.
Example
select name from emp where eno is null;
We do have an index on eno field but it is doing a full table scan.
How to avoid full table scan and increase the performance.
Regards
Mudhalvan M.M