Column Reference
@n - from current row by column position. The first column is 1
@'name' - from current row by name
@@n - from the previous row by column position. The first column is 1
@@'name' - from the previous row by name

Limitation: forward references are not allowed for '@' operation.