Old Style Joins |
|||
| SQL queries can generate output by joining two or more tables together
using the LEFT JOIN, RIGHT JOIN, or INNER JOIN operators, but these are by
no means the only ways of joining tables in SQL.
The following is an example of an "Old Style" join: SELECT Client.Surname, Client.GivenNames, Note that this is exactly the same as:
SELECT Client.Surname, Client.GivenNames, Both queries will generate exactly the same execution plan, and there is no performance penalty for using an old style join.
|