Is there any difference (performance, best-practice, etc...) between putting a condition in the JOIN clause vs. the WHERE clause?
For example...
-- C
It is better to add the condition in the Join. Performance is more important than readability. For large datasets, it matters.