Introduction to Subqueries
Learn how to nest queries inside other queries.
We'll cover the following...
A subquery is a query that is part of another large query. T-SQL queries can be complex and consist of multiple subqueries.
Why subqueries?
Let’s consider these tables for Schools
and Students
with the following structure.
The Schools
table is newly created, and we want to fill it with values from the Students
table’s School
column. Our ...