|
|
|
|
Browse by Tags
All Tags » Best Practices » ANSI-92 » habits » ANSI-89 (RSS)
-
In my last post in this series, I talked about using simple loops to populate large tables. This time I'd like to focus on getting rid of old, ANSI-89 joins.
I am sure most veterans know better than to use old ANSI-89 JOIN syntax, such as:
SELECT o.OrderID, od.ProductID ...
|
|
|
|
|