I need to sort the content of the column field1
. It is a list of numbers separated by semicolons.
Input:
id field1
-------------
1 20;5;10
2 15;20;5
Output:
id field1
-------------
1 5;10;20
2 5;15;20
How can I achieve that?