欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Mysql错误Every derived table must have its own alias解决方法

程序员文章站 2022-06-19 07:50:59
mysql执行多表查询时报错: [sql] select * from ( select e.account from employee e union...

mysql执行多表查询时报错:

[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

这句话的意思是每个派生出来的表必须有一个自己的别名

一般是在多表查询或者子查询的时候会出现这个错误,因为在嵌套查询中,子查询的结果是作为一个派生表给上一级进行查询,所以子查询的结果必须有一个别名。

上面的例子中,把查询语句修改一下:

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 total,相当于给子查询的结果集派生表取别名为total,问题就解决了。