cjj2010 commented on issue #28878:
URL: https://github.com/apache/doris/issues/28878#issuecomment-1868455368

   I think there is an issue with the syntax of this query. Should it be 
written like this, eg : 
   select * from (
   select * from (select a1,a2,sum(a3) from table1 group by a1,a2) as tmp1 left 
join
   (select a1 as tb2_a1,a2 as tb2_a2,sum(a3) from table2  group by a1,a2) as 
tmp2 on tmp1.a1=tmp2.tb2_a1 and tmp1.a2=tmp2.tb2_a2
   ) as tmp3
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to