Oracle
 sql >> Base de données >  >> RDS >> Oracle

Remplacer null en fonction d'une condition

Cela ressemble à une left join et logique conditionnelle :

select 
    t.id,
    coalesce(t.col1, t1.col1) col1,
    coalesce(t.col2, t1.col2) col2,
    coalesce(t.col3, t1.col3) col3,
    t.source_id
from mytable t
left join mytable t1 on t1.id = t.source_id