Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ If multiple documents in the lookup index match a single row in your
results, the output will contain one row for each matching combination.

::::{tip}
For important information about using `LOOKUP JOIN`, refer to [Usage notes](../../../../esql/esql-lookup-join.md#implementation-details).
For important information about using `LOOKUP JOIN`, refer to [Usage notes](../../../../esql/esql-lookup-join.md#usage-notes).
::::

**Examples**
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/query-languages/esql/esql-lookup-join.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@ This section covers important details about `LOOKUP JOIN` that impact query beha
### Handling name collisions

When fields from the lookup index match existing column names, the new columns override the existing ones.
Before the `LOOKUP JOIN`, preserve columns by either:
Before the `LOOKUP JOIN` command, preserve columns by either:

* Using `RENAME` to assign non-conflicting names
* Using `EVAL` to create new columns with different names, then `DROP` the original columns
* Using `EVAL` to create new columns with different names, then `DROP` to remove the original columns

### Sorting behavior

Expand Down
Loading