当前位置:首页 > PHP教程 > PHP总结归纳

Mysql异常:Everyderivedtablemusthaveitsownalias

mysql错误:every derived table must have its own alias mysql执行多表查询时报错: [sql] select * from (select e.account from employee eunionselect u.account from `user` uunionselect a.account from agent a)[err] 1248 - every derived table mus

mysql错误:every derived table must have its own alias

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,问题就解决了

.syntaxhighlighter{padding-top:20px;padding-bottom:20px;}
【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!