Postgresql – How to sum the total length of an array of uuids column
Currently, I have 1 table consisting of id and otherIds I want to calculate the sum of otherIds present in database. id: 1, otherIds: {1,2,3,4,5} id: 2, otherIds: {3,4,5} id: 3, otherIds: {9,2,1} id: 4, otherIds: {} Desired result: 11…