Dec 4, 2003 #1 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?
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?
Dec 4, 2003 #2 sedj Programmer Aug 6, 2002 5,610 If I understand your question correctly, this can be done in the SQL - something like: Code: select fromDate from some_table order by fromDate; Upvote 0 Downvote
If I understand your question correctly, this can be done in the SQL - something like: Code: select fromDate from some_table order by fromDate;