hansu
Programmer
- Mar 12, 2002
- 89
Hi,
I use an SQL statement to fill a recordset.
That orders the recordset as follows:
1
10
11
12
2
3
4 ...
Is there a possibility to modify the SQL statement that the result is in a consecutive order?
10 follows 9, 20 follows 19 and so on?
(For some reason I don't want to use the Recordset.Sort method)
Thanks for your assistance.
hansu
I use an SQL statement to fill a recordset.
Code:
"SELECT position FROM orderpositions ORDER BY position ASC"
1
10
11
12
2
3
4 ...
Is there a possibility to modify the SQL statement that the result is in a consecutive order?
10 follows 9, 20 follows 19 and so on?
(For some reason I don't want to use the Recordset.Sort method)
Thanks for your assistance.
hansu