s2.name: 'alex'
s2.age: 23
s2.height: 180
How can I combine the data in one structure, with the same fields to get something like this:
s3.name: ['alice' 'alex']
s3.age: [22 23]
s3.hieght: [175 180]
The struct variable has many fields and I don't want to do this merge manually field by field.