Changes between Version 1 and Version 2 of Ticket #31251, comment 7


Ignore:
Timestamp:
Feb 12, 2020, 4:53:23 AM (5 years ago)
Author:
Yuri Savin

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #31251, comment 7

    v1 v2  
    1 Replying to [comment:5 felixxm]:
    2 > Oliver, `OuterRef()` is a field from the outer query, so it will be the same for all rows in a subquery. Is there any value in adding it to a `GROUP BY` clause? e.g.
    3 > {{{
    4 > (SELECT MIN("price") from "subquery_table" GROUP BY "outer_table"."type")
    5 > }}}
    6 > is equivalent to
    7 > {{{
    8 > (SELECT MIN("price") from "subquery_table")
    9 > }}}
    10 
    111I think I overestimated my strength with this task
Back to Top