You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename ACCOUNT_SORTKEY(), it's a terrible name. Name this REPORD() for "report order".
I'm not sure REPORD() is much better. Another option is to introduce an ACCOUNT() function that turns an account name into an account object and have account objects compare in a way that results in the desired ordering. However,
SELECT
account,
sum(position)
GROUP BY
account
ORDER BY
account(account)
does not look very nice or intuitive.
The text was updated successfully, but these errors were encountered:
Quoting
TODO.md
I'm not sure
REPORD()
is much better. Another option is to introduce anACCOUNT()
function that turns an account name into anaccount
object and have account objects compare in a way that results in the desired ordering. However,does not look very nice or intuitive.
The text was updated successfully, but these errors were encountered: