Multiple sorting #880
-
|
Is there any way to use multiple rules for sorting? For example, I want to
Looks like currently only the last |
Beta Was this translation helpful? Give feedback.
Answered by
HarrisonMc555
Oct 13, 2025
Replies: 1 comment
-
|
You can list multiple columns to "order by" in the The "directionality" of the ordering ("ASC" or "DESC") is currently limited to either being all DESC or all ASC, and is controlled by the You can upvote this discussion if you want finer-grained control of ordering. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
QuAzI
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can list multiple columns to "order by" in the
--order-byargument by separating each column with commas. For example,The "directionality" of the ordering ("ASC" or "DESC") is currently limited to either being all DESC or all ASC, and is controlled by the
--reverseflag.You can upvote this discussion if you want finer-grained control of ordering.