I have a view. one of the view's column contains NVL
function (like nvl(col1,col2) colA
).
and if i made query on this i will display some records
Ex: select calA from view1;
and if i use the same query as inline view and i use rownum in where clause it displays nothing
Ex: Select * from (select calA from view1) where rownum <10;
I am getting the same records if I
- try without rownum in where clause
- remove nvl from view