Setting multiple rows in a single column to a single value
Hello, Noob question... I have a column with a unique identifier (UID) for certain types objects, for instance {'cats', 'dogs', 'birds'}. Each UID has multiple rows associated with it, which I have captured in an associative array.Example: aa = { 'cats' => [1, 2, 3], 'dogs' => [4, 5, 6], 'birds' => [7, 8, 9] }For each UID, all rows associated, I need to set a different column (col2) to a single va...