Question

For example, I know that:

c1 xasc table

Will return a table that is sorted in ascending order by values in c1, but that does not change the table itself. So i wonder if there exist a method other than

table:`c1 xasc table

that can apply the change to the table.

Était-ce utile?

La solution

You could do the following, which overwrites the old table with the new sorted version.

`c1 xasc `table
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top