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 first_name, last_name, height
|
|
|
|
| EVAL height_ft = ROUND(height * 3.281, 1)
|
|
|
|
```
|
|
|
|
|
|
|
|
| first_name:keyword | last_name:keyword | height:double | height_ft:double |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| Arumugam | Ossenbruggen | 2.1 | 6.9 |
|
|
|
|
| Kwee | Schusler | 2.1 | 6.9 |
|
|
|
|
| Saniya | Kalloufi | 2.1 | 6.9 |
|
|
|
|
|
|
|
|
|