Hi guys..
I facing a troble here. Please help me.
I want to sort my database in ascending number.
Such as a series: 10, 100, 20, 30, 27.
Answer will be: 10, 100, 20, 27, 30.
But the answer i want is: 10, 20, 30, 27, 100.
How should i write the code??
Below is my code. Please take a look and correct for me.
Thank you very much..
I facing a troble here. Please help me.
I want to sort my database in ascending number.
Such as a series: 10, 100, 20, 30, 27.
Answer will be: 10, 100, 20, 27, 30.
But the answer i want is: 10, 20, 30, 27, 100.
How should i write the code??
Below is my code. Please take a look and correct for me.
Thank you very much..
Code:
Adodc.RecordSource = "select * from table order by totalTime;"
Comment