Postgresql – Get unique values from column of type "array"
I have this table: | arrs | |:----| | {10000,10000,10000,10000} | | {100,200,300} | | {400,500,600} | | {100,200,600} | How get this result? | uniques | |:-------| | 10000 | | 100 | | 200 | | 300 |…