Skip to content

Commit

Permalink
Merge pull request #5791 from rdulmina/master
Browse files Browse the repository at this point in the history
Improve Join Iterable objects BBE
  • Loading branch information
gimantha authored Oct 28, 2024
2 parents b1abe2a + e96bcfd commit 47837f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Join iterable objects

A `join` clause performs an inner or left outer equijoin. The result is similar to using the nested `from` clauses and `where` clause.
A `join` clause performs an inner or left outer equi-join. The result is similar to using the nested `from` clauses and a `where` clause. Variables declared in the query expression before the join clause are accessible only on the left side of the join condition, while variables declared in the join clause are accessible only on the right side of the join condition.

::: code joining_iterable_objects.bal :::

Expand Down

0 comments on commit 47837f8

Please sign in to comment.