I have a field cat_to_pub with type as MAP.
{1: '9-20-21', 2: '2-5-21', 4: '2-5-21', 5: '2', 6: '2', 9: '2-83-153-149', 11: '2-5-21-31', 29: '100', 32: '113-198-21'}
I can delete an individual element from this MAP by using
DELETE cat_to_pub[1] FROM user_preferences WHERE user_id = 'jayeshjain';
How do I remove multiple elements from this set?
for example.if I want to remove key 1 and 2,how do I form my query?