Performance wise, what is better?
If I have 3 or 4 join statements in my query or use embedded select statements to pull the same information from my database as part of one query?
Performance wise, what is better? If I have 3 or 4 join statements in
Share
I would say joins are better because:
select‘s can only simulateleft/right outer join.Sometimes you cannot do stuff using joins, in that case (and only then) you’ll have to fall back on an inner select.