DB_Column.sort
sortorder
Group: Selections
Aliases: order_by
Documentation
Sorts the column according to the specified rules.
Arguments
- order: Specifies the default sort order for this operation. - missing_last: Specifies the default placement of missing values when compared to non-missing ones. Note that this argument is independent from
order
, i.e. missing values will always be sorted according to this rule, ignoring the ascending / descending setting.
Examples
Sorting column
in ascending order.
column.sort
Sorting column
in descending order.
column.sort Sort_Direction.Descending