RIGHT


Return the substring that extracts length chars from the string starting from the right.
```esql
FROM employees
| KEEP last_name
| EVAL right = RIGHT(last_name, 3)
| SORT last_name ASC
| LIMIT 5
```

Supported types:
