Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/reference/esql/processing-commands/where.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
The `WHERE` processing command produces a table that contains all the rows from
the input table for which the provided condition evaluates to `true`.

[TIP]
====
In case of value exclusions, fields with `null` values (a `null` means either there is an explicit `null` value in the document or there is no value at all) will be excluded from search results. For example: `WHERE field != "value"` will be interpreted as `WHERE field != "value" AND field IS NOT NULL`.
====

**Syntax**

[source,esql]
Expand Down
Loading