MySQL Forums
Forum List  »  General

Re: Problem with referring column from double nested subquery
Posted by: Peter Brawley
Date: September 24, 2013 03:10PM

select n.a, n.b, n.c, n.x
from (
  select a,b,c,x
  from (
    select a,b,c,whatever as x
    from foo
  ) m
) n

Options: ReplyQuote


Subject
Written By
Posted
Re: Problem with referring column from double nested subquery
September 24, 2013 03:10PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.