I have a table called details which has 2 columns, person(s) and personData(dict)
the personData is basically a dictionary which holds all person information.
If I want to add an additional entry into the dictionary how would I go about doing that?
I want the personData to be updated to hold telNO.
telNos:1234 9594 (is a list of numbers)
when I run:
(flip details`personData),enlist[`telNo]!(enlist telNos)
it works, but this is me taking the dictionary apart, whereas I need to update the entire table at once.