I have a dynamic integer variable where the number of samples is loaded dynamically.
iCount = 3
or iCount = 10 ( dynamically number is loaded ).
I have to split the number as 1,2,3 for the iCount = 3
1,2,3,4,5,6,7,8,9,10 for the iCount = 10
and 1 for the iCount = 1.
How can we achieve separation of functions through the nth variable in SQL?
source
share