Skip to content
Merged
Changes from 1 commit
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]
====
Docs with `null` field values will be excluded from search results where you are excluding a specific value from that field. For example: `WHERE field != "value"` will be interpreted as `WHERE field != "value" and field is not null`.
====

**Syntax**

[source,esql]
Expand Down
Loading