New Join Types Discovered
I spent a good chunk of my day today reworking SQL queries, and while doing so I discovered two join types I'd never encountered before.• The INNERT JOIN is guaranteed to produce no rows. It is useful when you want to be sure your query does nothing, i.e. it's inert.
• The LEFT OVER JOIN returns any rows that would not have been returned by a LEFT OUTER join, i.e. rows that were... well, left over.
I think I need to take a break...


Guess that makes me a database geek...