Hi All,
Database: 11.2
I have query below and i need the record where order_no is NULL and don't populate where order_no is NULL if check_num is same.
select NULL order_no, '202020'check_num from dual
union all
select '101010' order_no, '202020'check_num from dual
union all
select NULL order_no, '404040'check_num from dual --> i need this record only.