Skip to content

Commit b5fd81f

Browse files
committed
updates
1 parent 999472d commit b5fd81f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference/query-languages/esql/esql-lookup-join.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Imagine you have the two tables:
6464
Running the following query would provide the results shown below.
6565

6666
```esql
67-
FROM Left
67+
FROM employees
6868
| WHERE Language IS NOT NULL // works and filter TLD UK
6969
| LOOKUP JOIN Right ON Key
7070
```
@@ -80,7 +80,7 @@ FROM Left
8080
|2|B|German|null|
8181

8282
::::{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`.
8484

8585
::::
8686

0 commit comments

Comments
 (0)