اجرای دو اسکرییت زیر نشان می دهد که (1,null) با (1,null) برابر نیست اما (1و0) با (1و0) برابر است.
select 1 from dual where (1,0) in ( select 1, 0 from dual)
select 1 from dual where (1,null) in ( select 1, null from dual)