1. <p>A subquery in the <strong>WHERE</strong> clause that returns a single value is called a:</p>
- Correlated subquery
- Scalar subquery
- Derived table
- Set subquery
Hint: <p>A <strong>scalar subquery</strong> returns exactly one row and one column — a single value. It can be used anywhere a single value is expected, such as in a <code>WHERE</code> clause comparison or even a <code>SELECT</code> list.</p>