I was wondering if there is an option to simply generate a range of numbers from 1 to N in Netezza?
Let's say that N=5, then my result should be:
N |
---|
1 |
2 |
3 |
4 |
5 |
Thanks!
select _v_vector_idx.idx where idx between 1 and 10;
Note: IDX range is 0-1023