Skip to content

Commit ba830d3

Browse files
Update docs/reference/esql/processing-commands/where.asciidoc
Rephrasing for clarity Co-authored-by: Liam Thompson <[email protected]>
1 parent 6d58c37 commit ba830d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/reference/esql/processing-commands/where.asciidoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ the input table for which the provided condition evaluates to `true`.
77

88
[TIP]
99
====
10-
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`.
10+
In case of value exclusions, fields with `null` values will be excluded from search results.
11+
In this context a `null` means either there is an explicit `null` value in the document or there is no value at all.
12+
For example: `WHERE field != "value"` will be interpreted as `WHERE field != "value" AND field IS NOT NULL`.
1113
====
1214

1315
**Syntax**

0 commit comments

Comments
 (0)