You can set table aliases in SQL typing the identifier right after the table name.
SELECT * FROM table t1;
You can even use the keyword
It's a formal way of specifying a correlation name for an entity so that you can address it easily in another part of the query.