I have a table with column whose type is map<string,string>
. Now I have requirement where I want to remove specific key say "xyz" from this map and keep map as it is in table. If we just want to retrieve keys we can use Lateral view
but I want to remove specific key xyz permanently.
How do we solve this?