MySQL Derived TableA derived table in MySQL is a virtual table that returned from the SELECT…FROM statement. In other words, it is an expression, which generates a table under the scope of the FROM clause in the SELECT statement. This concept is similar to the temporary table. However, the derived table is simpler than a temporary table because there is no need to use all steps that temporary tables need for its creation. Most developers used the term derived table and subquery interchangeably. Thus, we can say that when we use a subquery in the SELECT…FROM clause, it is called a derived table. SyntaxThe following are the syntax to use the derived table in MySQL: It is to note that the stand-alone subquery is a subquery, which can be executed independently of the statement that contains this query. We should also consider that a derived table must contain the alias table name that allows us to reference its name later in the statement. If we do not provide the alias name to a derived table, MySQL will issue the below error message: Every derived table must have its own alias. It is also mandatory that each column of the derived table should have unique names. Let us understand it with the help of the following illustration. First, we will create a table using the below statement: Next, fill some record into this table using the below statement: Execute the SELECT statement to verify the output: Now, execute the below statement to understand how we can use a subquery in the FROM clause: It will return the output as follows: Let us another example where we will get the average of the float value column. Execute the below statement: In the above statement, the derived table calculates the total sum of the float column and then returns the average from the outer query. See the below output: Derived tables in MySQL have the following restrictions:
Next TopicMySQL UUID |