Skip to content

Grouping aggregation with expresssions #25

@fuersten

Description

@fuersten

Grouping aggregations with expresssions are currently not allowed and you have to use sub-selects to workaround it.

Example that does not work

select name,avg(cast(system as int)) from system_tables group by name order by name

and workaround

select name,avg(sys) from (select name,cast(system as int) as sys from system_tables)

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions