In my last post in this series, I talked about using old-style JOINs. Today I'd like to touch on using aliases. No, I don't mean fake passports and a life of crime, I mean using an alias as shorthand for referencing a table or view in a query.
Some code I once had to clean up on an inherited system looked a lot like this:SELECT * FROM Orders a INNER JOIN OrderDetails b ON
No comments yet, be the first one to post comment.