PRODUCTS Table having column id and name.
insert into PRODUCTS(id,name)
values(1,'');
insert into PRODUCTS(id,name)
values(2,null);
insert into PRODUCTS(id,name)
values(1,'product1');
==========================
ID Name
1 (null)
2 (null)
3 product1
so my question is:
- Can we fetch the row having name as ''?
- Can we fetch the row having name as null?
- Is '' and null in oracle same?
- Can we differentiate between these 2 ('' and null) in oracle package?
Thanks in advance.