> SELECT arrtest.a[1:3],
> arrtest.b[1:1][1:2][1:2],
> arrtest.c[1:2],
> arrtest.d[1:1][1:2]
> FROM arrtest;
Sorry for the stupid question, but can sombody enlighten me.
Why was the ":" used in the first place ? I would expect to use a ','
for an array slice. No ?
As in: select arrtest.a[1,1][1,2]
(This is also what others use for array slices)
Andreas