There is a table which has 10 columns. One of the column type is struct And suppose that column name is xyz. And xyz contains array of elements.
e.g., xyz column contains [a : value 1, b: value 2, c:value 3...] Now I want to remove c element from this array.
How do I do it?
This code needs to be done in pyspark/python.