You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/reference/query-languages/esql/esql-lookup-join.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ Imagine you have the two tables:
64
64
Running the following query would provide the results shown below.
65
65
66
66
```esql
67
-
FROM Left
67
+
FROM employees
68
68
| WHERE Language IS NOT NULL // works and filter TLD UK
69
69
| LOOKUP JOIN Right ON Key
70
70
```
@@ -80,7 +80,7 @@ FROM Left
80
80
|2|B|German|null|
81
81
82
82
::::{important}
83
-
`LOOKUP JOIN`currently does not guarantee the output to be in any particular order. If a certain order is required, users should use a [`SORT`](/reference/query-languages/esql/esql-commands.md#esql-sort) somewhere after the `LOOKUP JOIN`.
83
+
`LOOKUP JOIN` does not guarantee the output to be in any particular order. If a certain order is required, users should use a [`SORT`](/reference/query-languages/esql/esql-commands.md#esql-sort) somewhere after the `LOOKUP JOIN`.
0 commit comments