Spec-Zone .ru
спецификации, руководства, описания, API

13.2.10. Subquery Syntax

13.2.10.1. The Subquery as Scalar Operand
13.2.10.2. Comparisons Using Subqueries
13.2.10.3. Subqueries with ANY, IN, or SOME
13.2.10.4. Subqueries with ALL
13.2.10.5. Row Subqueries
13.2.10.6. Subqueries with EXISTS or NOTEXISTS
13.2.10.7. Correlated Subqueries
13.2.10.8. Subqueries in the FROM Clause
13.2.10.9. Subquery Errors
13.2.10.10. Optimizing Subqueries
13.2.10.11. Rewriting Subqueries as Joins

A subquery is a SELECT statement within another statement.

Starting with MySQL 4.1, all subquery forms and operations that the SQL standard requires are supported, as well as a few features that are MySQL-specific.

Here is an example of a subquery:

SELECT * FROM t1 WHERE column1 = (SELECT column1 FROM t2);

In this example, SELECT * FROM t1 ... is the outer query (or outer statement), and (SELECT column1 FROM t2) is the subquery. We say that the subquery is nested within the outer query, and in fact it is possible to nest subqueries within other subqueries, to a considerable depth. A subquery must always appear within parentheses.

The main advantages of subqueries are:

Here is an example statement that shows the major points about subquery syntax as specified by the SQL standard and supported in MySQL:

DELETE FROM t1WHERE s11 > ANY (SELECT COUNT(*) /* no hint */ FROM t2  WHERE NOT EXISTS   (SELECT * FROM t3    WHERE ROW(5*t2.s1,77)=     (SELECT 50,11*s1 FROM t4 UNION SELECT 50,77 FROM      (SELECT * FROM t5) AS t5)));

A subquery can return a scalar (a single value), a single row, a single column, or a table (one or more rows of one or more columns). These are called scalar, column, row, and table subqueries. Subqueries that return a particular kind of result often can be used only in certain contexts, as described in the following sections.

There are few restrictions on the type of statements in which subqueries can be used. A subquery can contain many of the keywords or clauses that an ordinary SELECT can contain: DISTINCT, GROUP BY, ORDER BY, LIMIT, joins, index hints, UNION constructs, comments, functions, and so on.

A subquery's outer statement can be any one of: SELECT, INSERT, UPDATE, DELETE, SET, or DO.

In MySQL, you cannot modify a table and select from the same table in a subquery. This applies to statements such as DELETE, INSERT, REPLACE, UPDATE, and (because subqueries can be used in the SET clause) LOAD DATA INFILE.

For information about how the optimizer handles subqueries, see Section 8.13.16, "Subquery Optimization". For a discussion of restrictions on subquery use, including performance issues for certain forms of subquery syntax, see Section D.4, "Restrictions on Subqueries".