2023-10-17 23:36:14 +08:00
|
|
|
[discrete]
|
2023-05-11 23:02:27 +08:00
|
|
|
[[esql-abs]]
|
|
|
|
=== `ABS`
|
2023-08-25 21:07:25 +08:00
|
|
|
[.text-center]
|
2023-08-27 02:19:47 +08:00
|
|
|
image::esql/functions/signature/abs.svg[Embedded,opts=inline]
|
2023-08-25 21:07:25 +08:00
|
|
|
|
2023-05-11 23:02:27 +08:00
|
|
|
Returns the absolute value.
|
|
|
|
|
|
|
|
[source,esql]
|
|
|
|
----
|
|
|
|
FROM employees
|
2023-06-19 19:06:44 +08:00
|
|
|
| KEEP first_name, last_name, height
|
2023-05-11 23:02:27 +08:00
|
|
|
| EVAL abs_height = ABS(0.0 - height)
|
|
|
|
----
|
2023-08-25 21:07:25 +08:00
|
|
|
|
|
|
|
Supported types:
|
|
|
|
|
|
|
|
include::types/abs.asciidoc[]
|