Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a paragraph about the Combined Inner Outer Join #82

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Changes from all commits
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
6 changes: 6 additions & 0 deletions docs/join/how-to-join-multiple-tables.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,12 @@ This is potentially an expensive and dangerous operation since it can lead to a

## Combine Inner and Outer Join

Following along with our syntax in the URL below,
here we are fetching the field `title` from our `film` database and renaming it with an [alias](../read/column-alias) of `name`.
The max rows returned is the default 100, since we are not specifying the [limit](../read/pagination#the-limit-clause) parameter.
The `data` asks to join it with the `language` table, and further, we ask to left join (extend) each `film`
with `altLangId` and `altLangName` when its `language_id` matches the `original_language_id`.

<Tabs>
<TabItem value="cURL" label="cURL" default>
```bash
Expand Down