mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 17:34:17 -04:00
* Break out 'Limitations' into separate page * Add REST API docs * Restructure commands, functions, and operators refs * Add placeholder for getting started guide * Group 'Syntax', 'Metafields', and 'MV fields' under 'Language' * Add placeholder for Kibana page * Add link from landing page * Apply uniform formatting to ACOS, CASE, and DATE_PARSE function refs * Reword default LIMIT * Add support for COUNT(*) * Move 'Commands' and 'Functions and operators' to individual pages --------- Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
36 lines
813 B
Text
36 lines
813 B
Text
[[esql-operators]]
|
|
=== {esql} operators
|
|
|
|
++++
|
|
<titleabbrev>Operators</titleabbrev>
|
|
++++
|
|
|
|
Boolean operators for comparing against one or multiple expressions.
|
|
|
|
// tag::list[]
|
|
* <<esql-binary-operators>>
|
|
* <<esql-logical-operators>>
|
|
* <<esql-predicates>>
|
|
* <<esql-cidr_match>>
|
|
* <<esql-ends_with>>
|
|
* <<esql-in-operator>>
|
|
* <<esql-is_finite>>
|
|
* <<esql-is_infinite>>
|
|
* <<esql-is_nan>>
|
|
* <<esql-like-operator>>
|
|
* <<esql-rlike-operator>>
|
|
* <<esql-starts_with>>
|
|
// end::list[]
|
|
|
|
include::binary.asciidoc[]
|
|
include::logical.asciidoc[]
|
|
include::predicates.asciidoc[]
|
|
include::cidr_match.asciidoc[]
|
|
include::ends_with.asciidoc[]
|
|
include::in.asciidoc[]
|
|
include::is_finite.asciidoc[]
|
|
include::is_infinite.asciidoc[]
|
|
include::is_nan.asciidoc[]
|
|
include::like.asciidoc[]
|
|
include::rlike.asciidoc[]
|
|
include::starts_with.asciidoc[]
|