AS (Table Aliases)
You can create table aliases just as you did column aliases. The difference is that with column aliases, the key word AS is required and it changes the resulting column name. With the table alias, the key word AS is optional and the table alias is used only to associate columns with tables — the resulting table is unchanged.In a FROM or JOIN clause, format: table_name [AS] alias_name
Alias is a single word, without quotes, and contains only letters, digits, or underscores. You can not use key words, spaces, punctuation, or special characters.
> Each table’s alias name must be unique within the SQL statement.> Besides being used to associate specific column names with tables, table aliases are used to reduce statement clutter which makes the statement more easy to understood.
> A table alias does not change the table name in the table definition and it exists only for the duration of the statement.
> An alias name negates the table name for the duration of the statement. Therefore, all references to the table must use the alias name in all qualifying references.
> Alias names can also be used for table views.