123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- [[esql-functions]]
- == Functions
- <<esql-row,`ROW`>>, <<esql-eval,`EVAL`>> and <<esql-where,`WHERE`>> support
- these functions:
- * <<esql-abs>>
- * <<esql-concat>>
- * <<esql-date_format>>
- * <<esql-date_trunc>>
- * <<esql-is_null>>
- * <<esql-length>>
- * <<esql-round>>
- * <<esql-starts_with>>
- * <<esql-substring>>
- [[esql-abs]]
- === `ABS`
- Returns the absolute value.
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, height
- | EVAL abs_height = ABS(0.0 - height)
- ----
- [[esql-concat]]
- === `CONCAT`
- Concatenates two or more strings.
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, height
- | EVAL fullname = CONCAT(first_name, " ", last_name)
- ----
- [[esql-date_format]]
- === `DATE_FORMAT`
- Returns a string representation of a date in the provided format. If no format
- is specified, the `yyyy-MM-dd'T'HH:mm:ss.SSSZ` format is used.
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, hire_date
- | EVAL hired = DATE_FORMAT(hire_date, "YYYY-MM-dd")
- ----
- [[esql-date_trunc]]
- === `DATE_TRUNC`
- Rounds down a date to the closest interval. Intervals can be expressed using the
- <<esql-timespan-literals,timespan literal syntax>>.
- [source,esql]
- ----
- FROM employees
- | EVAL year_hired = DATE_TRUNC(hire_date, 1 year)
- | STATS count(emp_no) BY year_hired
- | SORT year_hired
- ----
- [[esql-is_null]]
- === `IS_NULL`
- Returns a boolean than indicates whether its input is `null`.
- [source,esql]
- ----
- FROM employees
- | WHERE is_null(first_name)
- ----
- Combine this function with `NOT` to filter out any `null` data:
- [source,esql]
- ----
- FROM employees
- | WHERE NOT is_null(first_name)
- ----
- [[esql-length]]
- === `LENGTH`
- Returns the character length of a string.
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, height
- | EVAL fn_length = LENGTH(first_name)
- ----
- [[esql-round]]
- === `ROUND`
- Rounds a number to the closest number with the specified number of digits.
- Defaults to 0 digits if no number of digits is provided. If the specified number
- of digits is negative, rounds to the number of digits left of the decimal point.
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, height
- | EVAL height = ROUND(height * 3.281, 1)
- ----
- [[esql-starts_with]]
- === `STARTS_WITH`
- Returns a boolean that indicates whether a keyword string starts with another
- string:
- [source,esql]
- ----
- FROM employees
- | PROJECT first_name, last_name, height
- | EVAL ln_S = STARTS_WITH(last_name, "S")
- ----
- [[esql-substring]]
- === `SUBSTRING`
- Returns a substring of a string, specified by a start position and an optional
- length. This example returns the first three characters of every last name:
- [source,esql]
- ----
- FROM employees
- | PROJECT last_name
- | EVAL ln_sub = SUBSTRING(last_name, 1, 3)
- ----
- A negative start position is interpreted as being relative to the end of the
- string. This example returns the last three characters of of every last name:
- [source,esql]
- ----
- FROM employees
- | PROJECT last_name
- | EVAL ln_sub = SUBSTRING(last_name, -3, 3)
- ----
- If length is omitted, substring returns the remainder of the string. This
- example returns all characters except for the first:
- [source,esql]
- ----
- FROM employees
- | PROJECT last_name
- | EVAL ln_sub = SUBSTRING(last_name, 2)
- ----
|