i am using array as a data type in my db
[CODE=sql]
....
(
sequence integer[]
) ;
[/CODE]
and it stores a value
let {1,2,3,4,5}
now if i a selecting the array as
[CODE=sql]
select sequence from foo where...
[/CODE]
then result which i get is not an array and i want it as an array
and i don't have to use
[CODE=sql]select sequence[index][/CODE] option
shoonya
[CODE=sql]
....
(
sequence integer[]
) ;
[/CODE]
and it stores a value
let {1,2,3,4,5}
now if i a selecting the array as
[CODE=sql]
select sequence from foo where...
[/CODE]
then result which i get is not an array and i want it as an array
and i don't have to use
[CODE=sql]select sequence[index][/CODE] option
shoonya
Comment