-
+
Arrays
(1 row)
- If any dimension is written as a slice, i.e contains a colon, then all
- dimensions are treated as slices. If a dimension is missing, it is
- assumed to be [1:1]>. If a dimension has only a single
- number (no colon), that dimension is treated as being from 1>
+ If any dimension is written as a slice, i.e. contains a colon, then all
+ dimensions are treated as slices. Any dimension that has only a single
+ number (no colon) is treated as being from 1>
to the number specified. For example, [2]> is treated as
- [1:2], as in this example:
+ [1:2]>, as in this example:
SELECT schedule[1:2][2] FROM sal_emp WHERE name = 'Bill';