Every derived table must have its own alias
这句话的意思是说每个派生出来的表都必须有一个自己的别名
一般在多表查询时,会出现此错误。
因为,进行嵌套查询的时候子查询出来的的结果是作为一个派生表来进行上一级的查询的,所以子查询的结果必须要有一个别名
把MySQL语句改成:
select count(*)from (select*from yq1012)as liyongqiang;
举例子
select*from(select count(1)num,p.*from( select*from easybuy_commentorderbyEc_create_timedesc)p ) where num>0 and num<=2
就差了哥ph 就会报错 Every derived table must have its own alias
select*from(select count(1)num,p.*from( select* from easybuy_comment orderbyEc_create_timedesc)p )ph where num>0 and num<=2
问题就解决了,虽然只加了一个没有任何作用的别名,但这个别名是必须的