Dear All,
I have this, which custID is a character field.
custID customer
----------------------
1000 ABC
2000 DBF
10000 EFG
I would like to sort in sequence 1000 -> 2000 -> 10000
I have this sql statement,
select custID ... order by custID
it gives out the result -> 1000 -> 10003 -> 2000.
What I think is covert the custID into a type integer before a sort is do
(not good method).
I would like to know if any better method.
Many thanks.
Regards,
Wandy Tang