Examples
Select: Category table
category.name - the name of a category in the @table-Category
Filtering
category.tooltip - the description of the category
Outer join: Contact name and category name
contact.name is the name from the @table-contact
contact.category_idx is a foreign-key to the @table-Category - which we can outer-join.
contact.category_idx.name - is the category’s name - here we follow the category relation via an outer-join.
To make this an inner join, we use a colon instead as a prefix to the join contact:category_idx.name
Right join: Category to contact
category.category_id - the primary key on the category
category.(contact->category_idx).name - the primary key on the category right joined to contact table via the category_idx foreign key on the contact table.