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:
|
<<: js date and time formatting method example
>>: Solve the problem of Linux FTP anonymous upload and download starting automatically
I can log in to MYSQL normally under the command ...
Generally, the colspan attribute of the <td>...
This article uses an example to illustrate the us...
Table of contents 1. We found that this website m...
This article shares the specific code of Vue usin...
1. Create a new virtual machine from VMware 15.5 ...
In HTML pages, we sometimes need to automatically ...
Table of contents Preface 1. Understanding with e...
Here are 10 tips on how to design better-usable w...
<META http-equiv="Page-Enter" CONTENT...
Table of contents Problems Redux Toolkit solves W...
Table of contents definition The role of the curs...
This is a very simple pure CSS3 white cloud float...
In fact, we wonder every day when IE6 will really...
Table of contents useMemo useCallback useMemo We ...