We have a situation in oracle SQL.
select x from A where x=10;
so if 10
exists in the column, value will be displayed 10
. but if it doesn't exists I want to display null
. I tried NVL
but it is not returning anything as data is not displaying.
Could you please help me to resolve this.