Skip to content

Commit 4de0707

Browse files
Merge pull request #49443 from MScalopez/main
Fixing wrong text in Unit 2 of Write Subqueries in T-SQL module
2 parents 8ec3b76 + 222428e commit 4de0707

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ title: Understand subqueries
44
metadata:
55
title: Understand subqueries
66
description: "Understand subqueries"
7-
ms.date: 11/07/2023
7+
ms.date: 03/07/2025
88
author: wwlpublish
99
ms.author: rcaper
1010
ms.topic: unit
1111
azureSandbox: false
1212
labModal: false
1313
durationInMinutes: 3
1414
content: |
15-
[!include[](includes/2-understand-subqueries.md)]
15+
[!include[](includes/2-understand-subqueries.md)]

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)