Skip to content

Commit 222428e

Browse files
authored
Update 2-understand-subqueries.md
fixing unit
1 parent 6511396 commit 222428e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learn-pr/wwl-data-ai/write-subqueries/includes/2-understand-subqueries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ The purpose of a subquery is to return results to the outer query. The form of t
1111

1212
In addition to the choice between scalar and multi-valued subqueries, subqueries can either be self-contained subqueries or they can be correlated with the outer query:
1313

14-
* Self-contained subqueries can be written as stand-alone queries, with no dependencies on the outer query. A self-contained subquery is processed once, when the outer query runs and passes its results to that outer query.
14+
* Self-contained subqueries can be written as stand-alone queries, with no dependencies on the outer query. A self-contained subquery is processed once, when the inner query runs and passes its results to that outer query.
1515
* Correlated subqueries reference one or more columns from the outer query and therefore depend on it. Correlated subqueries cannot be run separately from the outer query.

0 commit comments

Comments
 (0)