Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Participant
914 Points
184 Posts
May 04, 2012 02:49 AM|LINK
Hi,
You can do something like this. Use NVL
select NVL(product_name, '') from product;
The above query checks for product_name column in product table. If it is null then it returns empty string.
Hope this solves your problem
Thanks,
akshay22
Participant
914 Points
184 Posts
Re: If Exists in Oracle
May 04, 2012 02:49 AM|LINK
Hi,
You can do something like this. Use NVL
select NVL(product_name, '')
from product;
The above query checks for product_name column in product table. If it is null then it returns empty string.
Hope this solves your problem
Thanks,
My Blog: Akshay's Notion