select * from (select * from phpcms_content where 1) where 1出现#1248 - Every derived table must have its own alias 
错在什么地方

解决方案 »

  1.   


    select * from (select * from phpcms_content where 1) T where 1 
      

  2.   

    select * from (select * from phpcms_content where 1) 没有表名 where 1
      

  3.   

    select * from (select * from phpcms_content where 1) as aa where 1 
      

  4.   

    select * from (select * from phpcms_content where 1) as aa where 1 同意楼上!
      

  5.   

    表名没有,whrer 后面的条件语句好像不太完整啊!