In design time we have given [DOJInGovrService] field as varchar datatype.
now when we are trying order by this parameter(DOJInGovrService) in ascending order it is not giving the desired result.
I know it is datatype problem but I can't change the datatype now as data is already entered.
SELECT ED.class, 
       ED.CurrentOfficePlace, 
       ED.DOB, 
       ED.DOJInCurrentOff, 
       ED.DOJInGovrService, 
       ED.DOJInSamvarg, 
       ED.EmpName, 
       ED.HomePlace, ED.Qualification 
FROM tbl_EmplyeesBiodata ED
ORDER BY DOJInGovrService asc
Date entered is in format dd-MM-yyyy (i.e. 28-08-2004).
please help me
 
     
     
     
    