Обсуждение: Arrays

Поиск
Список
Период
Сортировка

Arrays

От
zris@somewhere.com (zris)
Дата:
How do I get a count of the array for a given column?

ex:

    Create table test (
        name text,
        in        integer,
        props text[][] );

    insert into test values ('Chris',1,'{{"Add","1
Stree"},{"SSN","123-123-1231"},{"Hello","Hello"}');

Is there a way of finding the count of the number of props, the array
that is?
Also is there a collection class?
thanks
Chris