|
|
|
|
|
by tibiapejagala
1542 days ago
|
|
I sometimes use left join to protect me against errors somewhere else. Let’s say you do an inner join in insert into … select statement to find some other entity which 100% should be there. If something else is screwed up you might silently filtering out rows. With left join you keep everything, but not null constraint on the table protects you and turns it into an explicit error. |
|