When to use SQL Table Alias

There are two reasons for using table aliases. The first is cosmetic. The statements are easier to write, and perhaps also easier to read when table aliases are used. The second is more substantive. If a table appears more than once in the FROM clause, you need table aliases in order to keep them distinct. … Read more