I'm not even sure if this is possible, but it never hurts to ask.
Inside a VB 6 program I want to retrieve data from a SQL table, using a SQL statement, in a specific way. In my exmple below, I want to show all tractors for one driver first, and then the rest of the information from the table, sorted by Driver.
In table:
Driver Tractor
1 F
2 H
2 S
3 A
4 W
4 Y
5 C
want to show:
Driver Tractor
4 W
4 Y
1 F
2 H
2 S
3 A
5 C
Inside a VB 6 program I want to retrieve data from a SQL table, using a SQL statement, in a specific way. In my exmple below, I want to show all tractors for one driver first, and then the rest of the information from the table, sorted by Driver.
In table:
Driver Tractor
1 F
2 H
2 S
3 A
4 W
4 Y
5 C
want to show:
Driver Tractor
4 W
4 Y
1 F
2 H
2 S
3 A
5 C