Given a variable length array data type in a table:
create table foo (bar text[]);
and some data:
insert into foo values ('{"a","b","c"'});
insert into foo values ('{"1","2","3","4"}');
Is there a simple way to determe the size of each array?
Cheers,
Steve