Jednoduše použijte coalesce
. Je to nejčitelnější a nejsrozumitelnější způsob, jak to napsat. Protože je logika obsažena v jednom predikátu, je snazší ji udržovat a odstraňovat:
select * from job where id = coalesce(:i, id)
Jak bylo požadováno, „důkaz“ ve skutečnosti používá index:
create table x ( id number(15) null );
create unique index x_pk on x( id );
select id
from x
where id = coalesce(:x, id)
; -- Uses index
select id
from x
where id = :x or :x is null
; -- Full table scan
Plán: