project-reorder operator

Learn how to use the project-reorder operator to reorder columns in the output table.

Reorders columns in the output table.

Syntax

T | project-reorder ColumnNameOrPattern [asc | desc | granny-asc | granny-desc] [, …]

Parameters

NameTypeRequiredDescription
Tstring✔️The input tabular data.
ColumnNameOrPatternstring✔️The name of the column or column wildcard pattern by which to order the columns.
asc, desc, granny-asc, granny-descstringIndicates how to order the columns when a wildcard pattern is used. asc or desc orders columns by column name in ascending or descending manner, respectively. granny-asc or granny-desc orders by ascending or descending, respectively, while secondarily sorting by the next numeric value. For example, a20 comes before a100 when granny-asc is specified.

Returns

A table that contains columns in the order specified by the operator arguments. project-reorder doesn’t rename or remove columns from the table, therefore, all columns that existed in the source table, appear in the result table.

Examples

The examples in this section show how to use the syntax to help you get started.

Reorder with b first

Reorder a table with three columns (a, b, c) so the second column (b) will appear first.

print a='a', b='b', c='c'
|  project-reorder b

Output

bac
bac

Reorder with a first

Reorder columns of a table so that columns starting with a will appear before other columns.

print b = 'b', a2='a2', a3='a3', a1='a1'
|  project-reorder a* asc

Output

a1a2a3b
a1a2a3b