how we can set seperate update_columns list for each object inside the array object while using on_conflct upsert?
eg: i have a table called User and it have fields like id,name and age
Requirement: in the upsert action i need to upsert a list of user.. like user1(need to update age field only), user2(need to update name), user3(need to update age and name). currently update_columns is common. so how we can set update_columns to object level?