beanquery
beanquery copied to clipboard
Suppport `SELECT x, ... FROM ... GROUP BY x ORDER BY func(x)`
Namely support ordering the result rows in an aggrergate query by a function of one of the aggregate columns. Use case:
SELECT
account,
sum(position)
GROUP BY
account
ORDER BY
account_sortkey(account)