Solution to the MySQL error "Every derived table must have its own alias"

Solution to the MySQL error "Every derived table must have its own alias"

MySQL reports an error when executing multi-table query:

[SQL] SELECT * from 
(
select e.account from employee e
UNION
SELECT u.account from `user` u
UNION
SELECT a.account from agent a
)
[Err] 1248 - Every derived table must have its own alias

This means that each derived table must have its own alias.

This error usually occurs when querying multiple tables or subqueries. In a nested query, the result of the subquery is used as a derived table for querying the upper level, so the result of the subquery must have an alias.

In the above example, modify the query statement:

SELECT * from 
(
select e.account from employee e
UNION
SELECT u.account from `user` u
UNION
SELECT a.account from agent a
)as total

As shown above, adding a sentence as total after the subquery is equivalent to giving the derived table of the subquery result set an alias of total, and the problem is solved.

You may also be interested in:
  • Steps for installing MySQL 8.0.16 on Windows and solutions to errors
  • Solution to MySQL error code 1862 your password has expired
  • How to solve mysql error 10061
  • MySql inserts data successfully but reports [Err] 1055 error solution
  • How to solve the abnormal error ERROR: 2002 in mysql
  • Solution to 1045 error when navicat connects to mysql
  • How to solve the error 1093-You can't specify target table for update in FROM clause in MySQL

<<:  js date and time formatting method example

>>:  Solve the problem of Linux FTP anonymous upload and download starting automatically

Recommend

Solution to IDEA not being able to connect to MySQL port number occupation

I can log in to MYSQL normally under the command ...

HTML table cross-row and cross-column operations (rowspan, colspan)

Generally, the colspan attribute of the <td>...

Example analysis of the usage of the new json field type in mysql5.7

This article uses an example to illustrate the us...

Detailed graphic explanation of sqlmap injection

Table of contents 1. We found that this website m...

Vue uses Baidu Maps to realize city positioning

This article shares the specific code of Vue usin...

VMware 15.5 version installation Windows_Server_2008_R2 system tutorial diagram

1. Create a new virtual machine from VMware 15.5 ...

The principle and basic use of Vue.use() in Vue

Table of contents Preface 1. Understanding with e...

10 tips for designing useful, easy-to-use web applications

Here are 10 tips on how to design better-usable w...

Various transformation effects of HTML web page switching

<META http-equiv="Page-Enter" CONTENT...

How to simplify Redux with Redux Toolkit

Table of contents Problems Redux Toolkit solves W...

MySQL cursor functions and usage

Table of contents definition The role of the curs...

CSS3 to achieve simple white cloud floating background effect

This is a very simple pure CSS3 white cloud float...

We're driving IE6 to extinction on our own

In fact, we wonder every day when IE6 will really...

React useMemo and useCallback usage scenarios

Table of contents useMemo useCallback useMemo We ...