SUM Array values query

Поиск
Список
Период
Сортировка
От Dani Castaños
Тема SUM Array values query
Дата
Msg-id 003f01c9d7a6$4a6d9b90$df48d2b0$@es
обсуждение исходный текст
Ответы Re: SUM Array values query
Список pgsql-sql
Hi all,

I've this query including arrays:

SELECT hour[1:5], statistics_date FROM statistics_dailyWHERE statistics_date = to_date( '03/01/2008', 'DD/MM/YYYY' )

Result:
           hour            | statistics_date
----------------------------+-----------------{1800,1800,1800,1800,1800} | 2008-01-03


I'm just wondering if there's some way to retrieve the hour column as the
sum of the array values... Just like this:
           hour            | statistics_date
----------------------------+-----------------9000                       | 2008-01-03


Hour is a bigint[] array column.
My version of postreSQL is 8.1.9

Thank you in advanced!

P.S.: Sorry if I had send it before, but I think I was not subscribed to the
mailist.

--
Dani Castaños Sánchez
dcastanos@androme.es




В списке pgsql-sql по дате отправления:

Предыдущее
От: Rob Sargent
Дата:
Сообщение: Extrapolating performance expectation
Следующее
От: Dani Castaños
Дата:
Сообщение: Extracting data from arrays