I've been wondering about this for some time. I like avoid joins when possible by using queries like this:
Does this have the same performance etc. as the equivalent join? asked Oct 11 '11 at 14:04 willirl |
Yes, it actually is a join. I am not aware of any database that does not handle it the same way. The explicit join syntax has, however, some advantages from the readability and maintainability perspective:
answered Oct 11 '11 at 14:58 Markus Winand ♦♦ |