I have a stats table with output in the below format:
Device Timestamp Action
some value some value. 1
some value some value. 2
.. .. ..
some value some value 10
some value some value 1
some value some value. 2
.. .. ..
some value some value 10
So, the action column repeats the pattern after a certain number of iterations. How to group these into single fields, that is, each full iteration should be stored as a mv field.
... View more