I have an index on a nullable column and I want to select all it\'s values like this:
SELECT e.ename
FROM emp e;
In the explain plan I s
By default, relational databases ignore NULL values (because the relational model says that NULL means "not present"). So, Index does not store NULL value, consequently if you have null condition in SQL statement, related index is ignored (by default).
But you can suprass this problem, check THIS or THIS article.