Le 03/02/2015 04:22, Christian e Ana Luiza Britto a écrit :
> Hi Folks,
> I have this sequence, returned by a select (SQL):
>
> SELECT sort FROM collections ORDER BY sort
>
> 1
> 10
> 11
> 14
> 15
> 2
> 3
> 4
> 5
> 6
> 6.12
> 6.7
> 6.7.13
> 6.7.8
> 9
>
> I need to now how to put this result into an
Hi Folks,
I have this sequence, returned by a select (SQL):
SELECT sort FROM collections ORDER BY sort
1
10
11
14
15
2
3
4
5
6
6.12
6.7
6.7.13
6.7.8
9
I need to now how to put this result into an array and sort them to
give this output:
1
2
3
4
5
6
6.7
6.7.8
6.7.13
6.12
9
10
11
14
15
I search