Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

database to array

Status
Not open for further replies.

hksr

MIS
Sep 26, 2003
30
HK
I have a string field in the database, and the name of the field is "fromDate", it hold the date, e.g. "12/03/2004".

I would like to list the data from the "fromDate" in order. How can I do it?

 
If I understand your question correctly, this can be done in the SQL - something like:

Code:
select fromDate from some_table
order by fromDate;
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top