I want to display some template message for the value which are not present in the table.
Example:
select table_name from all_tables where table_name in('RAM','SHA,','EMPLOYEE','E_SCHOOL');
out of the given 4 tables above only EMPLOYEE table is there so I want to display no value for the other result instead of not displaying any value.
I tried nvl for this as
select nvl(table_name,'NO VALUE') from all_tables where table_name in('RAM','SHA,','EMPLOYEE','E_SCHOOL');
but still the result is not coming
any suggestion to get the reasult..?
Thanks in advance and please forgive for any mistake as I am beginner in DB