2025-06-21 03:42:37 +08:00
|
|
|
% This is generated by ESQL's AbstractFunctionTestCase. Do not edit it. See ../README.md for how to regenerate it.
|
2025-03-04 21:59:31 +08:00
|
|
|
|
|
|
|
**Example**
|
|
|
|
|
|
|
|
```esql
|
|
|
|
FROM employees
|
|
|
|
| KEEP last_name
|
|
|
|
| EVAL left = LEFT(last_name, 3)
|
|
|
|
```
|
|
|
|
|
|
|
|
| last_name:keyword | left:keyword |
|
|
|
|
| --- | --- |
|
|
|
|
| Awdeh | Awd |
|
|
|
|
| Azuma | Azu |
|
|
|
|
| Baek | Bae |
|
|
|
|
| Bamford | Bam |
|
|
|
|
| Bernatsky | Ber |
|
|
|
|
|
|
|
|
|